diff --git a/CMakeLists.txt b/CMakeLists.txt index ec32340..416667d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -103,4 +103,4 @@ add_subdirectory(nampower) install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.txt" "${CMAKE_CURRENT_SOURCE_DIR}/README.md" - DESTINATION "${CMAKE_INSTALL_PREFIX}") \ No newline at end of file + DESTINATION "${CMAKE_INSTALL_PREFIX}") diff --git a/README.md b/README.md index 8a6f3c1..70e88b8 100644 --- a/README.md +++ b/README.md @@ -195,8 +195,10 @@ This includes functions for: - Aura duration tracking, cancel helpers, and aura visibility checks (GetPlayerAuraDuration, CancelPlayerAuraSlot, CancelPlayerAuraSpellId, IsAuraHidden) - Spell duration lookup (GetSpellDuration) - returns channel duration for channeling spells and the first aura effect duration for non-channeling spells - Player movement state queries (PlayerIsMoving, PlayerIsRooted, PlayerIsSwimming) +- File and script helpers (WriteCustomFile, ReadCustomFile, CustomFileExists, ImportFile, ExportFile, ExecuteCustomLuaFile) +- Encrypted login helpers (EncryptPassword, EncryptedServerLogin) - Talent helpers (LearnTalentRank) -- Spell lookups and utilities +- Spell lookups and utilities (GetUnitGUID, CombatLogFlush, etc.) `LearnTalentRank(talentPage, talentIndex, rank)` learns a specific talent rank directly by tab/index. Valid ranges are: `talentPage` = `1-3`, `talentIndex` = `1-32`, `rank` = `1-5`. diff --git a/SCRIPTS.md b/SCRIPTS.md index 30d4761..bb47ca2 100644 --- a/SCRIPTS.md +++ b/SCRIPTS.md @@ -24,6 +24,7 @@ For custom events, see [EVENTS.md](EVENTS.md). For installation, configuration, - [GetSpellDuration](#getspelldurationspellid-ignoremodifiers) - [GetUnitData](#getunitdataunittoken-copy) - [GetUnitField](#getunitfieldunittoken-fieldname-copy) + - [GetUnitGUID](#getunitguidunittoken) - [GetSpellIdForName](#getspellidfornamenspellname) - [GetSpellNameAndRankForId](#getspellnameandrankforidid) - [GetSpellSlotTypeIdForName](#getspellslottypeidfornamenspellname) @@ -58,7 +59,15 @@ For custom events, see [EVENTS.md](EVENTS.md). For installation, configuration, - [PlayerIsRooted](#playerisrooted) - [PlayerIsSwimming](#playerisswimming) - [Utility Functions](#utility-functions) - - [GetUnitGUID](#getunitguidunittoken) + - [WriteCustomFile(filename, content, [mode])](#writecustomfilefilename-content-mode) + - [ReadCustomFile(filename)](#readcustomfilefilename) + - [CustomFileExists(filename)](#customfileexistsfilename) + - [ImportFile(filename)](#importfilefilename) + - [ExportFile(filename, text)](#exportfilefilename-text) + - [ExecuteCustomLuaFile(filename)](#executecustomluafilefilename) + - [EncryptPassword(password)](#encryptpasswordpassword) + - [EncryptedServerLogin(username, encryptedPasswordBase64String)](#encryptedserverloginusername-encryptedpasswordbase64string) + - [CombatLogFlush()](#combatlogflush) - [DisenchantAll](#disenchantallitemidorname-includesoulbound-or-disenchantallquality-includesoulbound) --- @@ -762,6 +771,42 @@ local resistances = GetUnitField("player", "resistances") -- resistances[1] = armor, [2] = holy, [3] = fire, [4] = nature, [5] = frost, [6] = shadow, [7] = arcane ``` +#### GetUnitGUID(unitToken) +Returns the GUID of the unit identified by the given unit token. + +Supports Nampower's extended unit-token formats (see [Unit Token Extensions](README.md#unit-token-extensions-getunitguid--all-unittokentarget-string-params)). + +**Parameters:** +- `unitToken` (string): A unit token or extended unit token string. + +**Returns:** +- `guid` (string): The unit's GUID as a hex string (e.g. `"0xF5300000000000A5"`), or `nil` if the unit cannot be resolved. + +**Supported token formats:** +- Standard tokens: `"player"`, `"target"`, `"pet"`, `"mouseover"`, `"party1"`–`"party4"`, `"partypet1"`–`"partypet4"`, `"raid1"`–`"raid40"`, `"raidpet1"`–`"raidpet40"` +- Raid target marks: `"mark1"`–`"mark8"` +- Suffix forms: any token with `"owner"`, `"target"`, or `"pet"` appended (e.g. `"targetowner"`, `"mark1target"`, `"party1pet"`) +- Raw hex GUIDs with optional suffix: `"0x[16 hex digits]"`, `"0x[16 hex digits]target"`, etc. + +**Examples:** +```lua +-- Standard tokens +print(GetUnitGUID("player")) +print(GetUnitGUID("target")) +print(GetUnitGUID("party1")) + +-- Raid target marks +print(GetUnitGUID("mark1")) + +-- Suffix forms +print(GetUnitGUID("mark1target")) -- target of the unit marked with mark 1 +print(GetUnitGUID("targetowner")) -- owner of the current target +print(GetUnitGUID("party1pet")) -- pet of party member 1 + +-- Raw hex GUID with suffix +print(GetUnitGUID("0xF5300000000000A5target")) +``` + #### QueueSpellByName(spellName) Will force queue a spell regardless of the appropriate queue window. If no spell is currently being cast it will be cast immediately. For example can make a macro with @@ -1223,44 +1268,241 @@ end ### Utility Functions -#### GetUnitGUID(unitToken) -Returns the GUID of the unit identified by the given unit token. +#### WriteCustomFile(filename, content, [mode]) +Writes text to a file in the `CustomData` directory. -Supports Nampower's extended unit-token formats (see [Unit Token Extensions](README.md#unit-token-extensions-getunitguid--all-unittokentarget-string-params)). +**Availability:** +- In-game Lua and GlueXML. **Parameters:** -- `unitToken` (string): A unit token or extended unit token string. +- `filename` (string): File name only (must not contain path separators or invalid filename characters). +- `content` (string): Content to write. +- `mode` (string, optional): One-character mode: + - `"w"` = truncate/overwrite (default) + - `"b"` = write in binary mode + - `"a"` = append **Returns:** -- `guid` (string): The unit's GUID as a hex string (e.g. `"0xF5300000000000A5"`), or `nil` if the unit cannot be resolved. +- No return value. +- Raises a Lua error on invalid filename, invalid mode, or write failure. -**Supported token formats:** -- Standard tokens: `"player"`, `"target"`, `"pet"`, `"mouseover"`, `"party1"`–`"party4"`, `"partypet1"`–`"partypet4"`, `"raid1"`–`"raid40"`, `"raidpet1"`–`"raidpet40"` -- Raid target marks: `"mark1"`–`"mark8"` -- Suffix forms: any token with `"owner"`, `"target"`, or `"pet"` appended (e.g. `"targetowner"`, `"mark1target"`, `"party1pet"`) -- Raw hex GUIDs with optional suffix: `"0x[16 hex digits]"`, `"0x[16 hex digits]target"`, etc. +**Behavior:** +- Paths are constrained to the `CustomData` directory. +- If `mode` is omitted, `"w"` is used. **Examples:** ```lua --- Standard tokens -print(GetUnitGUID("player")) -print(GetUnitGUID("target")) -print(GetUnitGUID("party1")) - --- Raid target marks -print(GetUnitGUID("mark1")) - --- Suffix forms -print(GetUnitGUID("mark1target")) -- target of the unit marked with mark 1 -print(GetUnitGUID("targetowner")) -- owner of the current target -print(GetUnitGUID("party1pet")) -- pet of party member 1 - --- Raw hex GUID with suffix -print(GetUnitGUID("0xF5300000000000A5target")) +WriteCustomFile("notes.txt", "hello") +WriteCustomFile("notes.txt", "more text\n", "a") +WriteCustomFile("blob.bin", "raw-bytes", "b") ``` --- +#### ReadCustomFile(filename) +Reads text from a file in the `CustomData` directory. + +**Availability:** +- In-game Lua and GlueXML. + +**Parameters:** +- `filename` (string): File name only (must not contain path separators or invalid filename characters). + +**Returns:** +- File contents as a string. +- `nil` if the file does not exist. +- Raises a Lua error on invalid filename/path or other read failures. + +**Behavior:** +- Paths are constrained to the `CustomData` directory. + +**Examples:** +```lua +local text = ReadCustomFile("notes.txt") +``` + +--- + +#### CustomFileExists(filename) +Returns whether a file exists in the `CustomData` directory. + +**Availability:** +- In-game Lua and GlueXML. + +**Parameters:** +- `filename` (string): File name only (must not contain path separators or invalid filename characters). + +**Returns:** +- `true` if the file exists and is a regular file. +- `false` if it does not exist. +- Raises a Lua error on invalid filename/path or stat failures. + +**Behavior:** +- Paths are constrained to the `CustomData` directory. + +**Examples:** +```lua +if CustomFileExists("notes.txt") then + print("notes.txt exists") +end +``` + +--- + +#### ImportFile(filename) +Reads a `.txt` file from the `Imports` directory. This is provided for backwards compatibility with SuperWoW and to patch some security issues with the original implementation. + +**Availability:** +- In-game Lua and GlueXML. + +**Parameters:** +- `filename` (string): Base filename; `.txt` is always appended automatically. + +**Returns:** +- File contents as a string. +- `nil` if the file does not exist. +- Raises a Lua error if the filename/path is invalid or other read failures occur. + +**Behavior:** +- Path is constrained to `Imports`. +- `.txt` is always appended to the provided filename. + +**Examples:** +```lua +local data = ImportFile("data") -- will read from Imports/data.txt +``` + +--- + +#### ExportFile(filename, text) +Writes text to a `.txt` file in the `Imports` directory. This is provided for backwards compatibility with SuperWoW and to patch some security issues with the original implementation. + +**Availability:** +- In-game Lua and GlueXML. + +**Parameters:** +- `filename` (string): Base filename; `.txt` is always appended automatically. +- `text` (string): Content to write. + +**Returns:** +- No return value. +- Raises a Lua error on invalid parameters, invalid filename/path, or write failure. + +**Behavior:** +- Path is constrained to `Imports`. +- `.txt` is always appended to the provided filename. +- Exactly 2 parameters are accepted (no mode argument). +- Writes in overwrite mode. + +**Examples:** +```lua +ExportFile("profile", "value=1") +``` + +--- + +#### ExecuteCustomLuaFile(filename) +Executes a `.lua` file from the `CustomData` directory using the same function used to load WTF files. + +**Availability:** +- In-game Lua and GlueXML. + +**Parameters:** +- `filename` (string): Must end with `.lua`. + +**Returns:** +- No return value. +- Raises a Lua error on invalid filename/path or execution setup failure. + +**Behavior:** +- Path is constrained to `CustomData`. +- Only `.lua` files are accepted. + +**Examples:** +```lua +ExecuteCustomLuaFile("bootstrap.lua") +``` + +--- + +#### EncryptPassword(password) +Encrypts a plaintext password using Windows DPAPI and returns a tagged ciphertext string. +Requires the user to have set an environment variable WOW_ENCRYPTION_KEY. +This exists to support autologin workflows without storing passwords in plain text. + +**Availability:** +- GlueXML only (not available to in-game Lua). + +**Parameters:** +- `password` (string): Plaintext password, or an already encrypted tagged value. + +**Returns:** +- Encrypted value as `":encrypted:" .. base64Ciphertext`. +- If input already starts with `:encrypted:`, it is returned unchanged to avoid double encrypting. +- Raises a Lua error if `WOW_ENCRYPTION_KEY` is not set or encryption fails. + +**Behavior:** +- Uses `WOW_ENCRYPTION_KEY` as DPAPI entropy. +- Output is idempotently tagged with `:encrypted:`. + +**Examples:** +```lua +local p = EncryptPassword("hunter2") +-- p starts with ":encrypted:" +``` + +--- + +#### EncryptedServerLogin(username, encryptedPasswordBase64String) +Logs in using an encrypted password generated by `EncryptPassword`. +Requires the user to have set an environment variable WOW_ENCRYPTION_KEY. +This exists to support autologin workflows without storing passwords in plain text. + +**Availability:** +- GlueXML only (not available to in-game Lua). + +**Parameters:** +- `username` (string): Account username. +- `encryptedPasswordBase64String` (string): Must start with `:encrypted:`. + +**Returns:** +- No return value. +- Raises a Lua error if parameters are invalid, the prefix is missing, `WOW_ENCRYPTION_KEY` is not set, or decryption fails. + +**Behavior:** +- Looks for the `:encrypted:` prefix added by EncryptPassword. +- Removes the prefix before base64+DPAPI decryption. +- Uses `WOW_ENCRYPTION_KEY` as DPAPI entropy before calling the game login function. + +**Examples:** +```lua +local enc = EncryptPassword("hunter2") +EncryptedServerLogin("my_user", enc) +``` + +--- + +#### CombatLogFlush() +Forces the current combat log file buffer to flush to disk immediately. + +**Availability:** +- In-game Lua and GlueXML. + +**Parameters:** +- None. + +**Returns:** +- No return value. + +**Behavior:** +- Calls the client `SLogFlush` routine with the current combat-log file handle. +- Useful if you need log lines persisted to disk right away. + +**Examples:** +```lua +CombatLogFlush() +``` + #### DisenchantAll(itemIdOrName, [includeSoulbound]) or DisenchantAll(quality, [includeSoulbound]) Automatically disenchants items in your inventory. Can disenchant a specific item by ID/name, or all weapons and armor of a specified quality. diff --git a/nampower.map b/nampower.map index cfae237..8de0a10 100644 --- a/nampower.map +++ b/nampower.map @@ -1,58 +1,58 @@ nampower - Timestamp is 69a5b994 (Mon Mar 2 08:23:48 2026) + Timestamp is 69a75ac2 (Tue Mar 3 14:03:46 2026) Preferred load address is 10000000 Start Length Name Class - 0001:00000000 00000a70H .text$di CODE - 0001:00000a70 0008cd40H .text$mn CODE - 0001:0008d7b0 00005c00H .text$x CODE - 0001:000933b0 00000b9eH .text$yd CODE - 0002:00000000 000001e0H .idata$5 DATA - 0002:000001e0 00000008H .00cfg DATA - 0002:000001e8 00000004H .CRT$XCA DATA - 0002:000001ec 0000000cH .CRT$XCC DATA - 0002:000001f8 00000008H .CRT$XCL DATA - 0002:00000200 0000014cH .CRT$XCU DATA - 0002:0000034c 00000004H .CRT$XCZ DATA - 0002:00000350 00000004H .CRT$XIA DATA - 0002:00000354 00000018H .CRT$XIC DATA - 0002:0000036c 00000004H .CRT$XIZ DATA - 0002:00000370 00000004H .CRT$XLA DATA - 0002:00000374 00000004H .CRT$XLZ DATA - 0002:00000378 00000004H .CRT$XPA DATA - 0002:0000037c 00000008H .CRT$XPX DATA - 0002:00000384 00000004H .CRT$XPXA DATA - 0002:00000388 00000004H .CRT$XPZ DATA - 0002:0000038c 00000004H .CRT$XTA DATA - 0002:00000390 00000010H .CRT$XTZ DATA - 0002:00000394 00000000H .gfids$y DATA - 0002:000003a0 00019ae0H .rdata DATA - 0002:00019e80 00000000H .rdata$CastGuardVftablesA DATA - 0002:00019e80 00000000H .rdata$CastGuardVftablesC DATA - 0002:00019e80 00000018H .rdata$T DATA - 0002:00019e98 00003218H .rdata$r DATA - 0002:0001d0b0 000003fcH .rdata$sxdata DATA - 0002:0001d4ac 00000118H .rdata$voltmd DATA - 0002:0001d5c4 00000398H .rdata$zzzdbg DATA - 0002:0001d95c 00000004H .rtc$IAA DATA - 0002:0001d960 00000004H .rtc$IZZ DATA - 0002:0001d964 00000004H .rtc$TAA DATA - 0002:0001d968 00000004H .rtc$TZZ DATA - 0002:0001d96c 00000004H .tls DATA - 0002:0001d970 0000000cH .tls$ DATA - 0002:0001d97c 00000004H .tls$ZZZ DATA - 0002:0001d980 00006b00H .xdata$x DATA - 0002:00024480 00000044H .edata DATA - 0002:000244c4 00000028H .idata$2 DATA - 0002:000244ec 00000014H .idata$3 DATA - 0002:00024500 000001e0H .idata$4 DATA - 0002:000246e0 000008e0H .idata$6 DATA + 0001:00000000 00000a80H .text$di CODE + 0001:00000a80 0008fbe0H .text$mn CODE + 0001:00090660 00005fc0H .text$x CODE + 0001:00096620 00000bbeH .text$yd CODE + 0002:00000000 00000200H .idata$5 DATA + 0002:00000200 00000008H .00cfg DATA + 0002:00000208 00000004H .CRT$XCA DATA + 0002:0000020c 0000000cH .CRT$XCC DATA + 0002:00000218 00000008H .CRT$XCL DATA + 0002:00000220 00000150H .CRT$XCU DATA + 0002:00000370 00000004H .CRT$XCZ DATA + 0002:00000374 00000004H .CRT$XIA DATA + 0002:00000378 00000018H .CRT$XIC DATA + 0002:00000390 00000004H .CRT$XIZ DATA + 0002:00000394 00000004H .CRT$XLA DATA + 0002:00000398 00000004H .CRT$XLZ DATA + 0002:0000039c 00000004H .CRT$XPA DATA + 0002:000003a0 00000008H .CRT$XPX DATA + 0002:000003a8 00000004H .CRT$XPXA DATA + 0002:000003ac 00000004H .CRT$XPZ DATA + 0002:000003b0 00000004H .CRT$XTA DATA + 0002:000003b4 0000000cH .CRT$XTZ DATA + 0002:000003b8 00000000H .gfids$y DATA + 0002:000003c0 0001a180H .rdata DATA + 0002:0001a540 00000000H .rdata$CastGuardVftablesA DATA + 0002:0001a540 00000000H .rdata$CastGuardVftablesC DATA + 0002:0001a540 00000018H .rdata$T DATA + 0002:0001a558 00003270H .rdata$r DATA + 0002:0001d7c8 0000042cH .rdata$sxdata DATA + 0002:0001dbf4 00000120H .rdata$voltmd DATA + 0002:0001dd14 00000398H .rdata$zzzdbg DATA + 0002:0001e0ac 00000004H .rtc$IAA DATA + 0002:0001e0b0 00000004H .rtc$IZZ DATA + 0002:0001e0b4 00000004H .rtc$TAA DATA + 0002:0001e0b8 00000004H .rtc$TZZ DATA + 0002:0001e0bc 00000004H .tls DATA + 0002:0001e0c0 0000000cH .tls$ DATA + 0002:0001e0cc 00000004H .tls$ZZZ DATA + 0002:0001e0d0 00006e40H .xdata$x DATA + 0002:00024f10 00000044H .edata DATA + 0002:00024f54 0000003cH .idata$2 DATA + 0002:00024f90 00000014H .idata$3 DATA + 0002:00024fa4 00000200H .idata$4 DATA + 0002:000251a4 00000980H .idata$6 DATA 0003:00000000 000138e0H .data DATA 0003:000138e0 00001400H .data$r DATA - 0003:00014ce0 00002898H .data$rs DATA - 0003:00017578 0000b5e8H .bss DATA + 0003:00014ce0 000028d8H .data$rs DATA + 0003:000175b8 0000b5f0H .bss DATA 0004:00000000 00000060H .rsrc$01 DATA 0004:00000060 00000180H .rsrc$02 DATA @@ -86,7780 +86,7874 @@ 0000:00000000 ___x64_code_ranges_to_entry_points_count 00000000 0000:00000000 __except_list 00000000 0000:0000002c __tls_array 0000002c - 0000:000000ff ___safe_se_handler_count 000000ff 0000:00000100 ___guard_flags 00000100 + 0000:0000010b ___safe_se_handler_count 0000010b 0000:00000000 ___ImageBase 10000000 - 0001:00000a70 ___local_stdio_printf_options 10001a70 f i udis86:udis86.obj - 0001:00000a76 __vsnprintf_l 10001a76 f i udis86:udis86.obj - 0001:00000aa8 _sprintf 10001aa8 f i udis86:udis86.obj - 0001:00000ac3 _ud_init 10001ac3 f udis86:udis86.obj - 0001:00000b2e _ud_disassemble 10001b2e f udis86:udis86.obj - 0001:00000b67 _ud_set_mode 10001b67 f udis86:udis86.obj - 0001:00000b89 _ud_set_pc 10001b89 f udis86:udis86.obj - 0001:00000ba3 _ud_set_syntax 10001ba3 f udis86:udis86.obj - 0001:00000bb1 _ud_insn_asm 10001bb1 f udis86:udis86.obj - 0001:00000bbf _ud_insn_off 10001bbf f udis86:udis86.obj - 0001:00000bcd _ud_insn_hex 10001bcd f udis86:udis86.obj - 0001:00000c2e _ud_insn_ptr 10001c2e f udis86:udis86.obj - 0001:00000c4a _ud_insn_len 10001c4a f udis86:udis86.obj - 0001:00000c55 _ud_insn_opr 10001c55 f udis86:udis86.obj - 0001:00000c7a _ud_set_asm_buffer 10001c7a f udis86:udis86.obj - 0001:00000cb3 _ud_set_input_buffer 10001cb3 f udis86:udis86.obj - 0001:00000ef0 _ud_translate_intel 10001ef0 f udis86:syn-intel.obj - 0001:0000242e _ud_decode 1000342e f udis86:decode.obj - 0001:000024f0 _vsnprintf 100034f0 f i udis86:syn.obj - 0001:00002521 _ud_syn_rel_target 10003521 f udis86:syn.obj - 0001:00002581 _ud_asmprintf 10003581 f udis86:syn.obj - 0001:000025d6 _ud_syn_print_addr 100035d6 f udis86:syn.obj - 0001:0000264c _ud_syn_print_imm 1000364c f udis86:syn.obj - 0001:0000270d _ud_syn_print_mem_disp 1000370d f udis86:syn.obj - 0001:000027d0 ??$_Allocate_at_least_helper@V?$allocator@D@std@@@std@@YAPADAAV?$allocator@D@0@AAI@Z 100037d0 f i logging.cpp.obj - 0001:00002820 ??$_Allocate_for_capacity@$0A@@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPADAAV?$allocator@D@1@AAI@Z 10003820 f i logging.cpp.obj - 0001:00002880 ??$_Construct@$00PBD@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXQBDI@Z 10003880 f i logging.cpp.obj - 0001:00002910 ??$_Fputc@D@std@@YA_NDPAU_iobuf@@@Z 10003910 f i logging.cpp.obj - 0001:00002930 ??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 10003930 f i logging.cpp.obj - 0001:00002aa0 ??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 10003aa0 f i logging.cpp.obj - 0001:00002c30 ??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ 10003c30 f i logging.cpp.obj - 0001:00002ca0 ??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 10003ca0 f i logging.cpp.obj - 0001:00002e70 ??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 10003e70 f i logging.cpp.obj - 0001:00002f40 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z 10003f40 f i logging.cpp.obj - 0001:00002ff0 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@QBD@Z 10003ff0 f i logging.cpp.obj - 0001:00003030 ??0?$fpos@U_Mbstatet@@@std@@QAE@_J@Z 10004030 f i logging.cpp.obj - 0001:00003060 ??0_Locinfo@std@@QAE@PBD@Z 10004060 f i logging.cpp.obj - 0001:00003110 ??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10004110 f i logging.cpp.obj - 0001:00003320 ??0_System_error@std@@QAE@ABV01@@Z 10004320 f i logging.cpp.obj - 0001:00003360 ??0bad_alloc@std@@QAE@ABV01@@Z 10004360 f i logging.cpp.obj - 0001:00003390 ??0bad_array_new_length@std@@QAE@ABV01@@Z 10004390 f i logging.cpp.obj - 0001:000033c0 ??0bad_array_new_length@std@@QAE@XZ 100043c0 f i logging.cpp.obj - 0001:000033e0 ??0bad_cast@std@@QAE@ABV01@@Z 100043e0 f i logging.cpp.obj - 0001:00003410 ??0bad_cast@std@@QAE@XZ 10004410 f i logging.cpp.obj - 0001:00003430 ??0exception@std@@QAE@ABV01@@Z 10004430 f i logging.cpp.obj - 0001:00003460 ??0exception@std@@QAE@QBD@Z 10004460 f i logging.cpp.obj - 0001:000034a0 ??0failure@ios_base@std@@QAE@ABV012@@Z 100044a0 f i logging.cpp.obj - 0001:000034f0 ??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 100044f0 f i logging.cpp.obj - 0001:000035e0 ??0runtime_error@std@@QAE@ABV01@@Z 100045e0 f i logging.cpp.obj - 0001:00003610 ??0system_error@std@@QAE@ABV01@@Z 10004610 f i logging.cpp.obj - 0001:00003660 ??1?$_Yarn@D@std@@QAE@XZ 10004660 f i logging.cpp.obj - 0001:00003660 ??1?$_Yarn@_W@std@@QAE@XZ 10004660 f i logging.cpp.obj - 0001:00003680 ??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 10004680 f i logging.cpp.obj - 0001:000037d0 ??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 100047d0 f i logging.cpp.obj - 0001:00003820 ??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ 10004820 f i logging.cpp.obj - 0001:00003840 ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 10004840 f i logging.cpp.obj - 0001:00003840 ?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXXZ 10004840 f i logging.cpp.obj - 0001:00003890 ??1?$unique_ptr@V_Facet_base@std@@U?$default_delete@V_Facet_base@std@@@2@@std@@QAE@XZ 10004890 f i logging.cpp.obj - 0001:000038a0 ??1_Locinfo@std@@QAE@XZ 100048a0 f i logging.cpp.obj - 0001:00003980 ??1__non_rtti_object@std@@UAE@XZ 10004980 f i libvcruntime:rtti.obj - 0001:00003980 ??1bad_alloc@std@@UAE@XZ 10004980 f i logging.cpp.obj - 0001:00003980 ??1bad_array_new_length@std@@UAE@XZ 10004980 f i logging.cpp.obj - 0001:00003980 ??1bad_cast@std@@UAE@XZ 10004980 f i logging.cpp.obj - 0001:00003980 ??1bad_exception@std@@UAE@XZ 10004980 f i main.cpp.obj - 0001:00003980 ??1bad_function_call@std@@UAE@XZ 10004980 f i libcpmt:xthrow.obj - 0001:00003980 ??1bad_typeid@std@@UAE@XZ 10004980 f i libvcruntime:rtti.obj - 0001:00003980 ??1exception@std@@UAE@XZ 10004980 f i logging.cpp.obj - 0001:00003980 ??1failure@ios_base@std@@UAE@XZ 10004980 f i logging.cpp.obj - 0001:00003980 ??1invalid_argument@std@@UAE@XZ 10004980 f i libcpmt:xthrow.obj - 0001:00003980 ??1length_error@std@@UAE@XZ 10004980 f i libcpmt:xthrow.obj - 0001:00003980 ??1out_of_range@std@@UAE@XZ 10004980 f i libcpmt:xthrow.obj - 0001:00003980 ??1runtime_error@std@@UAE@XZ 10004980 f i logging.cpp.obj - 0001:000039a0 ??1facet@locale@std@@MAE@XZ 100049a0 f i logging.cpp.obj - 0001:000039b0 ??1locale@std@@QAE@XZ 100049b0 f i logging.cpp.obj - 0001:000039d0 ??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100049d0 f i logging.cpp.obj - 0001:00003a5f ??_E?$basic_ofstream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 10004a5f f i logging.cpp.obj - 0001:00003a67 ??_E?$basic_ostream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 10004a67 f i logging.cpp.obj - 0001:00003a70 ??_E?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004a70 f i logging.cpp.obj - 0001:00003a70 ??_G?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004a70 f i logging.cpp.obj - 0001:00003a90 ??_E?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004a90 f i logging.cpp.obj - 0001:00003a90 ??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004a90 f i logging.cpp.obj - 0001:00003b00 ??_E?$basic_ofstream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004b00 f i logging.cpp.obj - 0001:00003b00 ??_G?$basic_ofstream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004b00 f i logging.cpp.obj - 0001:00003b30 ??_E?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004b30 f i logging.cpp.obj - 0001:00003b30 ??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004b30 f i logging.cpp.obj - 0001:00003bc0 ??_E?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004bc0 f i logging.cpp.obj - 0001:00003bc0 ??_G?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004bc0 f i logging.cpp.obj - 0001:00003c10 ??_E?$codecvt@DDU_Mbstatet@@@std@@MAEPAXI@Z 10004c10 f i logging.cpp.obj - 0001:00003c10 ??_E?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 10004c10 f i main.cpp.obj - 0001:00003c10 ??_G?$codecvt@DDU_Mbstatet@@@std@@MAEPAXI@Z 10004c10 f i logging.cpp.obj - 0001:00003c10 ??_G?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 10004c10 f i main.cpp.obj - 0001:00003c40 ??_E?$ctype@D@std@@MAEPAXI@Z 10004c40 f i logging.cpp.obj - 0001:00003c40 ??_G?$ctype@D@std@@MAEPAXI@Z 10004c40 f i logging.cpp.obj - 0001:00003c90 ??_E_Facet_base@std@@UAEPAXI@Z 10004c90 f i logging.cpp.obj - 0001:00003c90 ??_G_Facet_base@std@@UAEPAXI@Z 10004c90 f i logging.cpp.obj - 0001:00003cc0 ??_E_Iostream_error_category2@std@@UAEPAXI@Z 10004cc0 f i logging.cpp.obj - 0001:00003cc0 ??_G_Iostream_error_category2@std@@UAEPAXI@Z 10004cc0 f i logging.cpp.obj - 0001:00003ce0 ??_E_System_error@std@@UAEPAXI@Z 10004ce0 f i logging.cpp.obj - 0001:00003ce0 ??_Efailure@ios_base@std@@UAEPAXI@Z 10004ce0 f i logging.cpp.obj - 0001:00003ce0 ??_Esystem_error@std@@UAEPAXI@Z 10004ce0 f i logging.cpp.obj - 0001:00003ce0 ??_G_System_error@std@@UAEPAXI@Z 10004ce0 f i logging.cpp.obj - 0001:00003ce0 ??_Gfailure@ios_base@std@@UAEPAXI@Z 10004ce0 f i logging.cpp.obj - 0001:00003ce0 ??_Gsystem_error@std@@UAEPAXI@Z 10004ce0 f i logging.cpp.obj - 0001:00003d10 ??_Ebad_alloc@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Ebad_array_new_length@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Ebad_cast@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Ebad_exception@std@@UAEPAXI@Z 10004d10 f i main.cpp.obj - 0001:00003d10 ??_Eexception@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Eruntime_error@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Gbad_alloc@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Gbad_array_new_length@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Gbad_cast@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Gbad_exception@std@@UAEPAXI@Z 10004d10 f i main.cpp.obj - 0001:00003d10 ??_Gexception@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d10 ??_Gruntime_error@std@@UAEPAXI@Z 10004d10 f i logging.cpp.obj - 0001:00003d40 ??_Eios_base@std@@UAEPAXI@Z 10004d40 f i logging.cpp.obj - 0001:00003d40 ??_Gios_base@std@@UAEPAXI@Z 10004d40 f i logging.cpp.obj - 0001:00003db0 ?_Deallocate_for_capacity@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAXAAV?$allocator@D@2@QADI@Z 10004db0 f i logging.cpp.obj - 0001:00003df0 ?_Decref@facet@locale@std@@UAEPAV_Facet_base@3@XZ 10004df0 f i logging.cpp.obj - 0001:00003e10 ?_Endwrite@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAE_NXZ 10004e10 f i logging.cpp.obj - 0001:00003ef0 ?_Incref@facet@locale@std@@UAEXXZ 10004ef0 f i logging.cpp.obj - 0001:00003f00 ?_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@12@@Z 10004f00 f i logging.cpp.obj - 0001:00003fe0 ?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ 10004fe0 f i logging.cpp.obj - 0001:00004040 ?_Initcvt@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXABV?$codecvt@DDU_Mbstatet@@@2@@Z 10005040 f i logging.cpp.obj - 0001:000040c0 ?_Lock@?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEXXZ 100050c0 f i logging.cpp.obj - 0001:000040d0 ?InvalidFunctionPtrCheckHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@I@Z 100050d0 f i main.cpp.obj - 0001:000040d0 ?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ 100050d0 f i logging.cpp.obj - 0001:000040d0 ?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ 100050d0 f i logging.cpp.obj - 0001:000040d0 ?sp_enable_shared_from_this@detail@boost@@YAXZZ 100050d0 f i main.cpp.obj - 0001:000040d0 @_guard_check_icall_nop@4 100050d0 f i libvcruntime:jbcxrval.obj - 0001:000040e0 ?_Reset_back@?$basic_filebuf@DU?$char_traits@D@std@@@std@@AAEXXZ 100050e0 f i logging.cpp.obj - 0001:00004110 ?_Throw_bad_array_new_length@std@@YAXXZ 10005110 f i logging.cpp.obj - 0001:00004130 ?_Throw_bad_cast@std@@YAXXZ 10005130 f i logging.cpp.obj - 0001:00004150 ?_Unlock@?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEXXZ 10005150 f i logging.cpp.obj - 0001:00004160 ?_Xlen_string@std@@YAXXZ 10005160 f i logging.cpp.obj - 0001:00004170 ?_Xran@?$_String_val@U?$_Simple_types@D@std@@@std@@SAXXZ 10005170 f i logging.cpp.obj - 0001:00004180 ?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@QBDI@Z 10005180 f i logging.cpp.obj - 0001:000042e0 ?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ 100052e0 f i logging.cpp.obj - 0001:000042f0 ?clear@ios_base@std@@QAEXH@Z 100052f0 f i logging.cpp.obj - 0001:00004360 ?clear@ios_base@std@@QAEXH_N@Z 10005360 f i logging.cpp.obj - 0001:000043e0 ?deallocate@?$allocator@D@std@@QAEXQADI@Z 100053e0 f i logging.cpp.obj - 0001:00004420 ?default_error_condition@error_category@std@@UBE?AVerror_condition@2@H@Z 10005420 f i logging.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6GXXZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IXXZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?CanHookChainImpl@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBE_NXZ 10005430 f i main.cpp.obj - 0001:00004430 ?do_always_noconv@?$codecvt@DDU_Mbstatet@@@std@@MBE_NXZ 10005430 f i logging.cpp.obj - 0001:00004430 ___acrt_uninitialize_command_line 10005430 f i libucrt:argv_data.obj - 0001:00004440 ?do_encoding@codecvt_base@std@@MBEHXZ 10005440 f i logging.cpp.obj - 0001:00004440 ?do_max_length@codecvt_base@std@@MBEHXZ 10005440 f i logging.cpp.obj - 0001:00004450 ?do_in@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z 10005450 f i logging.cpp.obj - 0001:00004450 ?do_out@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z 10005450 f i logging.cpp.obj - 0001:00004470 ?do_length@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PBD1I@Z 10005470 f i logging.cpp.obj - 0001:00004490 ?do_narrow@?$ctype@D@std@@MBEDDD@Z 10005490 f i logging.cpp.obj - 0001:000044a0 ?do_narrow@?$ctype@D@std@@MBEPBDPBD0DPAD@Z 100054a0 f i logging.cpp.obj - 0001:000044c0 ?do_tolower@?$ctype@D@std@@MBEDD@Z 100054c0 f i logging.cpp.obj - 0001:000044e0 ?do_tolower@?$ctype@D@std@@MBEPBDPADPBD@Z 100054e0 f i logging.cpp.obj - 0001:00004510 ?do_toupper@?$ctype@D@std@@MBEDD@Z 10005510 f i logging.cpp.obj - 0001:00004530 ?do_toupper@?$ctype@D@std@@MBEPBDPADPBD@Z 10005530 f i logging.cpp.obj - 0001:00004560 ?do_unshift@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PAD1AAPAD@Z 10005560 f i logging.cpp.obj - 0001:00004580 ?do_widen@?$ctype@D@std@@MBEDD@Z 10005580 f i logging.cpp.obj - 0001:00004590 ?do_widen@?$ctype@D@std@@MBEPBDPBD0PAD@Z 10005590 f i logging.cpp.obj - 0001:000045b0 ?equivalent@error_category@std@@UBE_NABVerror_code@2@H@Z 100055b0 f i logging.cpp.obj - 0001:000045e0 ?equivalent@error_category@std@@UBE_NHABVerror_condition@2@@Z 100055e0 f i logging.cpp.obj - 0001:00004620 ?imbue@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z 10005620 f i logging.cpp.obj - 0001:000046a0 ?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z 100056a0 f i logging.cpp.obj - 0001:000046b0 ?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 100056b0 f i logging.cpp.obj - 0001:00004830 ?make_error_code@std@@YA?AVerror_code@1@W4io_errc@1@@Z 10005830 f i logging.cpp.obj - 0001:00004850 ?message@_Iostream_error_category2@std@@UBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@H@Z 10005850 f i logging.cpp.obj - 0001:00004910 ?name@_Iostream_error_category2@std@@UBEPBDXZ 10005910 f i logging.cpp.obj - 0001:00004920 ?overflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005920 f i logging.cpp.obj - 0001:00004ab0 ?overflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005ab0 f i logging.cpp.obj - 0001:00004ab0 ?pbackfail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005ab0 f i logging.cpp.obj - 0001:00004ac0 ?pbackfail@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005ac0 f i logging.cpp.obj - 0001:00004b70 ?push_back@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXD@Z 10005b70 f i logging.cpp.obj - 0001:00004c90 ?seekoff@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@_JHH@Z 10005c90 f i logging.cpp.obj - 0001:00004d70 ?seekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@_JHH@Z 10005d70 f i logging.cpp.obj - 0001:00004da0 ?seekpos@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@V32@H@Z 10005da0 f i logging.cpp.obj - 0001:00004e70 ?seekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@V32@H@Z 10005e70 f i logging.cpp.obj - 0001:00004ea0 ?setbuf@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@PAD_J@Z 10005ea0 f i logging.cpp.obj - 0001:00004ef0 ?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PAD_J@Z 10005ef0 f i logging.cpp.obj - 0001:00004f00 ?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z 10005f00 f i logging.cpp.obj - 0001:00004f30 ?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ 10005f30 f i logging.cpp.obj - 0001:00004f40 ?sync@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10005f40 f i logging.cpp.obj - 0001:00004f70 ?get_untyped_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXXZ 10005f70 f i main.cpp.obj - 0001:00004f70 ?get_untyped_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXXZ 10005f70 f i main.cpp.obj - 0001:00004f70 ?get_untyped_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXXZ 10005f70 f i main.cpp.obj - 0001:00004f70 ?get_untyped_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXXZ 10005f70 f i main.cpp.obj - 0001:00004f70 ?get_untyped_deleter@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXXZ 10005f70 f i main.cpp.obj - 0001:00004f70 ?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10005f70 f i logging.cpp.obj - 0001:00004f80 ?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10005f80 f i logging.cpp.obj - 0001:000052c0 ?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100062c0 f i logging.cpp.obj - 0001:000052f0 ?underflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100062f0 f i logging.cpp.obj - 0001:00005330 ?raw_length@pDNameNode@@UBEHXZ 10006330 f i libvcruntime:undname.obj - 0001:00005330 ?underflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10006330 f i logging.cpp.obj - 0001:00005340 ?what@exception@std@@UBEPBDXZ 10006340 f i logging.cpp.obj - 0001:00005350 ?xsgetn@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z 10006350 f i logging.cpp.obj - 0001:00005510 ?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z 10006510 f i logging.cpp.obj - 0001:000055e0 ?xsputn@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z 100065e0 f i logging.cpp.obj - 0001:000057a0 ?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z 100067a0 f i logging.cpp.obj - 0001:00005870 ??$Get@E@CDataStore@Nampower@@QAEXAAE@Z 10006870 f i cdatastore.cpp.obj - 0001:000058f0 ?AssertFetchRead@CDataStore@Nampower@@QAE_NII@Z 100068f0 f cdatastore.cpp.obj - 0001:00005920 ?AssertFetchWrite@CDataStore@Nampower@@QAE_NII@Z 10006920 f cdatastore.cpp.obj - 0001:00005950 ?Destroy@CDataStore@Nampower@@IAEXXZ 10006950 f cdatastore.cpp.obj - 0001:00005970 ?DetachBuffer@CDataStore@Nampower@@UAEXPAPAXPAI1@Z 10006970 f cdatastore.cpp.obj - 0001:000059b0 ?Finalize@CDataStore@Nampower@@UAEXXZ 100069b0 f cdatastore.cpp.obj - 0001:000059c0 ?GetBufferParams@CDataStore@Nampower@@UAEXPAPBXPAI1@Z 100069c0 f cdatastore.cpp.obj - 0001:000059f0 ?GetPackedGuid@CDataStore@Nampower@@QAEXAA_K@Z 100069f0 f cdatastore.cpp.obj - 0001:00005b00 ?Initialize@CDataStore@Nampower@@IAEXXZ 10006b00 f cdatastore.cpp.obj - 0001:00005b20 ?InternalDestroy@CDataStore@Nampower@@MAEXAAPAEAAI1@Z 10006b20 f cdatastore.cpp.obj - 0001:00005b60 ?InternalFetchRead@CDataStore@Nampower@@MAEHIIAAPAEAAI1@Z 10006b60 f cdatastore.cpp.obj - 0001:00005b70 ?InternalFetchWrite@CDataStore@Nampower@@MAEHIIAAPAEAAI1@Z 10006b70 f cdatastore.cpp.obj - 0001:00005bc0 ?InternalInitialize@CDataStore@Nampower@@MAEXAAPAEAAI1@Z 10006bc0 f cdatastore.cpp.obj - 0001:00005bd0 ?IsRead@CDataStore@Nampower@@UAEHXZ 10006bd0 f cdatastore.cpp.obj - 0001:00005be0 ?Reset@CDataStore@Nampower@@UAEXXZ 10006be0 f cdatastore.cpp.obj - 0001:00005c10 ?ClntObjMgrGetActivePlayerGuid@game@@YA_KXZ 10006c10 f game.cpp.obj - 0001:00005c20 ?ClntObjMgrObjectPtr@game@@YAPAIW4TypeMask@1@_K@Z 10006c20 f game.cpp.obj - 0001:00005c40 ?GetActivePlayerUnitFields@game@@YAPAUUnitFields@1@XZ 10006c40 f game.cpp.obj - 0001:00005c60 ?GetCastTime@game@@YAIPAXI@Z 10006c60 f game.cpp.obj - 0001:00005c80 ?GetCorpseOwner@game@@YA_KPAI@Z 10006c80 f game.cpp.obj - 0001:00005ca0 ?GetCurrentTargetGuid@game@@YA_KXZ 10006ca0 f game.cpp.obj - 0001:00005cb0 ?GetDurationObject@game@@YAPAVCDuration@1@I@Z 10006cb0 f game.cpp.obj - 0001:00005cd0 ?GetItemId@game@@YAIPAUCGItem_C@1@@Z 10006cd0 f game.cpp.obj - 0001:00005ce0 ?GetObjectPtr@game@@YAPAI_K@Z 10006ce0 f game.cpp.obj - 0001:00005cf0 ?GetObjectVFTable@game@@YAPAIPAI@Z 10006cf0 f game.cpp.obj - 0001:00005d00 ?GetPlayerInventoryPtr@game@@YAPAIPAI@Z 10006d00 f game.cpp.obj - 0001:00005d10 ?GetSpellDuration@game@@YAHPBUSpellRec@1@_N@Z 10006d10 f game.cpp.obj - 0001:00005d30 ?GetSpellInfo@game@@YAPBUSpellRec@1@I@Z 10006d30 f game.cpp.obj - 0001:00005d50 ?GetSpellModifier@game@@YAHPBUSpellRec@1@W4SpellModOp@1@@Z 10006d50 f game.cpp.obj - 0001:00005d80 ?GetSpellName@game@@YAPBDI@Z 10006d80 f game.cpp.obj - 0001:00005dc0 ?UnitGetGuid@game@@YA_KPAI@Z 10006dc0 f game.cpp.obj - 0001:00005de0 ?UnitGetMountDisplayId@game@@YAIPAI@Z 10006de0 f game.cpp.obj - 0001:00005e00 ?UnitGetOwnerGuidForGuid@game@@YA_K_K@Z 10006e00 f game.cpp.obj - 0001:00005e60 ?UnitGetPetGuidForGuid@game@@YA_K_K@Z 10006e60 f game.cpp.obj - 0001:00005eb0 ?UnitGetTargetGuid@game@@YA_KPAI@Z 10006eb0 f game.cpp.obj - 0001:00005ed0 ?UnitGetTargetGuidForGuid@game@@YA_K_K@Z 10006ed0 f game.cpp.obj - 0001:00005f10 ?UnitIsBuffCapped@game@@YA_NPAI@Z 10006f10 f game.cpp.obj - 0001:00005f50 ?UnitIsDebuffCapped@game@@YA_NPAI@Z 10006f50 f game.cpp.obj - 0001:00005f90 ?UnitIsInCombat@game@@YA_NPAI@Z 10006f90 f game.cpp.obj - 0001:00005fc0 ?UnitIsPvpFlagged@game@@YA_NPAI@Z 10006fc0 f game.cpp.obj - 0001:00005ff0 ??$?0PAD$0A@@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PAD0ABV?$allocator@D@1@@Z 10006ff0 f i main.cpp.obj - 0001:000060b0 ??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 100070b0 f i main.cpp.obj - 0001:00006150 ??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 10007150 f i main.cpp.obj - 0001:000061f0 ??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 100071f0 f i main.cpp.obj - 0001:000062a0 ??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100072a0 f i main.cpp.obj - 0001:00006340 ??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 10007340 f i main.cpp.obj - 0001:000063f0 ??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100073f0 f i main.cpp.obj - 0001:00006490 ??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 10007490 f i main.cpp.obj - 0001:00006530 ??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 10007530 f i main.cpp.obj - 0001:000066b0 ??$?6DU?$char_traits@D@std@@V?$allocator@D@1@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z 100076b0 f i main.cpp.obj - 0001:000066d0 ??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 100076d0 f i main.cpp.obj - 0001:00006970 ??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 10007970 f i main.cpp.obj - 0001:00006c10 ??$?6VError@hadesmem@@UTagErrorCodeWinLast@1@K@boost@@YAABVError@hadesmem@@ABV12@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 10007c10 f i main.cpp.obj - 0001:00006c20 ??$?6VError@hadesmem@@UTagErrorString@1@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YAABVError@hadesmem@@ABV12@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 10007c20 f i main.cpp.obj - 0001:00006c30 ??$Put@I@CDataStore@Nampower@@QAEXI@Z 10007c30 f i main.cpp.obj - 0001:00006c70 ??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 10007c70 f i main.cpp.obj - 0001:00006d30 ??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10007d30 f i main.cpp.obj - 0001:00006ea0 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 10007ea0 f i main.cpp.obj - 0001:00006ea0 ??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 10007ea0 f i main.cpp.obj - 0001:00006ea0 ??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 10007ea0 f i main.cpp.obj - 0001:00007110 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 10008110 f i main.cpp.obj - 0001:00007380 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 10008380 f i main.cpp.obj - 0001:00007380 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 10008380 f i main.cpp.obj - 0001:00007380 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 10008380 f i main.cpp.obj - 0001:00007380 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 10008380 f i main.cpp.obj - 0001:00007380 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 10008380 f i main.cpp.obj - 0001:000075e0 ??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 100085e0 f i main.cpp.obj - 0001:00007840 ??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 10008840 f i main.cpp.obj - 0001:00007840 ??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 10008840 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007aa0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 10008aa0 f i main.cpp.obj - 0001:00007d20 ??$_Destroy_range@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@std@@@std@@YAXPAV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@QAV10@AAV?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@0@@Z 10008d20 f i main.cpp.obj - 0001:00007d60 ??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 10008d60 f i main.cpp.obj - 0001:00007dd0 ??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 10008dd0 f i main.cpp.obj - 0001:00007fc0 ??$_Erase_tree@V?$allocator@U?$_Tree_node@IPAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@I@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@IPAX@std@@@1@PAU?$_Tree_node@IPAX@1@@Z 10008fc0 f i spell_scripts.cpp.obj - 0001:00007fc0 ??$_Erase_tree@V?$allocator@U?$_Tree_node@KPAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@KPAX@std@@@1@PAU?$_Tree_node@KPAX@1@@Z 10008fc0 f i main.cpp.obj - 0001:00008000 ??$_Erase_tree@V?$allocator@U?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@1@PAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@1@@Z 10009000 f i main.cpp.obj - 0001:00008070 ??$_Find_lower_bound@Utype_info_@exception_detail@boost@@@?$_Tree@V?$_Tmap_traits@Utype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@U?$less@Utype_info_@exception_detail@boost@@@std@@V?$allocator@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@@6@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@1@ABUtype_info_@exception_detail@boost@@@Z 10009070 f i main.cpp.obj - 0001:00008110 ??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 10009110 f i main.cpp.obj - 0001:000084f0 ??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100094f0 f i main.cpp.obj - 0001:00008740 ??$_UIntegral_to_buff@DI@std@@YAPADPADI@Z 10009740 f i main.cpp.obj - 0001:00008780 ??$_Uninitialized_move@PAVSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAPAVSuspendedThread@hadesmem@@QAV12@0PAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 10009780 f i main.cpp.obj - 0001:000087d0 ??$checked_delete@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@boost@@YAXPAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@0@@Z 100097d0 f i main.cpp.obj - 0001:000087d0 ??$checked_delete@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@boost@@YAXPAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@0@@Z 100097d0 f i main.cpp.obj - 0001:000087e0 ??$checked_delete@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@YAXPAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 100097e0 f i main.cpp.obj - 0001:000087e0 ??$checked_delete@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@YAXPAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 100097e0 f i main.cpp.obj - 0001:000087e0 ??$checked_delete@Verror_info_base@exception_detail@boost@@@boost@@YAXPAVerror_info_base@exception_detail@0@@Z 100097e0 f i main.cpp.obj - 0001:000087f0 ??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100097f0 f i main.cpp.obj - 0001:00009000 ??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 1000a000 f i main.cpp.obj - 0001:00009810 ??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 1000a810 f i main.cpp.obj - 0001:0000a020 ??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 1000b020 f i main.cpp.obj - 0001:0000a830 ??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 1000b830 f i main.cpp.obj - 0001:0000b040 ??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 1000c040 f i main.cpp.obj - 0001:0000b850 ??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 1000c850 f i main.cpp.obj - 0001:0000c060 ??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 1000d060 f i main.cpp.obj - 0001:0000c880 ??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 1000d880 f i main.cpp.obj - 0001:0000d090 ??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 1000e090 f i main.cpp.obj - 0001:0000d8b0 ??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 1000e8b0 f i main.cpp.obj - 0001:0000e0c0 ??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 1000f0c0 f i main.cpp.obj - 0001:0000e8d0 ??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 1000f8d0 f i main.cpp.obj - 0001:0000f0e0 ??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 100100e0 f i main.cpp.obj - 0001:0000f8f0 ??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100108f0 f i main.cpp.obj - 0001:00010100 ??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 10011100 f i main.cpp.obj - 0001:00010910 ??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 10011910 f i main.cpp.obj - 0001:00011120 ??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 10012120 f i main.cpp.obj - 0001:00011930 ??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 10012930 f i main.cpp.obj - 0001:00012140 ??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 10013140 f i main.cpp.obj - 0001:00012950 ??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 10013950 f i main.cpp.obj - 0001:00013160 ??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 10014160 f i main.cpp.obj - 0001:00013970 ??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 10014970 f i main.cpp.obj - 0001:00014180 ??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 10015180 f i main.cpp.obj - 0001:00014990 ??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 10015990 f i main.cpp.obj - 0001:000151a0 ??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 100161a0 f i main.cpp.obj - 0001:000159b0 ??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 100169b0 f i main.cpp.obj - 0001:000161c0 ??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100171c0 f i main.cpp.obj - 0001:000169d0 ??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100179d0 f i main.cpp.obj - 0001:000171e0 ??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100181e0 f i main.cpp.obj - 0001:000179f0 ??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 100189f0 f i main.cpp.obj - 0001:00018200 ??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 10019200 f i main.cpp.obj - 0001:00018a10 ??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 10019a10 f i main.cpp.obj - 0001:00018a90 ??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 10019a90 f i main.cpp.obj - 0001:00018b10 ??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 10019b10 f i main.cpp.obj - 0001:00018bc0 ??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10019bc0 f i main.cpp.obj - 0001:00018fa0 ??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10019fa0 f i main.cpp.obj - 0001:00019370 ??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 1001a370 f i main.cpp.obj - 0001:000193f0 ??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 1001a3f0 f i main.cpp.obj - 0001:00019550 ??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 1001a550 f i main.cpp.obj - 0001:000196f0 ??$throw_exception@VError@hadesmem@@@boost@@YAXABVError@hadesmem@@ABUsource_location@0@@Z 1001a6f0 f i main.cpp.obj - 0001:00019720 ??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 1001a720 f i main.cpp.obj - 0001:000199a0 ??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 1001a9a0 f i main.cpp.obj - 0001:00019ce0 ??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 1001ace0 f i main.cpp.obj - 0001:00019de0 ??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 1001ade0 f i main.cpp.obj - 0001:00019f50 ??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 1001af50 f i main.cpp.obj - 0001:0001a070 ??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 1001b070 f i main.cpp.obj - 0001:0001a210 ??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 1001b210 f i main.cpp.obj - 0001:0001a3f0 ??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 1001b3f0 f i main.cpp.obj - 0001:0001a5d0 ??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 1001b5d0 f i main.cpp.obj - 0001:0001a7b0 ??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001b7b0 f i main.cpp.obj - 0001:0001a990 ??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 1001b990 f i main.cpp.obj - 0001:0001ab70 ??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 1001bb70 f i main.cpp.obj - 0001:0001ad50 ??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001bd50 f i main.cpp.obj - 0001:0001af30 ??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 1001bf30 f i main.cpp.obj - 0001:0001b110 ??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001c110 f i main.cpp.obj - 0001:0001b2f0 ??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 1001c2f0 f i main.cpp.obj - 0001:0001b4d0 ??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 1001c4d0 f i main.cpp.obj - 0001:0001b6b0 ??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 1001c6b0 f i main.cpp.obj - 0001:0001b890 ??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 1001c890 f i main.cpp.obj - 0001:0001ba70 ??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 1001ca70 f i main.cpp.obj - 0001:0001bc50 ??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 1001cc50 f i main.cpp.obj - 0001:0001be30 ??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001ce30 f i main.cpp.obj - 0001:0001c010 ??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 1001d010 f i main.cpp.obj - 0001:0001c1f0 ??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 1001d1f0 f i main.cpp.obj - 0001:0001c3d0 ??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 1001d3d0 f i main.cpp.obj - 0001:0001c5b0 ??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 1001d5b0 f i main.cpp.obj - 0001:0001c790 ??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 1001d790 f i main.cpp.obj - 0001:0001c970 ??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 1001d970 f i main.cpp.obj - 0001:0001cb50 ??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 1001db50 f i main.cpp.obj - 0001:0001cd30 ??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 1001dd30 f i main.cpp.obj - 0001:0001cf10 ??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 1001df10 f i main.cpp.obj - 0001:0001d0f0 ??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 1001e0f0 f i main.cpp.obj - 0001:0001d2d0 ??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 1001e2d0 f i main.cpp.obj - 0001:0001d4b0 ??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 1001e4b0 f i main.cpp.obj - 0001:0001d690 ??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 1001e690 f i main.cpp.obj - 0001:0001d870 ??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 1001e870 f i main.cpp.obj - 0001:0001da50 ??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 1001ea50 f i main.cpp.obj - 0001:0001dc30 ??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 1001ec30 f i main.cpp.obj - 0001:0001de10 ??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 1001ee10 f i main.cpp.obj - 0001:0001dff0 ??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 1001eff0 f i main.cpp.obj - 0001:0001e0d0 ??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 1001f0d0 f i main.cpp.obj - 0001:0001e1b0 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ID@Z 1001f1b0 f i main.cpp.obj - 0001:0001e260 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@U_String_constructor_concat_tag@1@AAV01@1@Z 1001f260 f i main.cpp.obj - 0001:0001e400 ??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 1001f400 f i main.cpp.obj - 0001:0001e4a0 ??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 1001f4a0 f i main.cpp.obj - 0001:0001e540 ??0?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@QAE@ABK@Z 1001f540 f i main.cpp.obj - 0001:0001e560 ??0?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@QAE@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 1001f560 f i main.cpp.obj - 0001:0001e5b0 ??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 1001f5b0 f i main.cpp.obj - 0001:0001e6c0 ??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 1001f6c0 f i main.cpp.obj - 0001:0001e840 ??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 1001f840 f i main.cpp.obj - 0001:0001e950 ??0CastQueue@Nampower@@QAE@H@Z 1001f950 f i main.cpp.obj - 0001:0001ea20 ??0Error@hadesmem@@QAE@ABV01@@Z 1001fa20 f i main.cpp.obj - 0001:0001eb00 ??0Error@hadesmem@@QAE@XZ 1001fb00 f i main.cpp.obj - 0001:0001eb70 ??0Process@hadesmem@@QAE@K@Z 1001fb70 f i main.cpp.obj - 0001:0001ed50 ??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 1001fd50 f i main.cpp.obj - 0001:0001eec0 ??0SuspendedProcess@hadesmem@@QAE@KK@Z 1001fec0 f i main.cpp.obj - 0001:0001f5e0 ??0Thread@hadesmem@@QAE@K@Z 100205e0 f i main.cpp.obj - 0001:0001f720 ??0bad_alloc@std@@QAE@XZ 10020720 f i main.cpp.obj - 0001:0001f740 ??0bad_alloc_@exception_detail@boost@@QAE@ABU012@@Z 10020740 f i main.cpp.obj - 0001:0001f7c0 ??0bad_exception@std@@QAE@ABV01@@Z 100207c0 f i main.cpp.obj - 0001:0001f7f0 ??0bad_exception@std@@QAE@XZ 100207f0 f i main.cpp.obj - 0001:0001f810 ??0bad_exception_@exception_detail@boost@@QAE@ABU012@@Z 10020810 f i main.cpp.obj - 0001:0001f890 ??0clone_base@exception_detail@boost@@QAE@ABV012@@Z 10020890 f i main.cpp.obj - 0001:0001f8a0 ??0error_info_container_impl@exception_detail@boost@@QAE@XZ 100208a0 f i main.cpp.obj - 0001:0001f940 ??0exception@boost@@QAE@ABV01@@Z 10020940 f i main.cpp.obj - 0001:0001f990 ??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 10020990 f i main.cpp.obj - 0001:0001fa30 ??0source_location@boost@@QAE@PBDI0I@Z 10020a30 f i main.cpp.obj - 0001:0001fa50 ??1?$DetourRefCounter@I@detail@hadesmem@@QAE@XZ 10020a50 f i main.cpp.obj - 0001:0001fa60 ??1?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAE@XZ 10020a60 f i main.cpp.obj - 0001:0001fa70 ??1?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@QAE@XZ 10020a70 f i main.cpp.obj - 0001:0001fa80 ??1?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@QAE@XZ 10020a80 f i main.cpp.obj - 0001:0001fa80 ??1?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@QAE@XZ 10020a80 f i main.cpp.obj - 0001:0001fab0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@IPAX@std@@@std@@@std@@QAE@XZ 10020ab0 f i spell_scripts.cpp.obj - 0001:0001fab0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@KPAX@std@@@std@@@std@@QAE@XZ 10020ab0 f i main.cpp.obj - 0001:0001fad0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@std@@@std@@QAE@XZ 10020ad0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@_K@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@IPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@EH@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@HI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@I@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@IHH@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@IH_K@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@_K@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@_KPAVPatchDetourBase@hadesmem@@PBD@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$_Func_class@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001faf0 ??1?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@QAE@XZ 10020af0 f i main.cpp.obj - 0001:0001fb20 ??1?$_Tidy_guard@V?$numpunct@D@std@@@std@@QAE@XZ 10020b20 f i main.cpp.obj - 0001:0001fb50 ??1?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE@XZ 10020b50 f i spell_scripts.cpp.obj - 0001:0001fb50 ??1?$_Tree@V?$_Tset_traits@KU?$less@K@std@@V?$allocator@K@2@$0A@@std@@@std@@QAE@XZ 10020b50 f i main.cpp.obj - 0001:0001fb90 ??1?$basic_iostream@DU?$char_traits@D@std@@@std@@UAE@XZ 10020b90 f i main.cpp.obj - 0001:0001fbf0 ??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ 10020bf0 f i main.cpp.obj - 0001:0001fc10 ??1?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAE@XZ 10020c10 f i main.cpp.obj - 0001:0001fd20 ??1?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@UAE@XZ 10020d20 f i main.cpp.obj - 0001:0001fd20 ??1error_info_base@exception_detail@boost@@UAE@XZ 10020d20 f i main.cpp.obj - 0001:0001fd30 ??1?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@UAE@XZ 10020d30 f i main.cpp.obj - 0001:0001fd90 ??1?$pair@Utype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@QAE@XZ 10020d90 f i main.cpp.obj - 0001:0001fdd0 ??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 10020dd0 f i main.cpp.obj - 0001:0001fe30 ??1?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@QAE@XZ 10020e30 f i spell_scripts.cpp.obj - 0001:0001fe30 ??1?$set@KU?$less@K@std@@V?$allocator@K@2@@std@@QAE@XZ 10020e30 f i main.cpp.obj - 0001:0001fe40 ??1?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@XZ 10020e40 f i main.cpp.obj - 0001:0001fe40 ??1?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@XZ 10020e40 f i main.cpp.obj - 0001:0001fe40 ??1?$shared_ptr@Verror_info_base@exception_detail@boost@@@boost@@QAE@XZ 10020e40 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe80 ??1?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10020e80 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6GXXZ@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6GXXZ@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IXXZ@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXXZ@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001fe90 ??1?$unique_ptr@V?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10020e90 f i main.cpp.obj - 0001:0001feb0 ??1?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@QAE@XZ 10020eb0 f i main.cpp.obj - 0001:0001fed0 ??1?$vector@DV?$allocator@D@std@@@std@@QAE@XZ 10020ed0 f i main.cpp.obj - 0001:0001fed0 ??1?$vector@EV?$allocator@E@std@@@std@@QAE@XZ 10020ed0 f i main.cpp.obj - 0001:0001fed0 ?_Tidy@?$vector@EV?$allocator@E@std@@@std@@AAEXXZ 10020ed0 f i main.cpp.obj - 0001:0001ff20 ??1?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@QAE@XZ 10020f20 f i main.cpp.obj - 0001:0001ff80 ??1?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@QAE@XZ 10020f80 f i main.cpp.obj - 0001:0001ff80 ??1SuspendedProcess@hadesmem@@QAE@XZ 10020f80 f i main.cpp.obj - 0001:0001ff90 ??1CDataStore@Nampower@@UAE@XZ 10020f90 f i main.cpp.obj - 0001:0001ffe0 ??1Process@hadesmem@@QAE@XZ 10020fe0 f i main.cpp.obj - 0001:0001fff0 ??1ProtectGuard@detail@hadesmem@@QAE@XZ 10020ff0 f i main.cpp.obj - 0001:00020000 ??1Thread@hadesmem@@QAE@XZ 10021000 f i main.cpp.obj - 0001:00020010 ??1_Init_once_completer@std@@QAE@XZ 10021010 f i main.cpp.obj - 0001:00020030 ??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj - 0001:00020080 ??1bad_alloc_@exception_detail@boost@@UAE@XZ 10021080 f i main.cpp.obj - 0001:00020100 ??1bad_exception_@exception_detail@boost@@UAE@XZ 10021100 f i main.cpp.obj - 0001:00020180 ??1clone_base@exception_detail@boost@@UAE@XZ 10021180 f i main.cpp.obj - 0001:00020190 ??1deleter@?$wrapexcept@VError@hadesmem@@@boost@@QAE@XZ 10021190 f i main.cpp.obj - 0001:000201a0 ??1error_info_container@exception_detail@boost@@IAE@XZ 100211a0 f i main.cpp.obj - 0001:000201b0 ??1exception@boost@@MAE@XZ 100211b0 f i main.cpp.obj - 0001:00020210 ??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 10021210 f i main.cpp.obj - 0001:00020280 ??1shared_count@detail@boost@@QAE@XZ 10021280 f i main.cpp.obj - 0001:000202c0 ??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@QBD@Z 100212c0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:000202f0 ??4?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@QAEAAV01@$$T@Z 100212f0 f i main.cpp.obj - 0001:00020320 ??4?$vector@EV?$allocator@E@std@@@std@@QAEAAV01@$$QAV01@@Z 10021320 f i main.cpp.obj - 0001:00020360 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 10021360 f i main.cpp.obj - 0001:00020510 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 10021510 f i main.cpp.obj - 0001:00020510 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 10021510 f i main.cpp.obj - 0001:000206c0 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100216c0 f i main.cpp.obj - 0001:00020870 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z 10021870 f i main.cpp.obj - 0001:00020880 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAVios_base@1@AAV21@@Z@Z 10021880 f i main.cpp.obj - 0001:000208a0 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100218a0 f i main.cpp.obj - 0001:00020a50 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 10021a50 f i main.cpp.obj - 0001:00020c00 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 10021c00 f i main.cpp.obj - 0001:00020db0 ??8type_info@@QBE_NABV0@@Z 10021db0 f i main.cpp.obj - 0001:00020dd0 ??E?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@U_Iterator_base0@2@@std@@QAEAAV01@XZ 10021dd0 f i main.cpp.obj - 0001:00020dd0 ??E?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@U_Iterator_base0@2@@std@@QAEAAV01@XZ 10021dd0 f i pet.cpp.obj - 0001:00020f30 ??R?$less@Utype_info_@exception_detail@boost@@@std@@QBE_NABUtype_info_@exception_detail@boost@@0@Z 10021f30 f i main.cpp.obj - 0001:00020fa0 ??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@QBD@Z 10021fa0 f i main.cpp.obj - 0001:00020fd0 ??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10021fd0 f i main.cpp.obj - 0001:00021060 ??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10022060 f i main.cpp.obj - 0001:00021130 ??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10022130 f i main.cpp.obj - 0001:000211e0 ??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100221e0 f i main.cpp.obj - 0001:00021290 ??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 10022290 f i main.cpp.obj - 0001:00021310 ??_DError@hadesmem@@QAEXXZ 10022310 f i main.cpp.obj - 0001:00021384 ??_E?$basic_iostream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 10022384 f i main.cpp.obj - 0001:0002138c ??_E?$basic_istream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 1002238c f i main.cpp.obj - 0001:00021394 ??_E?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$4PPPPPPPM@A@AEPAXI@Z 10022394 f i main.cpp.obj - 0001:0002139c ??_E?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$4PPPPPPPM@A@AEPAXI@Z 1002239c f i main.cpp.obj - 0001:000213a4 ??_E?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@$4PPPPPPPM@CM@AEPAXI@Z 100223a4 f i main.cpp.obj - 0001:000213af ??_E?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@WBI@AEPAXI@Z 100223af f i main.cpp.obj - 0001:000213b7 ??_E?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@$4PPPPPPPM@CM@AEPAXI@Z 100223b7 f i main.cpp.obj - 0001:000213c2 ??_E?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@WBI@AEPAXI@Z 100223c2 f i main.cpp.obj - 0001:000213ca ??_E?$wrapexcept@VError@hadesmem@@@boost@@W7AEPAXI@Z 100223ca f i main.cpp.obj - 0001:000213d2 ??_E?$wrapexcept@VError@hadesmem@@@boost@@WBE@AEPAXI@Z 100223d2 f i main.cpp.obj - 0001:000213da ??_EError@hadesmem@@WM@AEPAXI@Z 100223da f i main.cpp.obj - 0001:000213e2 ??_Ebad_alloc_@exception_detail@boost@@WBI@AEPAXI@Z 100223e2 f i main.cpp.obj - 0001:000213ea ??_Ebad_exception_@exception_detail@boost@@WBI@AEPAXI@Z 100223ea f i main.cpp.obj - 0001:00021400 ??_E?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10022400 f i main.cpp.obj - 0001:00021400 ??_G?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10022400 f i main.cpp.obj - 0001:00021500 ??_E?$PatchDetour@P6GXXZPAX@hadesmem@@UAEPAXI@Z 10022500 f i main.cpp.obj - 0001:00021500 ??_G?$PatchDetour@P6GXXZPAX@hadesmem@@UAEPAXI@Z 10022500 f i main.cpp.obj - 0001:00021600 ??_E?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10022600 f i main.cpp.obj - 0001:00021600 ??_G?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10022600 f i main.cpp.obj - 0001:00021700 ??_E?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022700 f i main.cpp.obj - 0001:00021700 ??_G?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022700 f i main.cpp.obj - 0001:00021800 ??_E?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEPAXI@Z 10022800 f i main.cpp.obj - 0001:00021800 ??_G?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEPAXI@Z 10022800 f i main.cpp.obj - 0001:00021900 ??_E?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEPAXI@Z 10022900 f i main.cpp.obj - 0001:00021900 ??_G?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEPAXI@Z 10022900 f i main.cpp.obj - 0001:00021a00 ??_E?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022a00 f i main.cpp.obj - 0001:00021a00 ??_G?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022a00 f i main.cpp.obj - 0001:00021b00 ??_E?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEPAXI@Z 10022b00 f i main.cpp.obj - 0001:00021b00 ??_G?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEPAXI@Z 10022b00 f i main.cpp.obj - 0001:00021c00 ??_E?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022c00 f i main.cpp.obj - 0001:00021c00 ??_G?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022c00 f i main.cpp.obj - 0001:00021d00 ??_E?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEPAXI@Z 10022d00 f i main.cpp.obj - 0001:00021d00 ??_G?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEPAXI@Z 10022d00 f i main.cpp.obj - 0001:00021e00 ??_E?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEPAXI@Z 10022e00 f i main.cpp.obj - 0001:00021e00 ??_G?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEPAXI@Z 10022e00 f i main.cpp.obj - 0001:00021f00 ??_E?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEPAXI@Z 10022f00 f i main.cpp.obj - 0001:00021f00 ??_G?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEPAXI@Z 10022f00 f i main.cpp.obj - 0001:00022000 ??_E?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEPAXI@Z 10023000 f i main.cpp.obj - 0001:00022000 ??_G?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEPAXI@Z 10023000 f i main.cpp.obj - 0001:00022100 ??_E?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEPAXI@Z 10023100 f i main.cpp.obj - 0001:00022100 ??_G?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEPAXI@Z 10023100 f i main.cpp.obj - 0001:00022200 ??_E?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEPAXI@Z 10023200 f i main.cpp.obj - 0001:00022200 ??_G?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEPAXI@Z 10023200 f i main.cpp.obj - 0001:00022300 ??_E?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEPAXI@Z 10023300 f i main.cpp.obj - 0001:00022300 ??_G?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEPAXI@Z 10023300 f i main.cpp.obj - 0001:00022400 ??_E?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEPAXI@Z 10023400 f i main.cpp.obj - 0001:00022400 ??_G?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEPAXI@Z 10023400 f i main.cpp.obj - 0001:00022500 ??_E?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEPAXI@Z 10023500 f i main.cpp.obj - 0001:00022500 ??_G?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEPAXI@Z 10023500 f i main.cpp.obj - 0001:00022600 ??_E?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEPAXI@Z 10023600 f i main.cpp.obj - 0001:00022600 ??_G?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEPAXI@Z 10023600 f i main.cpp.obj - 0001:00022700 ??_E?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEPAXI@Z 10023700 f i main.cpp.obj - 0001:00022700 ??_G?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEPAXI@Z 10023700 f i main.cpp.obj - 0001:00022800 ??_E?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEPAXI@Z 10023800 f i main.cpp.obj - 0001:00022800 ??_G?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEPAXI@Z 10023800 f i main.cpp.obj - 0001:00022900 ??_E?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023900 f i main.cpp.obj - 0001:00022900 ??_G?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023900 f i main.cpp.obj - 0001:00022a00 ??_E?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEPAXI@Z 10023a00 f i main.cpp.obj - 0001:00022a00 ??_G?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEPAXI@Z 10023a00 f i main.cpp.obj - 0001:00022b00 ??_E?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023b00 f i main.cpp.obj - 0001:00022b00 ??_G?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023b00 f i main.cpp.obj - 0001:00022c00 ??_E?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEPAXI@Z 10023c00 f i main.cpp.obj - 0001:00022c00 ??_G?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEPAXI@Z 10023c00 f i main.cpp.obj - 0001:00022d00 ??_E?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEPAXI@Z 10023d00 f i main.cpp.obj - 0001:00022d00 ??_G?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEPAXI@Z 10023d00 f i main.cpp.obj - 0001:00022e00 ??_E?$PatchDetour@P6IXXZPAX@hadesmem@@UAEPAXI@Z 10023e00 f i main.cpp.obj - 0001:00022e00 ??_G?$PatchDetour@P6IXXZPAX@hadesmem@@UAEPAXI@Z 10023e00 f i main.cpp.obj - 0001:00022f00 ??_E?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEPAXI@Z 10023f00 f i main.cpp.obj - 0001:00022f00 ??_G?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEPAXI@Z 10023f00 f i main.cpp.obj - 0001:00023000 ??_E?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEPAXI@Z 10024000 f i main.cpp.obj - 0001:00023000 ??_G?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEPAXI@Z 10024000 f i main.cpp.obj - 0001:00023100 ??_E?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEPAXI@Z 10024100 f i main.cpp.obj - 0001:00023100 ??_G?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEPAXI@Z 10024100 f i main.cpp.obj - 0001:00023200 ??_E?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEPAXI@Z 10024200 f i main.cpp.obj - 0001:00023200 ??_G?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEPAXI@Z 10024200 f i main.cpp.obj - 0001:00023300 ??_E?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEPAXI@Z 10024300 f i main.cpp.obj - 0001:00023300 ??_G?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEPAXI@Z 10024300 f i main.cpp.obj - 0001:00023400 ??_E?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEPAXI@Z 10024400 f i main.cpp.obj - 0001:00023400 ??_G?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEPAXI@Z 10024400 f i main.cpp.obj - 0001:00023500 ??_E?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 10024500 f i main.cpp.obj - 0001:00023500 ??_G?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 10024500 f i main.cpp.obj - 0001:00023530 ??_E?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 10024530 f i main.cpp.obj - 0001:00023530 ??_G?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 10024530 f i main.cpp.obj - 0001:00023560 ??_E?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10024560 f i main.cpp.obj - 0001:00023560 ??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10024560 f i main.cpp.obj - 0001:00023620 ??_E?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10024620 f i main.cpp.obj - 0001:00023620 ??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10024620 f i main.cpp.obj - 0001:000236b0 ??_E?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 100246b0 f i main.cpp.obj - 0001:000236b0 ??_G?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 100246b0 f i main.cpp.obj - 0001:000236e0 ??_E?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 100246e0 f i main.cpp.obj - 0001:000236e0 ??_G?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 100246e0 f i main.cpp.obj - 0001:00023700 ??_E?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 10024700 f i main.cpp.obj - 0001:00023700 ??_G?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 10024700 f i main.cpp.obj - 0001:00023730 ??_E?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 10024730 f i main.cpp.obj - 0001:00023730 ??_G?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 10024730 f i main.cpp.obj - 0001:00023750 ??_E?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 10024750 f i main.cpp.obj - 0001:00023750 ??_G?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 10024750 f i main.cpp.obj - 0001:00023770 ??_E?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@UAEPAXI@Z 10024770 f i main.cpp.obj - 0001:00023770 ??_G?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@UAEPAXI@Z 10024770 f i main.cpp.obj - 0001:000237a0 ??_E?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@UAEPAXI@Z 100247a0 f i main.cpp.obj - 0001:000237a0 ??_G?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@UAEPAXI@Z 100247a0 f i main.cpp.obj - 0001:000237c0 ??_E?$numpunct@D@std@@MAEPAXI@Z 100247c0 f i main.cpp.obj - 0001:000237c0 ??_G?$numpunct@D@std@@MAEPAXI@Z 100247c0 f i main.cpp.obj - 0001:00023810 ??_E?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_E?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_E?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_E?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_E?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_G?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_G?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_G?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_G?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023810 ??_G?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 10024810 f i main.cpp.obj - 0001:00023840 ??_E?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 10024840 f i main.cpp.obj - 0001:00023840 ??_G?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 10024840 f i main.cpp.obj - 0001:00023880 ??_E?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 10024880 f i main.cpp.obj - 0001:00023880 ??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 10024880 f i main.cpp.obj - 0001:00023910 ??_ECDataStore@Nampower@@UAEPAXI@Z 10024910 f i main.cpp.obj - 0001:00023910 ??_GCDataStore@Nampower@@UAEPAXI@Z 10024910 f i main.cpp.obj - 0001:00023980 ??_EError@hadesmem@@UAEPAXI@Z 10024980 f i main.cpp.obj - 0001:00023980 ??_GError@hadesmem@@UAEPAXI@Z 10024980 f i main.cpp.obj - 0001:00023a10 ??_Ebad_alloc_@exception_detail@boost@@UAEPAXI@Z 10024a10 f i main.cpp.obj - 0001:00023a10 ??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 10024a10 f i main.cpp.obj - 0001:00023aa0 ??_Ebad_exception_@exception_detail@boost@@UAEPAXI@Z 10024aa0 f i main.cpp.obj - 0001:00023aa0 ??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 10024aa0 f i main.cpp.obj - 0001:00023b30 ??_Eclone_base@exception_detail@boost@@UAEPAXI@Z 10024b30 f i main.cpp.obj - 0001:00023b30 ??_Gclone_base@exception_detail@boost@@UAEPAXI@Z 10024b30 f i main.cpp.obj - 0001:00023b60 ??_Eerror_info_base@exception_detail@boost@@UAEPAXI@Z 10024b60 f i main.cpp.obj - 0001:00023b60 ??_Gerror_info_base@exception_detail@boost@@UAEPAXI@Z 10024b60 f i main.cpp.obj - 0001:00023b90 ??_Esp_counted_base@detail@boost@@UAEPAXI@Z 10024b90 f i main.cpp.obj - 0001:00023b90 ??_Gsp_counted_base@detail@boost@@UAEPAXI@Z 10024b90 f i main.cpp.obj - 0001:00023bc0 ?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 10024bc0 f i main.cpp.obj - 0001:00023bc0 ?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 10024bc0 f i main.cpp.obj - 0001:00023d50 ?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 10024d50 f i main.cpp.obj - 0001:00023df0 ?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10024df0 f i main.cpp.obj - 0001:00024660 ?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10025660 f i main.cpp.obj - 0001:00024ed0 ?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10025ed0 f i main.cpp.obj - 0001:00025740 ?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10026740 f i main.cpp.obj - 0001:00025fb0 ?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10026fb0 f i main.cpp.obj - 0001:00026820 ?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 10027820 f i main.cpp.obj - 0001:00027090 ?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10028090 f i main.cpp.obj - 0001:00027900 ?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10028900 f i main.cpp.obj - 0001:00028170 ?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10029170 f i main.cpp.obj - 0001:000289e0 ?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100299e0 f i main.cpp.obj - 0001:00029250 ?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1002a250 f i main.cpp.obj - 0001:00029ad0 ?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 1002aad0 f i main.cpp.obj - 0001:0002a340 ?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 1002b340 f i main.cpp.obj - 0001:0002abb0 ?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1002bbb0 f i main.cpp.obj - 0001:0002b420 ?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1002c420 f i main.cpp.obj - 0001:0002bc90 ?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 1002cc90 f i main.cpp.obj - 0001:0002c500 ?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 1002d500 f i main.cpp.obj - 0001:0002cd70 ?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1002dd70 f i main.cpp.obj - 0001:0002d5e0 ?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1002e5e0 f i main.cpp.obj - 0001:0002de50 ?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1002ee50 f i main.cpp.obj - 0001:0002e6c0 ?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 1002f6c0 f i main.cpp.obj - 0001:0002ef30 ?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1002ff30 f i main.cpp.obj - 0001:0002f7a0 ?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100307a0 f i main.cpp.obj - 0001:00030010 ?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10031010 f i main.cpp.obj - 0001:00030880 ?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 10031880 f i main.cpp.obj - 0001:000310f0 ?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100320f0 f i main.cpp.obj - 0001:00031960 ?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10032960 f i main.cpp.obj - 0001:000321d0 ?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100331d0 f i main.cpp.obj - 0001:00032a40 ?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10033a40 f i main.cpp.obj - 0001:000332b0 ?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100342b0 f i main.cpp.obj - 0001:00033b20 ?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10034b20 f i main.cpp.obj - 0001:00034390 ?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10035390 f i main.cpp.obj - 0001:00034c10 ?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10035c10 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6GXXZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IXXZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035480 ?CanHookChain@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBE_NXZ 10036480 f i main.cpp.obj - 0001:00035490 ?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 10036490 f i main.cpp.obj - 0001:00035580 ?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 10036580 f i main.cpp.obj - 0001:00035630 ?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 10036630 f i main.cpp.obj - 0001:00035790 ?CleanupUnchecked@Process@hadesmem@@AAEXXZ 10036790 f i main.cpp.obj - 0001:00035870 ?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 10036870 f i main.cpp.obj - 0001:00035950 ?ClearQueuedSpells@Nampower@@YAXXZ 10036950 f main.cpp.obj - 0001:00035a50 ?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 10036a50 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035b90 ?Detach@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10036b90 f i main.cpp.obj - 0001:00035ba0 ?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 10036ba0 f i main.cpp.obj - 0001:00035cc0 ?EffectiveCastEndMs@Nampower@@YAIXZ 10036cc0 f main.cpp.obj - 0001:00035d40 ?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 10036d40 f i main.cpp.obj - 0001:00035e30 ?FrameScript_CreateEventsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@HI@Z 10036e30 f main.cpp.obj - 0001:00035e60 ?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 10036e60 f main.cpp.obj - 0001:00035fa0 ?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 10036fa0 f i main.cpp.obj - 0001:00036120 ?GenStubGate32@detail@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@PAX00@Z 10037120 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEPAXXZ 10037220 f i main.cpp.obj - 0001:00036220 ?GetContext@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPBXXZ 10037220 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036230 ?GetDetour@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPBXXZ 10037230 f i main.cpp.obj - 0001:00036240 ?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 10037240 f main.cpp.obj - 0001:00036430 ?GetLatencyMs@Nampower@@YAIXZ 10037430 f main.cpp.obj - 0001:000364a0 ?GetLuaStatePtr@Nampower@@YAPAIXZ 100374a0 f main.cpp.obj - 0001:000364b0 ?GetOriginalArbitraryUserPtr@PatchDetourBase@hadesmem@@UBEPAXXZ 100374b0 f i main.cpp.obj - 0001:000364d0 ?GetOriginalArbitraryUserPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ 100374d0 f i main.cpp.obj - 0001:000364f0 ?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100374f0 f i main.cpp.obj - 0001:00036750 ?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 10037750 f i main.cpp.obj - 0001:000369b0 ?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100379b0 f i main.cpp.obj - 0001:00036c10 ?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 10037c10 f i main.cpp.obj - 0001:00036e70 ?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 10037e70 f i main.cpp.obj - 0001:000370d0 ?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 100380d0 f i main.cpp.obj - 0001:00037330 ?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 10038330 f i main.cpp.obj - 0001:00037590 ?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 10038590 f i main.cpp.obj - 0001:000377f0 ?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 100387f0 f i main.cpp.obj - 0001:00037a50 ?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 10038a50 f i main.cpp.obj - 0001:00037cb0 ?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 10038cb0 f i main.cpp.obj - 0001:00037f10 ?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 10038f10 f i main.cpp.obj - 0001:00038170 ?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 10039170 f i main.cpp.obj - 0001:000383d0 ?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 100393d0 f i main.cpp.obj - 0001:00038630 ?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 10039630 f i main.cpp.obj - 0001:00038890 ?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 10039890 f i main.cpp.obj - 0001:00038af0 ?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 10039af0 f i main.cpp.obj - 0001:00038d50 ?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 10039d50 f i main.cpp.obj - 0001:00038fb0 ?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 10039fb0 f i main.cpp.obj - 0001:00039210 ?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 1003a210 f i main.cpp.obj - 0001:00039470 ?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 1003a470 f i main.cpp.obj - 0001:000396d0 ?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 1003a6d0 f i main.cpp.obj - 0001:00039930 ?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 1003a930 f i main.cpp.obj - 0001:00039b90 ?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 1003ab90 f i main.cpp.obj - 0001:00039df0 ?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 1003adf0 f i main.cpp.obj - 0001:0003a050 ?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 1003b050 f i main.cpp.obj - 0001:0003a2b0 ?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 1003b2b0 f i main.cpp.obj - 0001:0003a510 ?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 1003b510 f i main.cpp.obj - 0001:0003a770 ?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 1003b770 f i main.cpp.obj - 0001:0003a9d0 ?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 1003b9d0 f i main.cpp.obj - 0001:0003ac30 ?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 1003bc30 f i main.cpp.obj - 0001:0003ae90 ?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 1003be90 f i main.cpp.obj - 0001:0003b0f0 ?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 1003c0f0 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b350 ?GetRefCount@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c350 f i main.cpp.obj - 0001:0003b360 ?GetReturnAddressPtr@PatchDetourBase@hadesmem@@UBEPAXXZ 1003c360 f i main.cpp.obj - 0001:0003b380 ?GetReturnAddressPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ 1003c380 f i main.cpp.obj - 0001:0003b3a0 ?GetServerDelayMs@Nampower@@YAIXZ 1003c3a0 f main.cpp.obj - 0001:0003b3e0 ?GetStringCvar@Nampower@@YAPBDPBD@Z 1003c3e0 f main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b400 ?GetTarget@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPAXXZ 1003c400 f i main.cpp.obj - 0001:0003b410 ?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 1003c410 f i main.cpp.obj - 0001:0003b5c0 ?GetTime@Nampower@@YAIXZ 1003c5c0 f main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b5f0 ?GetTrampoline@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPAXXZ 1003c5f0 f i main.cpp.obj - 0001:0003b600 ?GetWowTimeMs@Nampower@@YA_KXZ 1003c600 f main.cpp.obj - 0001:0003b610 ?ISceneEndHook@Nampower@@YAPAHPAVPatchDetourBase@hadesmem@@PAI@Z 1003c610 f main.cpp.obj - 0001:0003b640 ?InSpellQueueWindow@Nampower@@YA_NII_N@Z 1003c640 f main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6GXXZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IXXZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?IsApplied@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBE_NXZ 1003c6f0 f i main.cpp.obj - 0001:0003b6f0 ?do_decimal_point@?$numpunct@D@std@@MBEDXZ 1003c6f0 f i main.cpp.obj - 0001:0003b700 ?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 1003c700 f i main.cpp.obj - 0001:0003b800 ?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 1003c800 f main.cpp.obj - 0001:0003c2a0 ?LuaCall@Nampower@@YAXPBD@Z 1003d2a0 f main.cpp.obj - 0001:0003c2b0 ?OnSpriteRightClickHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@_K@Z 1003d2b0 f main.cpp.obj - 0001:0003c350 ?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 1003d350 f i main.cpp.obj - 0001:0003c460 ?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 1003d460 f i main.cpp.obj - 0001:0003c570 ?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 1003d570 f i main.cpp.obj - 0001:0003c960 ?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 1003d960 f i main.cpp.obj - 0001:0003ca70 ?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 1003da70 f main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cba0 ?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 1003dba0 f i main.cpp.obj - 0001:0003cc30 ?RemovePatch@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003dc30 f i main.cpp.obj - 0001:0003cc70 ?RemovePatch@?$PatchDetour@P6GXXZPAX@hadesmem@@MAEXXZ 1003dc70 f i main.cpp.obj - 0001:0003ccb0 ?RemovePatch@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003dcb0 f i main.cpp.obj - 0001:0003ccf0 ?RemovePatch@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MAEXXZ 1003dcf0 f i main.cpp.obj - 0001:0003cd30 ?RemovePatch@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MAEXXZ 1003dd30 f i main.cpp.obj - 0001:0003cd70 ?RemovePatch@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MAEXXZ 1003dd70 f i main.cpp.obj - 0001:0003cdb0 ?RemovePatch@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MAEXXZ 1003ddb0 f i main.cpp.obj - 0001:0003cdf0 ?RemovePatch@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MAEXXZ 1003ddf0 f i main.cpp.obj - 0001:0003ce30 ?RemovePatch@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MAEXXZ 1003de30 f i main.cpp.obj - 0001:0003ce70 ?RemovePatch@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MAEXXZ 1003de70 f i main.cpp.obj - 0001:0003ceb0 ?RemovePatch@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MAEXXZ 1003deb0 f i main.cpp.obj - 0001:0003cef0 ?RemovePatch@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MAEXXZ 1003def0 f i main.cpp.obj - 0001:0003cf30 ?RemovePatch@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MAEXXZ 1003df30 f i main.cpp.obj - 0001:0003cf70 ?RemovePatch@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MAEXXZ 1003df70 f i main.cpp.obj - 0001:0003cfb0 ?RemovePatch@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MAEXXZ 1003dfb0 f i main.cpp.obj - 0001:0003cff0 ?RemovePatch@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MAEXXZ 1003dff0 f i main.cpp.obj - 0001:0003d030 ?RemovePatch@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MAEXXZ 1003e030 f i main.cpp.obj - 0001:0003d070 ?RemovePatch@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MAEXXZ 1003e070 f i main.cpp.obj - 0001:0003d0b0 ?RemovePatch@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MAEXXZ 1003e0b0 f i main.cpp.obj - 0001:0003d0f0 ?RemovePatch@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MAEXXZ 1003e0f0 f i main.cpp.obj - 0001:0003d130 ?RemovePatch@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MAEXXZ 1003e130 f i main.cpp.obj - 0001:0003d170 ?RemovePatch@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003e170 f i main.cpp.obj - 0001:0003d1b0 ?RemovePatch@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MAEXXZ 1003e1b0 f i main.cpp.obj - 0001:0003d1f0 ?RemovePatch@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003e1f0 f i main.cpp.obj - 0001:0003d230 ?RemovePatch@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MAEXXZ 1003e230 f i main.cpp.obj - 0001:0003d270 ?RemovePatch@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MAEXXZ 1003e270 f i main.cpp.obj - 0001:0003d2b0 ?RemovePatch@?$PatchDetour@P6IXXZPAX@hadesmem@@MAEXXZ 1003e2b0 f i main.cpp.obj - 0001:0003d2f0 ?RemovePatch@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MAEXXZ 1003e2f0 f i main.cpp.obj - 0001:0003d330 ?RemovePatch@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MAEXXZ 1003e330 f i main.cpp.obj - 0001:0003d370 ?RemovePatch@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MAEXXZ 1003e370 f i main.cpp.obj - 0001:0003d3b0 ?RemovePatch@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MAEXXZ 1003e3b0 f i main.cpp.obj - 0001:0003d3f0 ?RemovePatch@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MAEXXZ 1003e3f0 f i main.cpp.obj - 0001:0003d430 ?RemovePatch@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MAEXXZ 1003e430 f i main.cpp.obj - 0001:0003d470 ?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003e470 f i main.cpp.obj - 0001:0003d550 ?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 1003e550 f i main.cpp.obj - 0001:0003d630 ?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003e630 f i main.cpp.obj - 0001:0003d710 ?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 1003e710 f i main.cpp.obj - 0001:0003d7f0 ?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 1003e7f0 f i main.cpp.obj - 0001:0003d8d0 ?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 1003e8d0 f i main.cpp.obj - 0001:0003d9b0 ?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 1003e9b0 f i main.cpp.obj - 0001:0003da90 ?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 1003ea90 f i main.cpp.obj - 0001:0003db70 ?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 1003eb70 f i main.cpp.obj - 0001:0003dc50 ?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 1003ec50 f i main.cpp.obj - 0001:0003dd30 ?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1003ed30 f i main.cpp.obj - 0001:0003de10 ?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 1003ee10 f i main.cpp.obj - 0001:0003def0 ?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 1003eef0 f i main.cpp.obj - 0001:0003dfd0 ?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1003efd0 f i main.cpp.obj - 0001:0003e0b0 ?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1003f0b0 f i main.cpp.obj - 0001:0003e190 ?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 1003f190 f i main.cpp.obj - 0001:0003e270 ?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 1003f270 f i main.cpp.obj - 0001:0003e350 ?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1003f350 f i main.cpp.obj - 0001:0003e430 ?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1003f430 f i main.cpp.obj - 0001:0003e510 ?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1003f510 f i main.cpp.obj - 0001:0003e5f0 ?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 1003f5f0 f i main.cpp.obj - 0001:0003e6d0 ?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003f6d0 f i main.cpp.obj - 0001:0003e7b0 ?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 1003f7b0 f i main.cpp.obj - 0001:0003e890 ?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003f890 f i main.cpp.obj - 0001:0003e970 ?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 1003f970 f i main.cpp.obj - 0001:0003ea50 ?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 1003fa50 f i main.cpp.obj - 0001:0003eb30 ?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 1003fb30 f i main.cpp.obj - 0001:0003ec10 ?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 1003fc10 f i main.cpp.obj - 0001:0003ecf0 ?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 1003fcf0 f i main.cpp.obj - 0001:0003edd0 ?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 1003fdd0 f i main.cpp.obj - 0001:0003eeb0 ?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 1003feb0 f i main.cpp.obj - 0001:0003ef90 ?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 1003ff90 f i main.cpp.obj - 0001:0003f070 ?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10040070 f i main.cpp.obj - 0001:0003f150 ?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 10040150 f i main.cpp.obj - 0001:0003f280 ?ResetCastFlags@Nampower@@YAXXZ 10040280 f main.cpp.obj - 0001:0003f2e0 ?ResetChannelingFlags@Nampower@@YAXXZ 100402e0 f main.cpp.obj - 0001:0003f320 ?ResetDisenchantState@Nampower@@YAXXZ 10040320 f main.cpp.obj - 0001:0003f350 ?ResetOnSwingFlags@Nampower@@YAXXZ 10040350 f main.cpp.obj - 0001:0003f370 ?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 10040370 f i main.cpp.obj - 0001:0003f430 ?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 10040430 f i main.cpp.obj - 0001:0003f570 ?Script_SetCVarHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAI@Z 10040570 f main.cpp.obj - 0001:0003f5e0 ?SetSelectionTarget@Nampower@@YAX_K@Z 100405e0 f main.cpp.obj - 0001:0003f700 ?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 10040700 f i main.cpp.obj - 0001:0003f7b0 ?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 100407b0 f i main.cpp.obj - 0001:0003f7b0 ?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 100407b0 f i main.cpp.obj - 0001:0003f850 ?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 10040850 f i main.cpp.obj - 0001:0003f910 ?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 10040910 f i main.cpp.obj - 0001:0003f910 ?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 10040910 f i main.cpp.obj - 0001:0003f910 ?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 10040910 f i main.cpp.obj - 0001:0003f910 ?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 10040910 f i main.cpp.obj - 0001:0003f9b0 ?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 100409b0 f i main.cpp.obj - 0001:0003fa60 ?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 10040a60 f i main.cpp.obj - 0001:0003fb20 ?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 10040b20 f i main.cpp.obj - 0001:0003fbd0 ?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 10040bd0 f i main.cpp.obj - 0001:0003fbd0 ?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 10040bd0 f i main.cpp.obj - 0001:0003fc80 ?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 10040c80 f i main.cpp.obj - 0001:0003fc80 ?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 10040c80 f i main.cpp.obj - 0001:0003fd20 ?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 10040d20 f i main.cpp.obj - 0001:0003fd20 ?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 10040d20 f i main.cpp.obj - 0001:0003fd20 ?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 10040d20 f i main.cpp.obj - 0001:0003fd20 ?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 10040d20 f i main.cpp.obj - 0001:0003fde0 ?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 10040de0 f i main.cpp.obj - 0001:0003fea0 ?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 10040ea0 f i main.cpp.obj - 0001:0003ff70 ?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 10040f70 f i main.cpp.obj - 0001:00040030 ?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 10041030 f i main.cpp.obj - 0001:00040030 ?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 10041030 f i main.cpp.obj - 0001:00040030 ?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 10041030 f i main.cpp.obj - 0001:000400f0 ?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 100410f0 f i main.cpp.obj - 0001:000401a0 ?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 100411a0 f i main.cpp.obj - 0001:00040270 ?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 10041270 f i main.cpp.obj - 0001:00040320 ?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 10041320 f i main.cpp.obj - 0001:000403e0 ?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 100413e0 f i main.cpp.obj - 0001:00040480 ?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 10041480 f i main.cpp.obj - 0001:00040550 ?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 10041550 f i main.cpp.obj - 0001:00040620 ?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 10041620 f i main.cpp.obj - 0001:000406d0 ?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100416d0 f i main.cpp.obj - 0001:000407f0 ?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100417f0 f main.cpp.obj - 0001:00040890 ?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 10041890 f i main.cpp.obj - 0001:00040990 ?TraceFormatImpl@@YAXPBDABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10041990 f i main.cpp.obj - 0001:00040a80 ?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 10041a80 f i main.cpp.obj - 0001:00040c30 ?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 10041c30 f i main.cpp.obj - 0001:00040d90 ?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10041d90 f i main.cpp.obj - 0001:000410f0 ?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100420f0 f i main.cpp.obj - 0001:00041250 ?WritePatch@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 10042250 f i main.cpp.obj - 0001:00041290 ?WritePatch@?$PatchDetour@P6GXXZPAX@hadesmem@@MAEXXZ 10042290 f i main.cpp.obj - 0001:000412d0 ?WritePatch@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 100422d0 f i main.cpp.obj - 0001:00041310 ?WritePatch@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MAEXXZ 10042310 f i main.cpp.obj - 0001:00041350 ?WritePatch@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MAEXXZ 10042350 f i main.cpp.obj - 0001:00041390 ?WritePatch@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MAEXXZ 10042390 f i main.cpp.obj - 0001:000413d0 ?WritePatch@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MAEXXZ 100423d0 f i main.cpp.obj - 0001:00041410 ?WritePatch@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MAEXXZ 10042410 f i main.cpp.obj - 0001:00041450 ?WritePatch@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MAEXXZ 10042450 f i main.cpp.obj - 0001:00041490 ?WritePatch@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MAEXXZ 10042490 f i main.cpp.obj - 0001:000414d0 ?WritePatch@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MAEXXZ 100424d0 f i main.cpp.obj - 0001:00041510 ?WritePatch@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MAEXXZ 10042510 f i main.cpp.obj - 0001:00041550 ?WritePatch@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MAEXXZ 10042550 f i main.cpp.obj - 0001:00041590 ?WritePatch@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MAEXXZ 10042590 f i main.cpp.obj - 0001:000415d0 ?WritePatch@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MAEXXZ 100425d0 f i main.cpp.obj - 0001:00041610 ?WritePatch@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MAEXXZ 10042610 f i main.cpp.obj - 0001:00041650 ?WritePatch@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MAEXXZ 10042650 f i main.cpp.obj - 0001:00041690 ?WritePatch@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MAEXXZ 10042690 f i main.cpp.obj - 0001:000416d0 ?WritePatch@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MAEXXZ 100426d0 f i main.cpp.obj - 0001:00041710 ?WritePatch@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MAEXXZ 10042710 f i main.cpp.obj - 0001:00041750 ?WritePatch@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MAEXXZ 10042750 f i main.cpp.obj - 0001:00041790 ?WritePatch@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 10042790 f i main.cpp.obj - 0001:000417d0 ?WritePatch@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MAEXXZ 100427d0 f i main.cpp.obj - 0001:00041810 ?WritePatch@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 10042810 f i main.cpp.obj - 0001:00041850 ?WritePatch@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MAEXXZ 10042850 f i main.cpp.obj - 0001:00041890 ?WritePatch@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MAEXXZ 10042890 f i main.cpp.obj - 0001:000418d0 ?WritePatch@?$PatchDetour@P6IXXZPAX@hadesmem@@MAEXXZ 100428d0 f i main.cpp.obj - 0001:00041910 ?WritePatch@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MAEXXZ 10042910 f i main.cpp.obj - 0001:00041950 ?WritePatch@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MAEXXZ 10042950 f i main.cpp.obj - 0001:00041990 ?WritePatch@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MAEXXZ 10042990 f i main.cpp.obj - 0001:000419d0 ?WritePatch@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MAEXXZ 100429d0 f i main.cpp.obj - 0001:00041a10 ?WritePatch@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MAEXXZ 10042a10 f i main.cpp.obj - 0001:00041a50 ?WritePatch@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MAEXXZ 10042a50 f i main.cpp.obj - 0001:00041a90 ?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10042a90 f i main.cpp.obj - 0001:00041ba0 ?_Buy_nonzero@?$vector@DV?$allocator@D@std@@@std@@AAEXI@Z 10042ba0 f i main.cpp.obj - 0001:00041ba0 ?_Buy_nonzero@?$vector@EV?$allocator@E@std@@@std@@AAEXI@Z 10042ba0 f i main.cpp.obj - 0001:00041c30 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@2@PAX@Z 10042c30 f i main.cpp.obj - 0001:00041c30 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@2@PAX@Z 10042c30 f i main.cpp.obj - 0001:00041c50 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042c50 f i main.cpp.obj - 0001:00041c50 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042c50 f i main.cpp.obj - 0001:00041c70 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@2@PAX@Z 10042c70 f i main.cpp.obj - 0001:00041c70 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@2@PAX@Z 10042c70 f i main.cpp.obj - 0001:00041c90 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10042c90 f i main.cpp.obj - 0001:00041c90 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10042c90 f i main.cpp.obj - 0001:00041cb0 ?_Copy@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EBEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@2@PAX@Z 10042cb0 f i main.cpp.obj - 0001:00041cb0 ?_Move@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EAEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@2@PAX@Z 10042cb0 f i main.cpp.obj - 0001:00041cd0 ?_Copy@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EBEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042cd0 f i main.cpp.obj - 0001:00041cd0 ?_Move@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EAEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042cd0 f i main.cpp.obj - 0001:00041cf0 ?_Copy@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EBEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@2@PAX@Z 10042cf0 f i main.cpp.obj - 0001:00041cf0 ?_Move@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EAEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@2@PAX@Z 10042cf0 f i main.cpp.obj - 0001:00041d10 ?_Copy@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EBEPAV?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042d10 f i main.cpp.obj - 0001:00041d10 ?_Move@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EAEPAV?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042d10 f i main.cpp.obj - 0001:00041d30 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@@2@PAX@Z 10042d30 f i main.cpp.obj - 0001:00041d30 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@@2@PAX@Z 10042d30 f i main.cpp.obj - 0001:00041d50 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@2@PAX@Z 10042d50 f i main.cpp.obj - 0001:00041d50 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@2@PAX@Z 10042d50 f i main.cpp.obj - 0001:00041d70 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@2@PAX@Z 10042d70 f i main.cpp.obj - 0001:00041d70 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@2@PAX@Z 10042d70 f i main.cpp.obj - 0001:00041d90 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@2@PAX@Z 10042d90 f i main.cpp.obj - 0001:00041d90 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@2@PAX@Z 10042d90 f i main.cpp.obj - 0001:00041db0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@2@PAX@Z 10042db0 f i main.cpp.obj - 0001:00041db0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@2@PAX@Z 10042db0 f i main.cpp.obj - 0001:00041dd0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@2@PAX@Z 10042dd0 f i main.cpp.obj - 0001:00041dd0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@2@PAX@Z 10042dd0 f i main.cpp.obj - 0001:00041df0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@2@PAX@Z 10042df0 f i main.cpp.obj - 0001:00041df0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@2@PAX@Z 10042df0 f i main.cpp.obj - 0001:00041e10 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042e10 f i main.cpp.obj - 0001:00041e10 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10042e10 f i main.cpp.obj - 0001:00041e30 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@2@PAX@Z 10042e30 f i main.cpp.obj - 0001:00041e30 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@2@PAX@Z 10042e30 f i main.cpp.obj - 0001:00041e50 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@2@PAX@Z 10042e50 f i main.cpp.obj - 0001:00041e50 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@2@PAX@Z 10042e50 f i main.cpp.obj - 0001:00041e70 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@2@PAX@Z 10042e70 f i main.cpp.obj - 0001:00041e70 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@2@PAX@Z 10042e70 f i main.cpp.obj - 0001:00041e90 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@2@PAX@Z 10042e90 f i main.cpp.obj - 0001:00041e90 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@2@PAX@Z 10042e90 f i main.cpp.obj - 0001:00041eb0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@2@PAX@Z 10042eb0 f i main.cpp.obj - 0001:00041eb0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@2@PAX@Z 10042eb0 f i main.cpp.obj - 0001:00041ed0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@2@PAX@Z 10042ed0 f i main.cpp.obj - 0001:00041ed0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@2@PAX@Z 10042ed0 f i main.cpp.obj - 0001:00041ef0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@2@PAX@Z 10042ef0 f i main.cpp.obj - 0001:00041ef0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@2@PAX@Z 10042ef0 f i main.cpp.obj - 0001:00041f10 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@2@PAX@Z 10042f10 f i main.cpp.obj - 0001:00041f10 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@2@PAX@Z 10042f10 f i main.cpp.obj - 0001:00041f30 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@2@PAX@Z 10042f30 f i main.cpp.obj - 0001:00041f30 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@2@PAX@Z 10042f30 f i main.cpp.obj - 0001:00041f50 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@2@PAX@Z 10042f50 f i main.cpp.obj - 0001:00041f50 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@2@PAX@Z 10042f50 f i main.cpp.obj - 0001:00041f70 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10042f70 f i main.cpp.obj - 0001:00041f70 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10042f70 f i main.cpp.obj - 0001:00041f90 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@2@PAX@Z 10042f90 f i main.cpp.obj - 0001:00041f90 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@2@PAX@Z 10042f90 f i main.cpp.obj - 0001:00041fb0 ?_Copy@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EBEPAV?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@2@PAX@Z 10042fb0 f i main.cpp.obj - 0001:00041fb0 ?_Move@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EAEPAV?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@2@PAX@Z 10042fb0 f i main.cpp.obj - 0001:00041fd0 ?_Copy@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EBEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@2@PAX@Z 10042fd0 f i main.cpp.obj - 0001:00041fd0 ?_Move@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EAEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@2@PAX@Z 10042fd0 f i main.cpp.obj - 0001:00041ff0 ?_Copy@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EBEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@2@PAX@Z 10042ff0 f i main.cpp.obj - 0001:00041ff0 ?_Move@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EAEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@2@PAX@Z 10042ff0 f i main.cpp.obj - 0001:00042010 ?_Copy@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EBEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@2@PAX@Z 10043010 f i main.cpp.obj - 0001:00042010 ?_Move@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EAEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@2@PAX@Z 10043010 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042030 ?_Delete_this@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EAEX_N@Z 10043030 f i main.cpp.obj - 0001:00042050 ?_Delete_this@?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 10043050 f i main.cpp.obj - 0001:00042050 ?_Delete_this@?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 10043050 f i main.cpp.obj - 0001:00042060 ?_Destroy@?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 10043060 f i main.cpp.obj - 0001:00042060 ?_Destroy@?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 10043060 f i main.cpp.obj - 0001:00042080 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QAI11$$QAPAVCDataStore@Nampower@@@Z 10043080 f i main.cpp.obj - 0001:00042080 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAPAX$$QAI3@Z 10043080 f i main.cpp.obj - 0001:00042080 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX1$$QAI2@Z 10043080 f i main.cpp.obj - 0001:00042080 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPA_K1$$QAI$$QAPAVCDataStore@Nampower@@@Z 10043080 f i main.cpp.obj - 0001:000420b0 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 100430b0 f i main.cpp.obj - 0001:000420b0 ?_Do_call@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EAEI$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 100430b0 f i main.cpp.obj - 0001:000420b0 ?_Do_call@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EAEI$$QAPAVPatchDetourBase@hadesmem@@$$QAPAUCTerrainClickEvent@game@@@Z 100430b0 f i main.cpp.obj - 0001:000420b0 ?_Do_call@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EAEPAH$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 100430b0 f i main.cpp.obj - 0001:000420b0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI@Z 100430b0 f i main.cpp.obj - 0001:000420b0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 100430b0 f i main.cpp.obj - 0001:000420b0 ?_Do_call@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EAE_K$$QAPAVPatchDetourBase@hadesmem@@$$QAPBD@Z 100430b0 f i main.cpp.obj - 0001:000420d0 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAPAVCDataStore@Nampower@@@Z 100430d0 f i main.cpp.obj - 0001:000420d0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAH$$QAI@Z 100430d0 f i main.cpp.obj - 0001:000420d0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPA_K$$QAI@Z 100430d0 f i main.cpp.obj - 0001:000420d0 ?_Do_call@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EAE_N$$QAPAVPatchDetourBase@hadesmem@@$$QAPAUEVENT_DATA_KEY@@$$QAH@Z 100430d0 f i main.cpp.obj - 0001:000420f0 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QA_K@Z 100430f0 f i main.cpp.obj - 0001:000420f0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QA_K@Z 100430f0 f i main.cpp.obj - 0001:00042110 ?_Do_call@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EAEI$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI11@Z 10043110 f i main.cpp.obj - 0001:00042110 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI$$QAH2@Z 10043110 f i main.cpp.obj - 0001:00042110 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX1$$QAI@Z 10043110 f i main.cpp.obj - 0001:00042110 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX1$$QAPAVCDataStore@Nampower@@@Z 10043110 f i main.cpp.obj - 0001:00042110 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX$$QAH2@Z 10043110 f i main.cpp.obj - 0001:00042140 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@@Z 10043140 f i main.cpp.obj - 0001:00042150 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAE$$QAH@Z 10043150 f i main.cpp.obj - 0001:00042170 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI$$QAH$$QA_K@Z 10043170 f i main.cpp.obj - 0001:000421a0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI$$QAW4SpellCastResult@game@@$$QAH3$$QA_N@Z 100431a0 f i main.cpp.obj - 0001:000421e0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAPAX$$QAH$$QAE@Z 100431e0 f i main.cpp.obj - 0001:00042210 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAUSpellCast@game@@$$QAD@Z 10043210 f i main.cpp.obj - 0001:00042230 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPA_K$$QAPBD$$QAH33@Z 10043230 f i main.cpp.obj - 0001:00042260 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QA_N1$$QAW4SpellCastResult@game@@@Z 10043260 f i main.cpp.obj - 0001:00042290 ?_Do_call@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EAE_N$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI1$$QAI$$QAM@Z 10043290 f i main.cpp.obj - 0001:000422d0 ?_Do_call@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EAE_N$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAI$$QAPAUCGItem_C@game@@$$QA_K@Z 100432d0 f i main.cpp.obj - 0001:00042300 ?_Extract@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEPAU?$_Tree_node@KPAX@2@V?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@U_Iterator_base0@2@@2@@Z 10043300 f i main.cpp.obj - 0001:00042300 ?_Extract@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@V?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@U_Iterator_base0@2@@2@@Z 10043300 f i pet.cpp.obj - 0001:00042610 ?_Ffmt@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAPADPADDH@Z 10043610 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426d0 ?_Get@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EBEPBXXZ 100436d0 f i main.cpp.obj - 0001:000426e0 ?_Get_deleter@_Ref_count_base@std@@UBEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_deleter@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_local_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_local_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_local_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_local_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426e0 ?get_local_deleter@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 100436e0 f i main.cpp.obj - 0001:000426f0 ?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 100436f0 f i main.cpp.obj - 0001:00042870 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@I@std@@@std@@QAEPAU?$_Tree_node@IPAX@2@U?$_Tree_id@PAU?$_Tree_node@IPAX@std@@@2@QAU32@@Z 10043870 f i spell_scripts.cpp.obj - 0001:00042870 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEPAU?$_Tree_node@KPAX@2@U?$_Tree_id@PAU?$_Tree_node@KPAX@std@@@2@QAU32@@Z 10043870 f i main.cpp.obj - 0001:00042870 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@U?$_Tree_id@PAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@2@QAU32@@Z 10043870 f i pet.cpp.obj - 0001:00042870 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@@std@@@std@@QAEPAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@2@U?$_Tree_id@PAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@2@QAU32@@Z 10043870 f i main.cpp.obj - 0001:00042a60 ?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 10043a60 f i main.cpp.obj - 0001:00042de0 ?_Lrotate@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEXPAU?$_Tree_node@KPAX@2@@Z 10043de0 f i main.cpp.obj - 0001:00042de0 ?_Lrotate@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEXPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@@Z 10043de0 f i pet.cpp.obj - 0001:00042e30 ?_Min@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@SAPAU?$_Tree_node@KPAX@2@PAU32@@Z 10043e30 f i main.cpp.obj - 0001:00042e30 ?_Min@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@SAPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@PAU32@@Z 10043e30 f i pet.cpp.obj - 0001:00042e50 ?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 10043e50 f i main.cpp.obj - 0001:00042f30 ?_Put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PBDI@Z 10043f30 f i main.cpp.obj - 0001:00042fa0 ?_Rep@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@DI@Z 10043fa0 f i main.cpp.obj - 0001:00043010 ?_Rrotate@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEXPAU?$_Tree_node@KPAX@2@@Z 10044010 f i main.cpp.obj - 0001:00043010 ?_Rrotate@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEXPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@@Z 10044010 f i pet.cpp.obj - 0001:00043070 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EBEABVtype_info@@XZ 10044070 f i main.cpp.obj - 0001:00043080 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EBEABVtype_info@@XZ 10044080 f i main.cpp.obj - 0001:00043090 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EBEABVtype_info@@XZ 10044090 f i main.cpp.obj - 0001:000430a0 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EBEABVtype_info@@XZ 100440a0 f i main.cpp.obj - 0001:000430b0 ?_Target_type@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EBEABVtype_info@@XZ 100440b0 f i main.cpp.obj - 0001:000430c0 ?_Target_type@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EBEABVtype_info@@XZ 100440c0 f i main.cpp.obj - 0001:000430d0 ?_Target_type@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EBEABVtype_info@@XZ 100440d0 f i main.cpp.obj - 0001:000430e0 ?_Target_type@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EBEABVtype_info@@XZ 100440e0 f i main.cpp.obj - 0001:000430f0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EBEABVtype_info@@XZ 100440f0 f i main.cpp.obj - 0001:00043100 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EBEABVtype_info@@XZ 10044100 f i main.cpp.obj - 0001:00043110 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EBEABVtype_info@@XZ 10044110 f i main.cpp.obj - 0001:00043120 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EBEABVtype_info@@XZ 10044120 f i main.cpp.obj - 0001:00043130 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EBEABVtype_info@@XZ 10044130 f i main.cpp.obj - 0001:00043140 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EBEABVtype_info@@XZ 10044140 f i main.cpp.obj - 0001:00043150 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EBEABVtype_info@@XZ 10044150 f i main.cpp.obj - 0001:00043160 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EBEABVtype_info@@XZ 10044160 f i main.cpp.obj - 0001:00043170 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EBEABVtype_info@@XZ 10044170 f i main.cpp.obj - 0001:00043180 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EBEABVtype_info@@XZ 10044180 f i main.cpp.obj - 0001:00043190 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EBEABVtype_info@@XZ 10044190 f i main.cpp.obj - 0001:000431a0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EBEABVtype_info@@XZ 100441a0 f i main.cpp.obj - 0001:000431b0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EBEABVtype_info@@XZ 100441b0 f i main.cpp.obj - 0001:000431c0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EBEABVtype_info@@XZ 100441c0 f i main.cpp.obj - 0001:000431d0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EBEABVtype_info@@XZ 100441d0 f i main.cpp.obj - 0001:000431e0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EBEABVtype_info@@XZ 100441e0 f i main.cpp.obj - 0001:000431f0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EBEABVtype_info@@XZ 100441f0 f i main.cpp.obj - 0001:00043200 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EBEABVtype_info@@XZ 10044200 f i main.cpp.obj - 0001:00043210 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EBEABVtype_info@@XZ 10044210 f i main.cpp.obj - 0001:00043220 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EBEABVtype_info@@XZ 10044220 f i main.cpp.obj - 0001:00043230 ?_Target_type@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EBEABVtype_info@@XZ 10044230 f i main.cpp.obj - 0001:00043240 ?_Target_type@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EBEABVtype_info@@XZ 10044240 f i main.cpp.obj - 0001:00043250 ?_Target_type@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EBEABVtype_info@@XZ 10044250 f i main.cpp.obj - 0001:00043260 ?_Target_type@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EBEABVtype_info@@XZ 10044260 f i main.cpp.obj - 0001:00043270 ?_Throw_tree_length_error@std@@YAXXZ 10044270 f i main.cpp.obj - 0001:00043280 ?_Tidy@?$vector@UCastSpellParams@@V?$allocator@UCastSpellParams@@@std@@@std@@AAEXXZ 10044280 f i main.cpp.obj - 0001:000432f0 ?_Tidy@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEXXZ 100442f0 f i main.cpp.obj - 0001:00043350 ?_Xlength@?$vector@DV?$allocator@D@std@@@std@@CAXXZ 10044350 f i main.cpp.obj - 0001:00043350 ?_Xlength@?$vector@EV?$allocator@E@std@@@std@@CAXXZ 10044350 f i main.cpp.obj - 0001:00043350 ?_Xlength@?$vector@PAHV?$allocator@PAH@std@@@std@@CAXXZ 10044350 f i lua_refs.cpp.obj - 0001:00043350 ?_Xlength@?$vector@UCastSpellParams@@V?$allocator@UCastSpellParams@@@std@@@std@@CAXXZ 10044350 f i main.cpp.obj - 0001:00043350 ?_Xlength@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@CAXXZ 10044350 f i main.cpp.obj - 0001:00043360 ?addCustomEvent@Nampower@@YAXIPAD@Z 10044360 f main.cpp.obj - 0001:00043480 ?add_ref@error_info_container_impl@exception_detail@boost@@EBEXXZ 10044480 f i main.cpp.obj - 0001:00043490 ?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ID@Z 10044490 f i main.cpp.obj - 0001:000435f0 ?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@QBDI@Z 100445f0 f i main.cpp.obj - 0001:000436e0 ?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 100446e0 f i main.cpp.obj - 0001:00043880 ?checkForStopChanneling@Nampower@@YAXXZ 10044880 f main.cpp.obj - 0001:00043b90 ?clear@?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@QAEXXZ 10044b90 f i main.cpp.obj - 0001:00043bae ?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEPBVclone_base@23@XZ 10044bae f i main.cpp.obj - 0001:00043bc0 ?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10044bc0 f i main.cpp.obj - 0001:00043c9a ?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEPBVclone_base@23@XZ 10044c9a f i main.cpp.obj - 0001:00043cb0 ?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10044cb0 f i main.cpp.obj - 0001:00043d90 ?clone@?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 10044d90 f i main.cpp.obj - 0001:00043dc0 ?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 10044dc0 f i main.cpp.obj - 0001:00043e40 ?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 10044e40 f i main.cpp.obj - 0001:00043ee0 ?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 10044ee0 f i main.cpp.obj - 0001:000441a0 ?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 100451a0 f i main.cpp.obj - 0001:00044270 ?current_exception_diagnostic_information@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z 10045270 f i main.cpp.obj - 0001:00044310 ?deallocate@?$allocator@VSuspendedThread@hadesmem@@@std@@QAEXQAVSuspendedThread@hadesmem@@I@Z 10045310 f i main.cpp.obj - 0001:00044350 ?dec@std@@YAAAVios_base@1@AAV21@@Z 10045350 f i main.cpp.obj - 0001:00044370 ?destroy@sp_counted_base@detail@boost@@UAEXXZ 10045370 f i main.cpp.obj - 0001:00044380 ?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 10045380 f i main.cpp.obj - 0001:000445c0 ?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 100455c0 f i main.cpp.obj - 0001:00044a20 ?dispose@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEXXZ 10045a20 f i main.cpp.obj - 0001:00044a20 ?dispose@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEXXZ 10045a20 f i main.cpp.obj - 0001:00044a30 ?dispose@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEXXZ 10045a30 f i main.cpp.obj - 0001:00044a30 ?dispose@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEXXZ 10045a30 f i main.cpp.obj - 0001:00044a30 ?dispose@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEXXZ 10045a30 f i main.cpp.obj - 0001:00044a40 ?do_falsename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10045a40 f i main.cpp.obj - 0001:00044a80 ?do_grouping@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10045a80 f i main.cpp.obj - 0001:00044ac0 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DJ@Z 10045ac0 f i main.cpp.obj - 0001:00044b90 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DK@Z 10045b90 f i main.cpp.obj - 0001:00044c60 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 10045c60 f i main.cpp.obj - 0001:00044e60 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 10045e60 f i main.cpp.obj - 0001:00045060 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBX@Z 10046060 f i main.cpp.obj - 0001:000450d0 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_J@Z 100460d0 f i main.cpp.obj - 0001:000451b0 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_K@Z 100461b0 f i main.cpp.obj - 0001:00045290 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 10046290 f i main.cpp.obj - 0001:00045490 ?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 10046490 f i main.cpp.obj - 0001:00045830 ?do_thousands_sep@?$numpunct@D@std@@MBEDXZ 10046830 f i main.cpp.obj - 0001:00045840 ?do_truename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10046840 f i main.cpp.obj - 0001:00045880 ?erase@?$_Tree@V?$_Tset_traits@KU?$less@K@std@@V?$allocator@K@2@$0A@@std@@@std@@QAE?AV?$_Tree_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@@2@V32@@Z 10046880 f i main.cpp.obj - 0001:000458c0 ?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 100468c0 f i main.cpp.obj - 0001:00045a10 ?get@error_info_container_impl@exception_detail@boost@@UBE?AV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 10046a10 f i main.cpp.obj - 0001:00045a90 ?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 10046a90 f i main.cpp.obj - 0001:00045b50 ?hex@std@@YAAAVios_base@1@AAV21@@Z 10046b50 f i main.cpp.obj - 0001:00045b70 ?initCustomEvents@Nampower@@YAXXZ 10046b70 f main.cpp.obj - 0001:000466c0 ?initHooks@Nampower@@YAXXZ 100476c0 f main.cpp.obj - 0001:000475f0 ?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@IID@Z 100485f0 f i main.cpp.obj - 0001:000477a0 ?loadConfig@Nampower@@YAXXZ 100487a0 f main.cpp.obj - 0001:00048f50 ?loadUserVar@Nampower@@YAXPBD@Z 10049f50 f main.cpp.obj - 0001:000490e0 ?name_value_string@?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@EBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 1004a0e0 f i main.cpp.obj - 0001:00049100 ?name_value_string@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 1004a100 f i main.cpp.obj - 0001:00049120 ?now@steady_clock@chrono@std@@SA?AV?$time_point@Usteady_clock@chrono@std@@V?$duration@_JU?$ratio@$00$0DLJKMKAA@@std@@@23@@23@XZ 1004a120 f i main.cpp.obj - 0001:00049220 ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 1004a220 f i main.cpp.obj - 0001:000493a0 ?overflow@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAEHH@Z 1004a3a0 f i main.cpp.obj - 0001:000494f0 ?pbackfail@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAEHH@Z 1004a4f0 f i main.cpp.obj - 0001:00049540 ?pop@CastQueue@Nampower@@QAE?AUCastSpellParams@@XZ 1004a540 f i main.cpp.obj - 0001:000495e0 ?processQueues@Nampower@@YA_NXZ 1004a5e0 f main.cpp.obj - 0001:000498e0 ?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 1004a8e0 f i main.cpp.obj - 0001:00049a60 ?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 1004aa60 f i main.cpp.obj - 0001:00049cd0 ?release@error_info_container_impl@exception_detail@boost@@EBE_NXZ 1004acd0 f i main.cpp.obj - 0001:00049d70 ?reset@?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@QAEXPAVAllocator@hadesmem@@@Z 1004ad70 f i main.cpp.obj - 0001:00049d93 ?rethrow@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEXXZ 1004ad93 f i main.cpp.obj - 0001:00049da0 ?rethrow@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEXXZ 1004ada0 f i main.cpp.obj - 0001:00049dc1 ?rethrow@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEXXZ 1004adc1 f i main.cpp.obj - 0001:00049dd0 ?rethrow@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEXXZ 1004add0 f i main.cpp.obj - 0001:00049e00 ?rethrow@?$wrapexcept@VError@hadesmem@@@boost@@UBEXXZ 1004ae00 f i main.cpp.obj - 0001:00049e20 ?safeRename@Nampower@@YA_NPBD0@Z 1004ae20 f main.cpp.obj - 0001:00049eb0 ?seekoff@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@_JHH@Z 1004aeb0 f i main.cpp.obj - 0001:0004a0a0 ?seekpos@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@V32@H@Z 1004b0a0 f i main.cpp.obj - 0001:0004a210 ?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 1004b210 f i main.cpp.obj - 0001:0004a350 ?stof@std@@YAMABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@PAI@Z 1004b350 f i main.cpp.obj - 0001:0004a3c0 ?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 1004b3c0 f i main.cpp.obj - 0001:0004a4a0 ?underflow@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAEHXZ 1004b4a0 f i main.cpp.obj - 0001:0004a500 ?updateFromCvar@Nampower@@YAXPBD0@Z 1004b500 f main.cpp.obj - 0001:0004b7c0 _Load 1004c7c0 f main.cpp.obj - 0001:0004b940 __scprintf 1004c940 f i main.cpp.obj - 0001:0004b970 __snprintf 1004c970 f i main.cpp.obj - 0001:0004b9b0 _sprintf_s 1004c9b0 f i main.cpp.obj - 0001:0004b9e0 ??$?R_K@?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@QBEIAB_K@Z 1004c9e0 f i helper.cpp.obj - 0001:0004ba50 ??$_Find_last@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@I@Z 1004ca50 f misc_scripts.cpp.obj - 0001:0004ba50 ??$_Find_last@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@I@Z 1004ca50 f misc_scripts.cpp.obj - 0001:0004bb40 ??$_Find_last@_K@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@@1@AB_KI@Z 1004cb40 f i helper.cpp.obj - 0001:0004bdf0 ??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 1004cdf0 f i helper.cpp.obj - 0001:0004bfc0 ??$fill@PAV?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@std@@V12@@std@@YAXQAV?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@0@0ABV10@@Z 1004cfc0 f items.cpp.obj - 0001:0004bfc0 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@0@0ABV10@@Z 1004cfc0 f items.cpp.obj - 0001:0004bfc0 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@0@0ABV10@@Z 1004cfc0 f misc_scripts.cpp.obj - 0001:0004bfc0 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@0@0ABV10@@Z 1004cfc0 f items.cpp.obj - 0001:0004bfc0 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@0@0ABV10@@Z 1004cfc0 f helper.cpp.obj - 0001:0004c040 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d040 f i helper.cpp.obj - 0001:0004c040 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d040 f i pet.cpp.obj - 0001:0004c040 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d040 f i helper.cpp.obj - 0001:0004c0c0 ??1?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@QAE@XZ 1004d0c0 f i helper.cpp.obj - 0001:0004c150 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@std@@@std@@@std@@QAE@XZ 1004d150 f items.cpp.obj - 0001:0004c150 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d150 f items.cpp.obj - 0001:0004c150 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d150 f misc_scripts.cpp.obj - 0001:0004c150 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d150 f items.cpp.obj - 0001:0004c150 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d150 f helper.cpp.obj - 0001:0004c230 ??1?$list@U?$pair@$$CB_KI@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@@std@@QAE@XZ 1004d230 f i helper.cpp.obj - 0001:0004c3f0 ?ConvertGuidToString@Nampower@@YAPAD_K@Z 1004d3f0 f helper.cpp.obj - 0001:0004c430 ?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 1004d430 f helper.cpp.obj - 0001:0004c620 ?FreeGuidString@Nampower@@YAXPAD@Z 1004d620 f helper.cpp.obj - 0001:0004c640 ?GetGcdOrCooldownForSpell@Nampower@@YAII@Z 1004d640 f helper.cpp.obj - 0001:0004c680 ?GetNameplateDistance@Nampower@@YAMXZ 1004d680 f helper.cpp.obj - 0001:0004c6d0 ?GetRemainingCooldownForSpell@Nampower@@YAII@Z 1004d6d0 f helper.cpp.obj - 0001:0004c740 ?GetSpellIdFromSpellName@Nampower@@YAIPBD@Z 1004d740 f helper.cpp.obj - 0001:0004c780 ?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 1004d780 f helper.cpp.obj - 0001:0004cb00 ?GetUnitGuidFromLuaParam@Nampower@@YA_KPAIH@Z 1004db00 f helper.cpp.obj - 0001:0004cbe0 ?GetUnitGuidFromString@Nampower@@YA_KPBD@Z 1004dbe0 f helper.cpp.obj - 0001:0004cc50 ?IsReadableMemory@Nampower@@YA_NPBXI@Z 1004dc50 f helper.cpp.obj - 0001:0004cce0 ?IsSpellOnCooldown@Nampower@@YA_NI@Z 1004dce0 f helper.cpp.obj - 0001:0004cd40 ?IsTargetingTerrainSpell@Nampower@@YA_NXZ 1004dd40 f helper.cpp.obj - 0001:0004cd50 ?PushGuidString@Nampower@@YAXPAI_K@Z 1004dd50 f helper.cpp.obj - 0001:0004cdc0 ?SafeReadMemory@Nampower@@YA_NPBXPAXI@Z 1004ddc0 f helper.cpp.obj - 0001:0004ce70 ?SetNameplateDistance@Nampower@@YAXM@Z 1004de70 f helper.cpp.obj - 0001:0004ce90 ?SpellIsAttackTradeskillOrEnchant@Nampower@@YA_NPBUSpellRec@game@@@Z 1004de90 f helper.cpp.obj - 0001:0004ced0 ?SpellIsChanneling@Nampower@@YA_NPBUSpellRec@game@@@Z 1004ded0 f helper.cpp.obj - 0001:0004cee0 ?SpellIsMounting@Nampower@@YA_NPBUSpellRec@game@@@Z 1004dee0 f helper.cpp.obj - 0001:0004cf10 ?SpellIsOnGcd@Nampower@@YA_NPBUSpellRec@game@@@Z 1004df10 f helper.cpp.obj - 0001:0004cf30 ?SpellIsOnSwing@Nampower@@YA_NPBUSpellRec@game@@@Z 1004df30 f helper.cpp.obj - 0001:0004cf40 ?SpellIsTargeting@Nampower@@YA_NPBUSpellRec@game@@@Z 1004df40 f helper.cpp.obj - 0001:0004d040 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@std@@@std@@@std@@QAEXIV?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@2@@Z 1004e040 f i items.cpp.obj - 0001:0004d040 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@2@@Z 1004e040 f i items.cpp.obj - 0001:0004d040 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@2@@Z 1004e040 f i misc_scripts.cpp.obj - 0001:0004d040 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@2@@Z 1004e040 f i items.cpp.obj - 0001:0004d040 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@2@@Z 1004e040 f i helper.cpp.obj - 0001:0004d3f0 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004e3f0 f i helper.cpp.obj - 0001:0004d530 _snprintf 1004e530 f i helper.cpp.obj - 0001:0004d570 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 1004e570 f i spellcast.cpp.obj - 0001:0004d720 ?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 1004e720 f spellcast.cpp.obj - 0001:0004dd40 ?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 1004ed40 f spellcast.cpp.obj - 0001:0004dec0 ?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 1004eec0 f spellcast.cpp.obj - 0001:0004e040 ?CGWorldFrame_OnLayerTrackTerrainHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAXHH@Z 1004f040 f spellcast.cpp.obj - 0001:0004e0b0 ?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 1004f0b0 f spellcast.cpp.obj - 0001:0004e270 ?CastQueuedNonGcdSpell@Nampower@@YAXXZ 1004f270 f spellcast.cpp.obj - 0001:0004e460 ?CastQueuedNormalSpell@Nampower@@YAXXZ 1004f460 f spellcast.cpp.obj - 0001:0004e650 ?SendCastHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z 1004f650 f spellcast.cpp.obj - 0001:0004e680 ?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 1004f680 f spellcast.cpp.obj - 0001:0004fd50 ?Spell_C_HandleTerrainClickHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z 10050d50 f spellcast.cpp.obj - 0001:0004fd70 ?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 10050d70 f spellcast.cpp.obj - 0001:0004fef0 ?TriggerQuickcast@Nampower@@YAXXZ 10050ef0 f spellcast.cpp.obj - 0001:00050050 ?TriggerSpellCastEvent@Nampower@@YAX_NIW4CastType@@_KI@Z 10051050 f spellcast.cpp.obj - 0001:000500a0 ?TriggerSpellQueuedEvent@Nampower@@YAXW4QueueEvents@@I@Z 100510a0 f spellcast.cpp.obj - 0001:000500c0 ?findSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 100510c0 f i spellcast.cpp.obj - 0001:00050100 ?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 10051100 f i spellcast.cpp.obj - 0001:000502e0 ?pushFront@CastQueue@Nampower@@QAEXABUCastSpellParams@@@Z 100512e0 f i spellcast.cpp.obj - 0001:00050400 ??$Get@H@CDataStore@Nampower@@QAEXAAH@Z 10051400 f i spellevents.cpp.obj - 0001:00050400 ??$Get@I@CDataStore@Nampower@@QAEXAAI@Z 10051400 f i spellchannel.cpp.obj - 0001:00050460 ?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10051460 f spellchannel.cpp.obj - 0001:00050a70 ?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10051a70 f spellchannel.cpp.obj - 0001:00050d20 ??$Get@F@CDataStore@Nampower@@QAEXAAF@Z 10051d20 f i spellevents.cpp.obj - 0001:00050d80 ??$Get@_K@CDataStore@Nampower@@QAEXAA_K@Z 10051d80 f i spellevents.cpp.obj - 0001:00050df0 ?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10051df0 f spellevents.cpp.obj - 0001:00051320 ?PeriodicAuraLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10052320 f spellevents.cpp.obj - 0001:00051530 ?ProcResistHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10052530 f spellevents.cpp.obj - 0001:000515b0 ?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100525b0 f spellevents.cpp.obj - 0001:00051720 ?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10052720 f spellevents.cpp.obj - 0001:00051920 ?SpellEnergizeLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10052920 f spellevents.cpp.obj - 0001:000519c0 ?SpellFailedOtherHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100529c0 f spellevents.cpp.obj - 0001:00051a40 ?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 10052a40 f spellevents.cpp.obj - 0001:000521f0 ?SpellHealingLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100531f0 f spellevents.cpp.obj - 0001:00052290 ?SpellLogMissHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10053290 f spellevents.cpp.obj - 0001:00052330 ?SpellNonMeleeDmgLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10053330 f spellevents.cpp.obj - 0001:00052430 ?SpellOrDamageImmuneHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10053430 f spellevents.cpp.obj - 0001:000524b0 ?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100534b0 f spellevents.cpp.obj - 0001:00052b10 ?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 10053b10 f spellevents.cpp.obj - 0001:00053780 ?TriggerAuraCastEvent@Nampower@@YAXPBUSpellRec@game@@_KQA_KE1_N@Z 10054780 f spellevents.cpp.obj - 0001:00053a50 ?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 10054a50 f spellevents.cpp.obj - 0001:00053dd0 ?TriggerSpellEnergizeEvent@Nampower@@YAX_K0IIIE@Z 10054dd0 f spellevents.cpp.obj - 0001:00053e90 ?TriggerSpellHealEvent@Nampower@@YAX_K0IIEE@Z 10054e90 f spellevents.cpp.obj - 0001:00053f50 ?TriggerSpellMissEvent@Nampower@@YAX_K0II@Z 10054f50 f spellevents.cpp.obj - 0001:00053fc0 ?findOldestWaitingForServerSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 10054fc0 f i spellevents.cpp.obj - 0001:00054010 ?triggerAuraCastEventOnTarget@Nampower@@YAXPBUSpellRec@game@@HPAD1_K2II@Z 10055010 f spellevents.cpp.obj - 0001:00054100 ??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10055100 f i item_scripts.cpp.obj - 0001:00054100 ??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10055100 f i spell_scripts.cpp.obj - 0001:00054100 ??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10055100 f i misc_scripts.cpp.obj - 0001:00054370 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@PAU01@@Z 10055370 f i misc_scripts.cpp.obj - 0001:00054370 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@PAU01@@Z 10055370 f i items.cpp.obj - 0001:000543f0 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100553f0 f i misc_scripts.cpp.obj - 0001:000543f0 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100553f0 f i dbc_fields.cpp.obj - 0001:00054630 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@1@@Z 10055630 f i misc_scripts.cpp.obj - 0001:00054630 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@1@@Z 10055630 f i items.cpp.obj - 0001:00054680 ??$find@X@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE?AV?$_List_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10055680 f i misc_scripts.cpp.obj - 0001:00054780 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 10055780 f i misc_scripts.cpp.obj - 0001:00054780 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 10055780 f i items.cpp.obj - 0001:00054830 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 10055830 f i misc_scripts.cpp.obj - 0001:00054830 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 10055830 f i items.cpp.obj - 0001:00054850 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@QAE@XZ 10055850 f i misc_scripts.cpp.obj - 0001:00054850 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE@XZ 10055850 f i items.cpp.obj - 0001:000548c0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 100558c0 f i misc_scripts.cpp.obj - 0001:000548c0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 100558c0 f i items.cpp.obj - 0001:000548f0 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 100558f0 f i misc_scripts.cpp.obj - 0001:000548f0 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 100558f0 f i items.cpp.obj - 0001:00054970 ?CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10055970 f misc_scripts.cpp.obj - 0001:00054ad0 ?CSimpleTop_OnKeyDownHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z 10055ad0 f misc_scripts.cpp.obj - 0001:00054b30 ?CSimpleTop_OnKeyUpHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z 10055b30 f misc_scripts.cpp.obj - 0001:00054b80 ?GetGUIDFromNameHook@Nampower@@YA_KPAVPatchDetourBase@hadesmem@@PBD@Z 10055b80 f misc_scripts.cpp.obj - 0001:00054ec0 ?PushTableValue@Nampower@@YAXPAIPAD1@Z 10055ec0 f i misc_scripts.cpp.obj - 0001:00054ef0 ?PushTableValue@Nampower@@YAXPAIPADI@Z 10055ef0 f i misc_scripts.cpp.obj - 0001:00054f40 ?RunQueuedScript@Nampower@@YA_NH@Z 10055f40 f misc_scripts.cpp.obj - 0001:00055080 ?Script_CancelPlayerAuraSlot@Nampower@@YAIPAI@Z 10056080 f misc_scripts.cpp.obj - 0001:00055120 ?Script_CancelPlayerAuraSpellId@Nampower@@YAIPAI@Z 10056120 f misc_scripts.cpp.obj - 0001:000551f0 ?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 100561f0 f misc_scripts.cpp.obj - 0001:000552f0 ?Script_DisenchantAll@Nampower@@YAIPAI@Z 100562f0 f misc_scripts.cpp.obj - 0001:000556e0 ?Script_GetCastInfo@Nampower@@YAIPAI@Z 100566e0 f misc_scripts.cpp.obj - 0001:00055a20 ?Script_GetCurrentCastingInfo@Nampower@@YAIPAI@Z 10056a20 f misc_scripts.cpp.obj - 0001:00055b70 ?Script_GetItemIconTexture@Nampower@@YAIPAI@Z 10056b70 f misc_scripts.cpp.obj - 0001:00055c10 ?Script_GetNampowerVersion@Nampower@@YAIPAI@Z 10056c10 f misc_scripts.cpp.obj - 0001:00055c70 ?Script_GetPlayerAuraDuration@Nampower@@YAIPAI@Z 10056c70 f misc_scripts.cpp.obj - 0001:00055d80 ?Script_GetSpellIconTexture@Nampower@@YAIPAI@Z 10056d80 f misc_scripts.cpp.obj - 0001:00055e30 ?Script_GetUnitData@Nampower@@YAIPAI@Z 10056e30 f misc_scripts.cpp.obj - 0001:00056190 ?Script_GetUnitField@Nampower@@YAIPAI@Z 10057190 f misc_scripts.cpp.obj - 0001:000564f0 ?Script_GetUnitGUID@Nampower@@YAIPAI@Z 100574f0 f misc_scripts.cpp.obj - 0001:00056570 ?Script_IsAuraHidden@Nampower@@YAIPAI@Z 10057570 f misc_scripts.cpp.obj - 0001:00056600 ?Script_LearnTalentRank@Nampower@@YAIPAI@Z 10057600 f misc_scripts.cpp.obj - 0001:000569b0 ?Script_QueueScript@Nampower@@YAIPAI@Z 100579b0 f misc_scripts.cpp.obj - 0001:00056cb0 ?Script_SetMouseoverUnit@Nampower@@YAIPAI@Z 10057cb0 f misc_scripts.cpp.obj - 0001:00056d50 ?TryDisenchant@Nampower@@YA_NXZ 10057d50 f misc_scripts.cpp.obj - 0001:000570e0 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAEXI@Z 100580e0 f i misc_scripts.cpp.obj - 0001:000570e0 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAEXI@Z 100580e0 f i items.cpp.obj - 0001:000573a0 ??$_Find_hint@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_hint_result@PAU?$_Tree_node@IPAX@std@@@1@QAU?$_Tree_node@IPAX@1@ABI@Z 100583a0 f i spell_scripts.cpp.obj - 0001:000575e0 ??$_Find_lower_bound@I@?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@1@ABI@Z 100585e0 f i pet.cpp.obj - 0001:000575e0 ??$_Find_lower_bound@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@IPAX@std@@@1@ABI@Z 100585e0 f i spell_scripts.cpp.obj - 0001:00057630 ?GetSpellSlotFromLuaHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI11@Z 10058630 f spell_scripts.cpp.obj - 0001:00057780 ?Script_CastSpellByNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10058780 f spell_scripts.cpp.obj - 0001:00057840 ?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 10058840 f spell_scripts.cpp.obj - 0001:00057950 ?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 10058950 f spell_scripts.cpp.obj - 0001:00057b50 ?Script_GetSpellDuration@Nampower@@YAIPAI@Z 10058b50 f spell_scripts.cpp.obj - 0001:00057c50 ?Script_GetSpellIdForName@Nampower@@YAIPAI@Z 10058c50 f spell_scripts.cpp.obj - 0001:00057cc0 ?Script_GetSpellModifiers@Nampower@@YAIPAI@Z 10058cc0 f spell_scripts.cpp.obj - 0001:00057e40 ?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 10058e40 f spell_scripts.cpp.obj - 0001:00057f90 ?Script_GetSpellPower@Nampower@@YAIPAI@Z 10058f90 f spell_scripts.cpp.obj - 0001:00058100 ?Script_GetSpellRec@Nampower@@YAIPAI@Z 10059100 f spell_scripts.cpp.obj - 0001:00058540 ?Script_GetSpellRecField@Nampower@@YAIPAI@Z 10059540 f spell_scripts.cpp.obj - 0001:00058a40 ?Script_GetSpellSlotTypeIdForName@Nampower@@YAIPAI@Z 10059a40 f spell_scripts.cpp.obj - 0001:00058bb0 ?Script_IsSpellInRange@Nampower@@YAIPAI@Z 10059bb0 f spell_scripts.cpp.obj - 0001:00058e70 ?Script_IsSpellUsable@Nampower@@YAIPAI@Z 10059e70 f spell_scripts.cpp.obj - 0001:00058fb0 ?Script_QueueSpellByName@Nampower@@YAIPAI@Z 10059fb0 f spell_scripts.cpp.obj - 0001:000590c0 ?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1005a0c0 f spell_scripts.cpp.obj - 0001:000591e0 ?GetCooldownFromSpellHistory@Nampower@@YA?AUCooldownDetail@1@III@Z 1005a1e0 f cooldown_scripts.cpp.obj - 0001:000594a0 ?GetItemCooldownDetail@Nampower@@YA?AUCooldownDetail@1@I@Z 1005a4a0 f cooldown_scripts.cpp.obj - 0001:00059640 ?PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@1@@Z 1005a640 f cooldown_scripts.cpp.obj - 0001:00059b70 ?Script_GetItemIdCooldown@Nampower@@YAIPAI@Z 1005ab70 f cooldown_scripts.cpp.obj - 0001:00059c50 ?Script_GetSpellIdCooldown@Nampower@@YAIPAI@Z 1005ac50 f cooldown_scripts.cpp.obj - 0001:00059d10 ?Script_GetTrinketCooldown@Nampower@@YAIPAI@Z 1005ad10 f cooldown_scripts.cpp.obj - 0001:00059f30 ??0CachedItemData@Nampower@@QAE@XZ 1005af30 f i item_scripts.cpp.obj - 0001:0005a390 ?ClearBagSlot@Nampower@@YAXPAIHI@Z 1005b390 f item_scripts.cpp.obj - 0001:0005a470 ?CreateBasicItemInfoTable@Nampower@@YAXPAIPAUCGItem@game@@@Z 1005b470 f item_scripts.cpp.obj - 0001:0005a560 ?CreateItemInfoTable@Nampower@@YAXPAIPAUCGItem_C@game@@@Z 1005b560 f item_scripts.cpp.obj - 0001:0005a810 ?GetSingleBagItems@Nampower@@YAIPAIH@Z 1005b810 f item_scripts.cpp.obj - 0001:0005ac10 ?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 1005bc10 f item_scripts.cpp.obj - 0001:0005b140 ?Script_FindPlayerItemSlot@Nampower@@YAIPAI@Z 1005c140 f item_scripts.cpp.obj - 0001:0005b2b0 ?Script_GetAmmo@Nampower@@YAIPAI@Z 1005c2b0 f item_scripts.cpp.obj - 0001:0005b440 ?Script_GetBagItem@Nampower@@YAIPAI@Z 1005c440 f item_scripts.cpp.obj - 0001:0005b710 ?Script_GetBagItems@Nampower@@YAIPAI@Z 1005c710 f item_scripts.cpp.obj - 0001:0005b8b0 ?Script_GetEquippedItem@Nampower@@YAIPAI@Z 1005c8b0 f item_scripts.cpp.obj - 0001:0005ba30 ?Script_GetEquippedItems@Nampower@@YAIPAI@Z 1005ca30 f item_scripts.cpp.obj - 0001:0005bbb0 ?Script_GetItemLevel@Nampower@@YAIPAI@Z 1005cbb0 f item_scripts.cpp.obj - 0001:0005bc60 ?Script_GetItemStats@Nampower@@YAIPAI@Z 1005cc60 f item_scripts.cpp.obj - 0001:0005c010 ?Script_GetItemStatsField@Nampower@@YAIPAI@Z 1005d010 f item_scripts.cpp.obj - 0001:0005c460 ?Script_GetTrinkets@Nampower@@YAIPAI@Z 1005d460 f item_scripts.cpp.obj - 0001:0005c910 ?Script_StartItemExport@Nampower@@YAIPAI@Z 1005d910 f item_scripts.cpp.obj - 0001:0005c920 ?Script_UseItemIdOrName@Nampower@@YAIPAI@Z 1005d920 f item_scripts.cpp.obj - 0001:0005caa0 ?Script_UseTrinket@Nampower@@YAIPAI@Z 1005daa0 f item_scripts.cpp.obj - 0001:0005ccd0 ??$_Find_last@I@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@1@ABII@Z 1005dcd0 f i items.cpp.obj - 0001:0005ccd0 ??$_Find_last@I@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@IPAX@std@@@1@ABII@Z 1005dcd0 f i items.cpp.obj - 0001:0005cd40 ??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 1005dd40 f i items.cpp.obj - 0001:0005cf40 ??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1005df40 f i items.cpp.obj - 0001:0005d130 ??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 1005e130 f i items.cpp.obj - 0001:0005d320 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 1005e320 f i items.cpp.obj - 0001:0005d320 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 1005e320 f i items.cpp.obj - 0001:0005d340 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 1005e340 f i items.cpp.obj - 0001:0005d340 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 1005e340 f i items.cpp.obj - 0001:0005d360 ??1?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@QAE@XZ 1005e360 f i items.cpp.obj - 0001:0005d3f0 ??1?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE@XZ 1005e3f0 f i items.cpp.obj - 0001:0005d480 ??1?$list@IV?$allocator@I@std@@@std@@QAE@XZ 1005e480 f i items.cpp.obj - 0001:0005d4c0 ??1?$list@U?$pair@$$CBIPAUItemStats_C@game@@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@2@@std@@QAE@XZ 1005e4c0 f i items.cpp.obj - 0001:0005d500 ??_H@YGXPAXIIP6EPAX0@Z@Z 1005e500 f i items.cpp.obj - 0001:0005d530 ?CacheItemNameToId@Nampower@@YAXPBDI@Z 1005e530 f items.cpp.obj - 0001:0005d5c0 ?ClearItemCaches@Nampower@@YAXXZ 1005e5c0 f items.cpp.obj - 0001:0005d720 ?DoesItemMatch@Nampower@@YA_NIIPBD@Z 1005e720 f items.cpp.obj - 0001:0005d7f0 ?FindPlayerDisenchantItem@Nampower@@YA?AUPlayerItemSearchResult@1@I_N@Z 1005e7f0 f items.cpp.obj - 0001:0005da00 ?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 1005ea00 f items.cpp.obj - 0001:0005e040 ?GetBagPtrFromContainer@Nampower@@YAPAIPAI@Z 1005f040 f items.cpp.obj - 0001:0005e060 ?GetItemIdFromCache@Nampower@@YAIPBD@Z 1005f060 f items.cpp.obj - 0001:0005e150 ?GetItemStats@Nampower@@YAPAUItemStats_C@game@@I@Z 1005f150 f items.cpp.obj - 0001:0005e1d0 ?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 1005f1d0 f items.cpp.obj - 0001:0005e3f0 ?LoadItem@Nampower@@YA_NI@Z 1005f3f0 f items.cpp.obj - 0001:0005e4c0 ?StartItemExport@Nampower@@YAXXZ 1005f4c0 f items.cpp.obj - 0001:0005e4e0 ?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 1005f4e0 f items.cpp.obj - 0001:0005e6b0 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAEXI@Z 1005f6b0 f i items.cpp.obj - 0001:0005e810 ?_Forced_rehash@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IAEXI@Z 1005f810 f i items.cpp.obj - 0001:0005e970 ?_Unchecked_erase@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@AAEPAU?$_List_node@IPAX@2@PAU32@QAU32@@Z 1005f970 f i items.cpp.obj - 0001:0005eb20 ?clear@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAEXXZ 1005fb20 f i items.cpp.obj - 0001:0005eba0 ?InitializeFieldMaps@Nampower@@YAXXZ 1005fba0 f dbc_fields.cpp.obj - 0001:0005eea0 ?InitializeUnitFieldMaps@Nampower@@YAXXZ 1005fea0 f unit_fields.cpp.obj - 0001:0005f050 ?CGBuffBar_UpdateDurationHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@EH@Z 10060050 f auras.cpp.obj - 0001:0005f0d0 ?CGUnit_C_OnAuraAddedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 100600d0 f auras.cpp.obj - 0001:0005f110 ?CGUnit_C_OnAuraRemovedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 10060110 f auras.cpp.obj - 0001:0005f150 ?CGUnit_C_OnAuraStacksChangedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z 10060150 f auras.cpp.obj - 0001:0005f200 ?IsAuraHiddenForLua@Nampower@@YA_NI@Z 10060200 f auras.cpp.obj - 0001:0005f260 ?TriggerAuraEvent@Nampower@@YAXPAIII_NI@Z 10060260 f auras.cpp.obj - 0001:0005f430 ?UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z 10060430 f auras.cpp.obj - 0001:0005f470 ??$_Emplace_reallocate@ABQAH@?$vector@PAHV?$allocator@PAH@std@@@std@@AAEPAPAHQAPAHABQAH@Z 10060470 f i lua_refs.cpp.obj - 0001:0005f5d0 ?CleanupAllLuaTableRefs@Nampower@@YAXXZ 100605d0 f lua_refs.cpp.obj - 0001:0005f740 ?GetTableRef@Nampower@@YAXPAIAAH@Z 10060740 f lua_refs.cpp.obj - 0001:0005f7c0 ?AttackRoundInfo_ReadPacketHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@1@@Z 100607c0 f autoattack.cpp.obj - 0001:0005fb80 ?Script_PlayerIsMoving@Nampower@@YAIPAI@Z 10060b80 f player_scripts.cpp.obj - 0001:0005fbe0 ?Script_PlayerIsRooted@Nampower@@YAIPAI@Z 10060be0 f player_scripts.cpp.obj - 0001:0005fc40 ?Script_PlayerIsSwimming@Nampower@@YAIPAI@Z 10060c40 f player_scripts.cpp.obj - 0001:0005fca0 ??$_Erase_tree@V?$allocator@U?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@1@PAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@1@@Z 10060ca0 f i pet.cpp.obj - 0001:0005fce0 ??1?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@QAE@XZ 10060ce0 f i pet.cpp.obj - 0001:0005fd20 ??1?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@std@@QAE@XZ 10060d20 f i pet.cpp.obj - 0001:0005fd30 ?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 10060d30 f pet.cpp.obj - 0001:0005fe40 ?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 10060e40 f pet.cpp.obj - 0001:0005ffb0 ?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 10060fb0 f pet.cpp.obj - 0001:00060360 ?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 10061360 f pet.cpp.obj - 0001:00060830 ?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 10061830 f pet.cpp.obj - 0001:00060ca0 ?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 10061ca0 f pet.cpp.obj - 0001:00060e10 ?TogglePetSlotAutocastHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@I@Z 10061e10 f pet.cpp.obj - 0001:00060e30 ?clear@?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@QAEXXZ 10061e30 f i pet.cpp.obj - 0001:00060e80 ?erase@?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@QAEIABI@Z 10061e80 f i pet.cpp.obj - 0001:00060fa0 ?CGGameUI_ShowCombatFeedbackHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z 10061fa0 f unit.cpp.obj - 0001:00061220 ?GetUnitNames@Nampower@@YA?AUUnitNames@1@PA_K@Z 10062220 f unit.cpp.obj - 0001:000613e0 ?SendUnitSignalHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_KI@Z 100623e0 f unit.cpp.obj - 0001:00061430 ?TriggerUnitEvents@Nampower@@YAXABUUnitNames@1@I@Z 10062430 f unit.cpp.obj - 0001:0006177b __get_purecall_handler 1006277b f libvcruntime:purevirt.obj - 0001:00061782 __purecall 10062782 f libvcruntime:purevirt.obj - 0001:0006179e ___DestructExceptionObject 1006279e f libvcruntime:ehhelpers.obj - 0001:0006183f ?_CallMemberFunction0@@YGXQAX0@Z 1006283f f i libvcruntime:ehhelpers.obj - 0001:000618a4 __IsExceptionObjectToBeDestroyed 100628a4 f libvcruntime:ehhelpers.obj - 0001:000618ca ___AdjustPointer 100628ca f libvcruntime:ehhelpers.obj - 0001:000618ef ___FrameUnwindFilter 100628ef f libvcruntime:ehhelpers.obj - 0001:00061945 ___std_terminate 10062945 f libvcruntime:ehhelpers.obj - 0001:0006194a ___std_exception_copy 1006294a f libvcruntime:std_exception.obj - 0001:000619ad ___std_exception_destroy 100629ad f libvcruntime:std_exception.obj - 0001:000619cc __CxxThrowException@8 100629cc f libvcruntime:throw.obj - 0001:00061a38 ?GetRangeOfTrysToCheck@__FrameHandler3@@SA?AU?$pair@Viterator@TryBlockMap@__FrameHandler3@@V123@@std@@AAVTryBlockMap@1@HPAXPBU_s_FuncInfo@@H@Z 10062a38 f libvcruntime:trnsctrl.obj - 0001:00061aa7 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@PAXHK@Z 10062aa7 f libvcruntime:trnsctrl.obj - 0001:00061b04 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PBU_s_FuncInfo@@H1@Z 10062b04 f libvcruntime:trnsctrl.obj - 0001:00061bf4 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 10062bf4 f libvcruntime:trnsctrl.obj - 0001:00061c24 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 10062c24 f libvcruntime:trnsctrl.obj - 0001:00061c78 __CatchGuardHandler 10062c78 f libvcruntime:trnsctrl.obj - 0001:00061ca9 __CreateFrameInfo 10062ca9 f libvcruntime:trnsctrl.obj - 0001:00061ccd __FindAndUnlinkFrame 10062ccd f libvcruntime:trnsctrl.obj - 0001:00061d15 __TranslatorGuardHandler 10062d15 f libvcruntime:trnsctrl.obj - 0001:00061db4 ___CxxFrameHandler3 10062db4 f libvcruntime:trnsctrl.obj - 0001:00061df0 _memcpy 10062df0 f libvcruntime:memcpy.obj - 0001:00061df0 _memmove 10062df0 f libvcruntime:memmove.obj - 0001:00062370 ??0__non_rtti_object@std@@QAE@ABV01@@Z 10063370 f i libvcruntime:rtti.obj - 0001:0006238b ??0bad_typeid@std@@QAE@ABV01@@Z 1006338b f i libvcruntime:rtti.obj - 0001:000623a6 ??_E__non_rtti_object@std@@UAEPAXI@Z 100633a6 f i libvcruntime:rtti.obj - 0001:000623a6 ??_Ebad_function_call@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Ebad_typeid@std@@UAEPAXI@Z 100633a6 f i libvcruntime:rtti.obj - 0001:000623a6 ??_Einvalid_argument@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Elength_error@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Elogic_error@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Eout_of_range@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_G__non_rtti_object@std@@UAEPAXI@Z 100633a6 f i libvcruntime:rtti.obj - 0001:000623a6 ??_Gbad_function_call@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Gbad_typeid@std@@UAEPAXI@Z 100633a6 f i libvcruntime:rtti.obj - 0001:000623a6 ??_Ginvalid_argument@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Glength_error@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Glogic_error@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:000623a6 ??_Gout_of_range@std@@UAEPAXI@Z 100633a6 f i libcpmt:xthrow.obj - 0001:00062777 ?__construct_from_string_literal@__non_rtti_object@std@@SA?AV12@QBD@Z 10063777 f i libvcruntime:rtti.obj - 0001:00062793 ?__construct_from_string_literal@bad_cast@std@@SA?AV12@QBD@Z 10063793 f i libvcruntime:rtti.obj - 0001:000627af ?__construct_from_string_literal@bad_typeid@std@@SA?AV12@QBD@Z 100637af f i libvcruntime:rtti.obj - 0001:000627cb ___RTDynamicCast 100637cb f libvcruntime:rtti.obj - 0001:000628be ___RTtypeid 100638be f libvcruntime:rtti.obj - 0001:00062954 ??3@YAXPAX@Z 10063954 f LIBCMT:delete_scalar.obj - 0001:00062959 ___std_type_info_compare 10063959 f libvcruntime:std_type_info.obj - 0001:00062995 ___std_type_info_destroy_list 10063995 f libvcruntime:std_type_info.obj - 0001:000629b8 ___std_type_info_name 100639b8 f libvcruntime:std_type_info.obj - 0001:00062a80 _memset 10063a80 f libvcruntime:memset.obj - 0001:00062be0 _strstr 10063be0 f libvcruntime:strstr.obj - 0001:00062e50 _memchr 10063e50 f libvcruntime:memchr.obj - 0001:00062efd ___vcrt_freefls@4 10063efd f libvcruntime:per_thread_data.obj - 0001:00062f19 ___vcrt_freeptd_for_this_thread 10063f19 f libvcruntime:per_thread_data.obj - 0001:00062f44 ___vcrt_getptd 10063f44 f libvcruntime:per_thread_data.obj - 0001:00062f52 ___vcrt_getptd_noexit 10063f52 f libvcruntime:per_thread_data.obj - 0001:00062fe4 ___vcrt_getptd_noinit 10063fe4 f libvcruntime:per_thread_data.obj - 0001:0006301b ___vcrt_initialize_ptd 1006401b f libvcruntime:per_thread_data.obj - 0001:0006304e ___vcrt_uninitialize_ptd 1006404e f libvcruntime:per_thread_data.obj - 0001:000630b0 __except_handler4 100640b0 f libvcruntime:chandler4.obj - 0001:00063940 ??$TypeMatchHelper@V__FrameHandler3@@@@YAHPBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_ThrowInfo@@@Z 10064940 f i libvcruntime:frame.obj - 0001:000639ce ??$__InternalCxxFrameHandler@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 100649ce f i libvcruntime:frame.obj - 0001:00063ad0 ??$__InternalCxxFrameHandlerWrapper@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 10064ad0 f i libvcruntime:frame.obj - 0001:00063d31 ?FrameUnwindToEmptyState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 10064d31 f libvcruntime:frame.obj - 0001:00063d49 ?FrameUnwindToState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@H@Z 10064d49 f libvcruntime:frame.obj - 0001:00063ecb ?_CallMemberFunction1@@YGXQAX00@Z 10064ecb f i libvcruntime:frame.obj - 0001:00063edb ?_CallMemberFunction2@@YGXQAX00H@Z 10064edb f i libvcruntime:frame.obj - 0001:00063eee ?getESTypes@__FrameHandler3@@SAPBU_s_ESTypeList@@PBU_s_FuncInfo@@@Z 10064eee f i libvcruntime:frame.obj - 0001:00063f00 __CallSettingFrame@12 10064f00 f libvcruntime:lowhelpr.obj - 0001:00063f27 __NLG_Return 10064f27 libvcruntime:lowhelpr.obj - 0001:00063f4c ___except_validate_context_record 10064f4c f libvcruntime:jbcxrval.obj - 0001:00063f7c ??$?0$00@DName@@QAE@PBDU?$StringLifeSelector@$00@@@Z 10064f7c f i libvcruntime:undname.obj - 0001:00063faf ??$?0$01@DName@@QAE@PBDU?$StringLifeSelector@$01@@@Z 10064faf f i libvcruntime:undname.obj - 0001:00063faf ??$?0$0A@@DName@@QAE@PBDU?$StringLifeSelector@$0A@@@@Z 10064faf f i libvcruntime:undname.obj - 0001:00063fe2 ??$?0$01@pcharNode@@QAE@PBDHU?$StringLifeSelector@$01@@@Z 10064fe2 f i libvcruntime:undname.obj - 0001:00063fe2 ??$?0$0A@@pcharNode@@QAE@PBDHU?$StringLifeSelector@$0A@@@@Z 10064fe2 f i libvcruntime:undname.obj - 0001:00064022 ??$append@VDNameNode@@@DName@@AAEXPBVDNameNode@@@Z 10065022 f i libvcruntime:undname.obj - 0001:00064022 ??$append@VDNameStatusNode@@@DName@@AAEXPBVDNameStatusNode@@@Z 10065022 f i libvcruntime:undname.obj - 0001:00064022 ??$append@VcharNode@@@DName@@AAEXPBVcharNode@@@Z 10065022 f i libvcruntime:undname.obj - 0001:00064022 ??$append@VpcharNode@@@DName@@AAEXPBVpcharNode@@@Z 10065022 f i libvcruntime:undname.obj - 0001:00064063 ??$doPchar@$00@DName@@AAEXPBDH@Z 10065063 f i libvcruntime:undname.obj - 0001:000640cf ??$doPchar@$01@DName@@AAEXPBDH@Z 100650cf f i libvcruntime:undname.obj - 0001:000640cf ??$doPchar@$0A@@DName@@AAEXPBDH@Z 100650cf f i libvcruntime:undname.obj - 0001:000641fc ??0DName@@QAE@AAPBDD@Z 100651fc f libvcruntime:undname.obj - 0001:00064285 ??0DName@@QAE@ABUStringLiteral@@@Z 10065285 f libvcruntime:undname.obj - 0001:000642ac ??0DName@@QAE@PAV0@@Z 100652ac f libvcruntime:undname.obj - 0001:000642f3 ??0DName@@QAE@W4DNameStatus@@@Z 100652f3 f libvcruntime:undname.obj - 0001:00064333 ??0DName@@QAE@_J@Z 10065333 f libvcruntime:undname.obj - 0001:000643bd ??0DName@@QAE@_K@Z 100653bd f libvcruntime:undname.obj - 0001:00064421 ??0DNameNode@@IAE@XZ 10065421 f i libvcruntime:undname.obj - 0001:0006442a ??0UnDecorator@@QAE@PBDP6APADJ@ZK@Z 1006542a f i libvcruntime:undname.obj - 0001:0006448e ??0pDNameNode@@QAE@PAVDName@@@Z 1006548e f libvcruntime:undname.obj - 0001:000644b6 ??0pairNode@@QAE@PBVDNameNode@@0@Z 100654b6 f i libvcruntime:undname.obj - 0001:000644dc ??2@YAPAXIAAV_HeapManager@@H@Z 100654dc f libvcruntime:undname.obj - 0001:000644fb ??4DName@@QAEAAV0@ABUStringLiteral@@@Z 100654fb f libvcruntime:undname.obj - 0001:0006451c ??4DName@@QAEAAV0@W4DNameStatus@@@Z 1006551c f libvcruntime:undname.obj - 0001:0006454e ??AReplicator@@QBE?AVDName@@H@Z 1006554e f libvcruntime:undname.obj - 0001:0006458a ??H@YA?AVDName@@ABUStringLiteral@@ABV0@@Z 1006558a f i libvcruntime:undname.obj - 0001:000645ac ??H@YA?AVDName@@DABV0@@Z 100655ac f i libvcruntime:undname.obj - 0001:000645d7 ??H@YA?AVDName@@W4DNameStatus@@ABV0@@Z 100655d7 f i libvcruntime:undname.obj - 0001:000645f9 ??HDName@@QBE?AV0@ABUStringLiteral@@@Z 100655f9 f libvcruntime:undname.obj - 0001:0006461b ??HDName@@QBE?AV0@ABV0@@Z 1006561b f libvcruntime:undname.obj - 0001:0006463d ??HDName@@QBE?AV0@D@Z 1006563d f libvcruntime:undname.obj - 0001:0006465f ??HDName@@QBE?AV0@W4DNameStatus@@@Z 1006565f f libvcruntime:undname.obj - 0001:00064681 ??YDName@@QAEAAV0@ABUStringLiteral@@@Z 10065681 f libvcruntime:undname.obj - 0001:000646d9 ??YDName@@QAEAAV0@ABV0@@Z 100656d9 f libvcruntime:undname.obj - 0001:00064730 ??YDName@@QAEAAV0@D@Z 10065730 f libvcruntime:undname.obj - 0001:00064785 ??YDName@@QAEAAV0@W4DNameStatus@@@Z 10065785 f libvcruntime:undname.obj - 0001:000647c5 ??YReplicator@@QAEAAV0@ABVDName@@@Z 100657c5 f libvcruntime:undname.obj - 0001:00064805 ??_5DName@@QAEAAV0@ABV0@@Z 10065805 f libvcruntime:undname.obj - 0001:00064824 ?Destructor@_HeapManager@@QAEXXZ 10065824 f i libvcruntime:undname.obj - 0001:00064859 ?UScore@UnDecorator@@SA?AUStringLiteral@@W4Tokens@@@Z 10065859 f libvcruntime:undname.obj - 0001:00064880 ?composeDeclaration@UnDecorator@@CA?AVDName@@ABV2@@Z 10065880 f i libvcruntime:undname.obj - 0001:00065606 ?doPchar@DName@@AAEXD@Z 10066606 f libvcruntime:undname.obj - 0001:0006563e ?getAddressOf@UnDecorator@@CA?AVDName@@XZ 1006663e f libvcruntime:undname.obj - 0001:000656a6 ?getArgumentList@UnDecorator@@CA?AVDName@@XZ 100666a6 f libvcruntime:undname.obj - 0001:000657b3 ?getArgumentTypes@UnDecorator@@CA?AVDName@@XZ 100667b3 f libvcruntime:undname.obj - 0001:000658bb ?getArrayAccess@UnDecorator@@CA?AVDName@@XZ 100668bb f libvcruntime:undname.obj - 0001:0006592f ?getArrayObject@UnDecorator@@CA?AVDName@@XZ 1006692f f libvcruntime:undname.obj - 0001:000659cd ?getArrayType@UnDecorator@@CA?AVDName@@ABV2@@Z 100669cd f i libvcruntime:undname.obj - 0001:00065b6a ?getBasedType@UnDecorator@@CA?AVDName@@XZ 10066b6a f libvcruntime:undname.obj - 0001:00065c19 ?getBasicDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 10066c19 f libvcruntime:undname.obj - 0001:00066175 ?getCallingConvention@UnDecorator@@CA?AVDName@@XZ 10067175 f libvcruntime:undname.obj - 0001:0006623f ?getDataIndirectType@UnDecorator@@CA?AVDName@@ABV2@W4IndirectionKind@@0H@Z 1006723f f libvcruntime:undname.obj - 0001:000668fe ?getDataIndirectType@UnDecorator@@CA?AVDName@@XZ 100678fe f i libvcruntime:undname.obj - 0001:0006692c ?getDataType@UnDecorator@@CA?AVDName@@PAV2@@Z 1006792c f libvcruntime:undname.obj - 0001:00066a03 ?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 10067a03 f libvcruntime:undname.obj - 0001:00066c57 ?getDimension@UnDecorator@@CA?AVDName@@_N@Z 10067c57 f libvcruntime:undname.obj - 0001:00066d5e ?getDispatchTarget@UnDecorator@@CA?AVDName@@XZ 10067d5e f libvcruntime:undname.obj - 0001:00066daf ?getECSUDataType@UnDecorator@@CA?AVDName@@XZ 10067daf f libvcruntime:undname.obj - 0001:00066f59 ?getEnumType@UnDecorator@@CA?AVDName@@XZ 10067f59 f i libvcruntime:undname.obj - 0001:0006706d ?getExtendedDataIndirectType@UnDecorator@@CA?AVDName@@AAW4IndirectionKind@@AA_NH@Z 1006806d f libvcruntime:undname.obj - 0001:00067270 ?getExternalDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 10068270 f i libvcruntime:undname.obj - 0001:000672d5 ?getFloatingPoint@UnDecorator@@CA?AVDName@@H@Z 100682d5 f libvcruntime:undname.obj - 0001:00067398 ?getFunctionIndirectType@UnDecorator@@CA?AVDName@@ABV2@@Z 10068398 f libvcruntime:undname.obj - 0001:00067742 ?getLastChar@DName@@QBEDXZ 10068742 f i libvcruntime:undname.obj - 0001:00067762 ?getLastChar@DNameStatusNode@@UBEDXZ 10068762 f i libvcruntime:undname.obj - 0001:0006776e ?getLastChar@charNode@@UBEDXZ 1006876e f i libvcruntime:undname.obj - 0001:00067772 ?getLastChar@pDNameNode@@UBEDXZ 10068772 f i libvcruntime:undname.obj - 0001:00067780 ?getLastChar@pairNode@@UBEDXZ 10068780 f i libvcruntime:undname.obj - 0001:000677b5 ?getLastChar@pcharNode@@UBEDXZ 100687b5 f i libvcruntime:undname.obj - 0001:000677c7 ?getLexicalFrame@UnDecorator@@CA?AVDName@@XZ 100687c7 f i libvcruntime:undname.obj - 0001:000677f8 ?getMemberAccess@UnDecorator@@CA?AVDName@@XZ 100687f8 f libvcruntime:undname.obj - 0001:00067868 ?getMemoryWithBuffer@_HeapManager@@QAEPAXI@Z 10068868 f libvcruntime:undname.obj - 0001:000678d2 ?getMemoryWithoutBuffer@_HeapManager@@QAEPAXI@Z 100688d2 f libvcruntime:undname.obj - 0001:000678f2 ?getNoexcept@UnDecorator@@CA?AVDName@@XZ 100688f2 f libvcruntime:undname.obj - 0001:0006793a ?getNumberOfDimensions@UnDecorator@@CAHXZ 1006893a f libvcruntime:undname.obj - 0001:00067994 ?getOperatorName@UnDecorator@@CA?AVDName@@_NPA_N@Z 10068994 f i libvcruntime:undname.obj - 0001:0006825a ?getPointerToMember@UnDecorator@@CA?AVDName@@XZ 1006925a f libvcruntime:undname.obj - 0001:00068316 ?getPrimaryDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 10069316 f libvcruntime:undname.obj - 0001:00068564 ?getPtrRefDataType@UnDecorator@@CA?AVDName@@ABV2@H@Z 10069564 f libvcruntime:undname.obj - 0001:000686d1 ?getPtrRefType@UnDecorator@@CA?AVDName@@ABV2@0W4IndirectionKind@@@Z 100696d1 f libvcruntime:undname.obj - 0001:000687e2 ?getRestrictionSpec@UnDecorator@@CA?AVDName@@XZ 100697e2 f libvcruntime:undname.obj - 0001:000688fb ?getReturnType@UnDecorator@@CA?AVDName@@PAV2@@Z 100698fb f libvcruntime:undname.obj - 0001:0006892a ?getScope@UnDecorator@@CA?AVDName@@XZ 1006992a f libvcruntime:undname.obj - 0001:00068ce8 ?getScopedName@UnDecorator@@CA?AVDName@@XZ 10069ce8 f libvcruntime:undname.obj - 0001:00068ddd ?getSignedDimension@UnDecorator@@CA?AVDName@@XZ 10069ddd f libvcruntime:undname.obj - 0001:00068e2e ?getString@DName@@QBEPADPAD0@Z 10069e2e f i libvcruntime:undname.obj - 0001:00068e5b ?getString@DName@@QBEPADPADH@Z 10069e5b f i libvcruntime:undname.obj - 0001:00068eb0 ?getString@DNameStatusNode@@UBEPADPAD0@Z 10069eb0 f i libvcruntime:undname.obj - 0001:00068ef7 ?getString@charNode@@UBEPADPAD0@Z 10069ef7 f i libvcruntime:undname.obj - 0001:00068f0c ?getString@pDNameNode@@UBEPADPAD0@Z 10069f0c f i libvcruntime:undname.obj - 0001:00068f23 ?getString@pairNode@@UBEPADPAD0@Z 10069f23 f i libvcruntime:undname.obj - 0001:00068f69 ?getString@pcharNode@@UBEPADPAD0@Z 10069f69 f i libvcruntime:undname.obj - 0001:00068f84 ?getStringEncoding@UnDecorator@@CA?AVDName@@W4PrefixKind@@H@Z 10069f84 f libvcruntime:undname.obj - 0001:00069017 ?getStringHelper@@YAPADPADPBD1H@Z 1006a017 f i libvcruntime:undname.obj - 0001:00069041 ?getStringObject@UnDecorator@@CA?AVDName@@XZ 1006a041 f libvcruntime:undname.obj - 0001:000690ad ?getSymbolName@UnDecorator@@CA?AVDName@@XZ 1006a0ad f i libvcruntime:undname.obj - 0001:000690f5 ?getTemplateArgumentList@UnDecorator@@CA?AVDName@@XZ 1006a0f5 f libvcruntime:undname.obj - 0001:000692a5 ?getTemplateName@UnDecorator@@CA?AVDName@@_N@Z 1006a2a5 f libvcruntime:undname.obj - 0001:00069420 ?getTemplateNonTypeArgument@UnDecorator@@CA?AVDName@@XZ 1006a420 f libvcruntime:undname.obj - 0001:000697e8 ?getTemplateTypeArgument@UnDecorator@@CA?AVDName@@XZ 1006a7e8 f libvcruntime:undname.obj - 0001:000698f9 ?getThisType@UnDecorator@@CA?AVDName@@XZ 1006a8f9 f i libvcruntime:undname.obj - 0001:00069928 ?getThrowTypes@UnDecorator@@CA?AVDName@@XZ 1006a928 f libvcruntime:undname.obj - 0001:00069947 ?getTypeEncoding@UnDecorator@@CAHXZ 1006a947 f i libvcruntime:undname.obj - 0001:00069c83 ?getUndecoratedName@UnDecorator@@QAEPADPADH@Z 1006ac83 f i libvcruntime:undname.obj - 0001:00069da4 ?getUnionObject@UnDecorator@@CA?AVDName@@XZ 1006ada4 f libvcruntime:undname.obj - 0001:00069e4b ?getVCallThunkType@UnDecorator@@CA?AVDName@@XZ 1006ae4b f i libvcruntime:undname.obj - 0001:00069e95 ?getValue@UnDecorator@@CA?AV?$optional@_K@std@@XZ 1006ae95 f libvcruntime:undname.obj - 0001:00069ee5 ?getValueObject@UnDecorator@@CA?AVDName@@XZ 1006aee5 f libvcruntime:undname.obj - 0001:0006a011 ?getVdispMapType@UnDecorator@@CA?AVDName@@ABV2@@Z 1006b011 f i libvcruntime:undname.obj - 0001:0006a072 ?getVfTableType@UnDecorator@@CA?AVDName@@ABV2@@Z 1006b072 f i libvcruntime:undname.obj - 0001:0006a1c6 ?getZName@UnDecorator@@CA?AVDName@@_N0@Z 1006b1c6 f libvcruntime:undname.obj - 0001:0006a3df ?get_current_character_and_increment_buffer@UnDecorator@@CADXZ 1006b3df f i libvcruntime:undname.obj - 0001:0006a3f3 ?increment_buffer@UnDecorator@@CA_NI@Z 1006b3f3 f i libvcruntime:undname.obj - 0001:0006a41b ?isEmpty@DName@@QBEHXZ 1006b41b f i libvcruntime:undname.obj - 0001:0006a423 ?isValid@DName@@QBEHXZ 1006b423 f i libvcruntime:undname.obj - 0001:0006a42d ?length@DName@@QBEHXZ 1006b42d f i libvcruntime:undname.obj - 0001:0006a44c ?length@DNameStatusNode@@UBEHXZ 1006b44c f i libvcruntime:undname.obj - 0001:0006a44c ?length@pcharNode@@UBEHXZ 1006b44c f i libvcruntime:undname.obj - 0001:0006a44c ?raw_length@DNameStatusNode@@UBEHXZ 1006b44c f i libvcruntime:undname.obj - 0001:0006a44c ?raw_length@pcharNode@@UBEHXZ 1006b44c f i libvcruntime:undname.obj - 0001:0006a450 ?length@charNode@@UBEHXZ 1006b450 f i libvcruntime:undname.obj - 0001:0006a450 ?raw_length@charNode@@UBEHXZ 1006b450 f i libvcruntime:undname.obj - 0001:0006a450 __get_startup_argv_mode 1006b450 f i LIBCMT:argv_mode.obj - 0001:0006a454 ?length@pDNameNode@@UBEHXZ 1006b454 f i libvcruntime:undname.obj - 0001:0006a462 ?length@pairNode@@UBEHXZ 1006b462 f i libvcruntime:undname.obj - 0001:0006a4ab ?make@DNameStatusNode@@SAPBV1@W4DNameStatus@@@Z 1006b4ab f i libvcruntime:undname.obj - 0001:0006a4c7 ?parseDecoratedName@UnDecorator@@CA?AVDName@@XZ 1006b4c7 f libvcruntime:undname.obj - 0001:0006a5c2 ?raw_length@pairNode@@UBEHXZ 1006b5c2 f i libvcruntime:undname.obj - 0001:0006a618 ___unDName 1006b618 f libvcruntime:undname.obj - 0001:0006a63b ___unDNameEx 1006b63b f libvcruntime:undname.obj - 0001:0006a6e0 _strchr 1006b6e0 f libvcruntime:strchr.obj - 0001:0006a74e ___from_strstr_to_strchr 1006b74e libvcruntime:strchr.obj - 0001:0006a8f6 ___vcrt_FlsAlloc 1006b8f6 f libvcruntime:winapi_downlevel.obj - 0001:0006a931 ___vcrt_FlsFree 1006b931 f libvcruntime:winapi_downlevel.obj - 0001:0006a96c ___vcrt_FlsGetValue 1006b96c f libvcruntime:winapi_downlevel.obj - 0001:0006a9a7 ___vcrt_FlsSetValue 1006b9a7 f libvcruntime:winapi_downlevel.obj - 0001:0006a9e5 ___vcrt_InitializeCriticalSectionEx 1006b9e5 f libvcruntime:winapi_downlevel.obj - 0001:0006aa30 __local_unwind4 1006ba30 f libvcruntime:exsup4.obj - 0001:0006ab20 @_EH4_CallFilterFunc@8 1006bb20 f libvcruntime:exsup4.obj - 0001:0006ab40 @_EH4_TransferToHandler@8 1006bb40 f libvcruntime:exsup4.obj - 0001:0006ab60 @_EH4_GlobalUnwind2@8 1006bb60 f libvcruntime:exsup4.obj - 0001:0006ab80 @_EH4_LocalUnwind@16 1006bb80 f libvcruntime:exsup4.obj - 0001:0006ab97 _unexpected 1006bb97 f libvcruntime:unexpected.obj - 0001:0006abb4 ?GetCurrentState@__FrameHandler3@@SAHPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 1006bbb4 f libvcruntime:ehstate.obj - 0001:0006abd1 ?SetState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@H@Z 1006bbd1 f libvcruntime:ehstate.obj - 0001:0006abe0 __NLG_Notify1 1006bbe0 f libvcruntime:exsup.obj - 0001:0006abf0 __NLG_Notify 1006bbf0 f libvcruntime:exsup.obj - 0001:0006ac07 __NLG_Dispatch 1006bc07 libvcruntime:exsup.obj - 0001:0006ac07 __NLG_Dispatch2 1006bc07 libvcruntime:exsup.obj - 0001:0006ac10 __NLG_Call 1006bc10 f libvcruntime:exsup.obj - 0001:0006ac12 __NLG_Return2 1006bc12 libvcruntime:exsup.obj - 0001:0006ac13 ___vcrt_initialize_locks 1006bc13 f libvcruntime:locks.obj - 0001:0006ac4f ___vcrt_lock 1006bc4f f libvcruntime:locks.obj - 0001:0006ac64 ___vcrt_uninitialize_locks 1006bc64 f libvcruntime:locks.obj - 0001:0006ac93 ___vcrt_unlock 1006bc93 f libvcruntime:locks.obj - 0001:0006aca8 ??0__crt_cached_ptd_host@@QAE@QAU__crt_locale_pointers@@@Z 1006bca8 f i libucrt:invalid_parameter.obj - 0001:0006acf0 ??1__crt_cached_ptd_host@@QAE@XZ 1006bcf0 f i libucrt:invalid_parameter.obj - 0001:0006ad2c ?check_synchronize_global_state_index@__crt_cached_ptd_host@@AAEIXZ 1006bd2c f i libucrt:invalid_parameter.obj - 0001:0006ad55 ?force_synchronize_per_thread_data@__crt_cached_ptd_host@@AAEPAU__acrt_ptd@@XZ 1006bd55 f i libucrt:invalid_parameter.obj - 0001:0006ad9b ?get_raw_ptd@__crt_cached_ptd_host@@QAEPAU__acrt_ptd@@XZ 1006bd9b f i libucrt:invalid_parameter.obj - 0001:0006adb8 ___acrt_call_reportfault 1006bdb8 f libucrt:invalid_parameter.obj - 0001:0006aef1 ___acrt_initialize_invalid_parameter_handler 1006bef1 f libucrt:invalid_parameter.obj - 0001:0006af00 __invalid_parameter 1006bf00 f libucrt:invalid_parameter.obj - 0001:0006af37 __invalid_parameter_internal 1006bf37 f libucrt:invalid_parameter.obj - 0001:0006afb4 __invalid_parameter_noinfo 1006bfb4 f libucrt:invalid_parameter.obj - 0001:0006afc4 __invalid_parameter_noinfo_noreturn 1006bfc4 f libucrt:invalid_parameter.obj - 0001:0006afe1 __invoke_watson 1006bfe1 f libucrt:invalid_parameter.obj - 0001:0006b015 ___acrt_initialize_stdio 1006c015 f libucrt:_file.obj - 0001:0006b0dd ___acrt_iob_func 1006c0dd f libucrt:_file.obj - 0001:0006b0ed ___acrt_uninitialize_stdio 1006c0ed f libucrt:_file.obj - 0001:0006b139 __get_stream_buffer_pointers 1006c139 f libucrt:_file.obj - 0001:0006b17f __lock_file 1006c17f f libucrt:_file.obj - 0001:0006b193 __unlock_file 1006c193 f libucrt:_file.obj - 0001:0006b2cc _fclose 1006c2cc f libucrt:fclose.obj - 0001:0006b535 ___acrt_stdio_flush_nolock 1006c535 f libucrt:fflush.obj - 0001:0006b59e __fflush_nolock 1006c59e f libucrt:fflush.obj - 0001:0006b603 __flushall 1006c603 f libucrt:fflush.obj - 0001:0006b60c _fflush 1006c60c f libucrt:fflush.obj - 0001:0006b65f __fgetc_nolock 1006c65f f libucrt:fgetc.obj - 0001:0006b69b _fgetc 1006c69b f libucrt:fgetc.obj - 0001:0006b7b4 _fgetpos 1006c7b4 f libucrt:fgetpos.obj - 0001:0006b943 __fputc_nolock_internal 1006c943 f libucrt:fputc.obj - 0001:0006b970 _fputc 1006c970 f libucrt:fputc.obj - 0001:0006b9a4 __fread_nolock_s 1006c9a4 f libucrt:fread.obj - 0001:0006bb7d _fread 1006cb7d f libucrt:fread.obj - 0001:0006bb9a _fread_s 1006cb9a f libucrt:fread.obj - 0001:0006bcb8 _fsetpos 1006ccb8 f libucrt:fsetpos.obj - 0001:0006bcf3 ?LongLongSub@@YAJ_J0PA_J@Z 1006ccf3 f i libucrt:fseek.obj - 0001:0006bfdc __fseeki64 1006cfdc f libucrt:fseek.obj - 0001:0006c016 _fseek 1006d016 f libucrt:fseek.obj - 0001:0006c0f7 __fwrite_internal 1006d0f7 f libucrt:fwrite.obj - 0001:0006c16e __fwrite_nolock_internal 1006d16e f libucrt:fwrite.obj - 0001:0006c315 _fwrite 1006d315 f libucrt:fwrite.obj - 0001:0006c513 _setvbuf 1006d513 f libucrt:setvbuf.obj - 0001:0006c54d __ungetc_nolock 1006d54d f libucrt:ungetc.obj - 0001:0006c641 _ungetc 1006d641 f libucrt:ungetc.obj - 0001:0006c6b4 _free 1006d6b4 f libucrt:free.obj - 0001:0006c6cf ??$__acrt_convert_wcs_mbs_cp@D_WV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 1006d6cf f i libucrt:rename.obj - 0001:0006c781 ??$__acrt_mbs_to_wcs_cp@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@I@Z 1006d781 f i libucrt:rename.obj - 0001:0006c79e ??0_LocaleUpdate@@QAE@QAU__crt_locale_pointers@@@Z 1006d79e f i libucrt:rename.obj - 0001:0006c820 ?__acrt_get_utf8_acp_compatibility_codepage@@YAIXZ 1006d820 f i libucrt:rename.obj - 0001:0006c85f ?_deallocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 1006d85f f i libucrt:argv_wildcards.obj - 0001:0006c85f ?_deallocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 1006d85f f i libucrt:rename.obj - 0001:0006c879 ?allocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 1006d879 f i libucrt:rename.obj - 0001:0006c8b8 ?allocate@__crt_win32_buffer_internal_dynamic_resizing@@SAHQAPAXIABV__crt_win32_buffer_empty_debug_info@@@Z 1006d8b8 f i libucrt:rename.obj - 0001:0006c8d7 _rename 1006d8d7 f libucrt:rename.obj - 0001:0006cd0c ??$count@D@formatting_buffer@__crt_stdio_output@@QBEIXZ 1006dd0c f i libucrt:output.obj - 0001:0006cd24 ??$ensure_buffer_is_big_enough@D@formatting_buffer@__crt_stdio_output@@QAE_NIAAV__crt_cached_ptd_host@@@Z 1006dd24 f i libucrt:output.obj - 0001:0006cda5 ??$is_overflow_condition@K@__crt_strtox@@YA_NIK@Z 1006dda5 f i libucrt:output.obj - 0001:0006cdd9 ??$is_wide_character_specifier@D@__crt_stdio_output@@YA_N_KDW4length_modifier@0@@Z 1006ddd9 f i libucrt:output.obj - 0001:0006ce0a ??$make_c_string_character_source@DPAPAD@__crt_strtox@@YA?AV?$c_string_character_source@D@0@QBDQAPAD@Z 1006de0a f i libucrt:output.obj - 0001:0006ce0a ??$make_c_string_character_source@_WPAPA_W@__crt_strtox@@YA?AV?$c_string_character_source@_W@0@QB_WQAPA_W@Z 1006de0a f i libucrt:output.obj - 0001:0006ce25 ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$0A@@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 1006de25 f i libucrt:output.obj - 0001:0006d034 ??$scratch_data@D@formatting_buffer@__crt_stdio_output@@QAEPADXZ 1006e034 f i libucrt:output.obj - 0001:0006d052 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006e052 f i libucrt:output.obj - 0001:0006d052 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006e052 f i libucrt:output.obj - 0001:0006d1df ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006e1df f i libucrt:output.obj - 0001:0006d1df ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006e1df f i libucrt:output.obj - 0001:0006d36c ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006e36c f i libucrt:output.obj - 0001:0006d36c ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006e36c f i libucrt:output.obj - 0001:0006d4f9 ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006e4f9 f i libucrt:output.obj - 0001:0006d4f9 ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006e4f9 f i libucrt:output.obj - 0001:0006d55c ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006e55c f i libucrt:output.obj - 0001:0006d55c ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006e55c f i libucrt:output.obj - 0001:0006d5e3 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006e5e3 f i libucrt:output.obj - 0001:0006d5e3 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006e5e3 f i libucrt:output.obj - 0001:0006d660 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1006e660 f i libucrt:output.obj - 0001:0006d660 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1006e660 f i libucrt:output.obj - 0001:0006d6d8 ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1006e6d8 f i libucrt:output.obj - 0001:0006d6d8 ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1006e6d8 f i libucrt:output.obj - 0001:0006d77f ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1006e77f f i libucrt:output.obj - 0001:0006d77f ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1006e77f f i libucrt:output.obj - 0001:0006d809 ??0?$output_adapter_data@DV?$string_output_adapter@D@__crt_stdio_output@@@__crt_stdio_output@@IAE@ABV?$string_output_adapter@D@1@_KQBDAAV__crt_cached_ptd_host@@QAD@Z 1006e809 f i libucrt:output.obj - 0001:0006d870 ??1formatting_buffer@__crt_stdio_output@@QAE@XZ 1006e870 f i libucrt:output.obj - 0001:0006d88a ??4?$__crt_unique_heap_ptr@DU__crt_internal_free_policy@@@@QAEAAV0@$$QAV0@@Z 1006e88a f i libucrt:output.obj - 0001:0006d8ae ?crop_zeroes@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 1006e8ae f i libucrt:output.obj - 0001:0006d90e ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 1006e90e f i libucrt:output.obj - 0001:0006d94b ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 1006e94b f i libucrt:output.obj - 0001:0006d986 ?force_decimal_point@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 1006e986 f i libucrt:output.obj - 0001:0006d9e2 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 1006e9e2 f i libucrt:output.obj - 0001:0006d9e2 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 1006e9e2 f i libucrt:output.obj - 0001:0006da5a ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 1006ea5a f i libucrt:output.obj - 0001:0006dd40 ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 1006ed40 f i libucrt:output.obj - 0001:0006e014 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f014 f i libucrt:output.obj - 0001:0006e014 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f014 f i libucrt:output.obj - 0001:0006e16d ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f16d f i libucrt:output.obj - 0001:0006e16d ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f16d f i libucrt:output.obj - 0001:0006e4cc ?to_integer_size@__crt_stdio_output@@YAIW4length_modifier@1@@Z 1006f4cc f i libucrt:output.obj - 0001:0006e520 ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f520 f i libucrt:output.obj - 0001:0006e520 ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f520 f i libucrt:output.obj - 0001:0006e583 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f583 f i libucrt:output.obj - 0001:0006e583 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f583 f i libucrt:output.obj - 0001:0006e714 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 1006f714 f i libucrt:output.obj - 0001:0006e714 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 1006f714 f i libucrt:output.obj - 0001:0006e7a9 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f7a9 f i libucrt:output.obj - 0001:0006e7a9 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f7a9 f i libucrt:output.obj - 0001:0006e82e ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f82e f i libucrt:output.obj - 0001:0006e82e ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f82e f i libucrt:output.obj - 0001:0006e84b ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f84b f i libucrt:output.obj - 0001:0006e84b ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f84b f i libucrt:output.obj - 0001:0006e861 ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f861 f i libucrt:output.obj - 0001:0006e861 ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006f861 f i libucrt:output.obj - 0001:0006e8d3 ?unget@?$c_string_character_source@D@__crt_strtox@@QAEXD@Z 1006f8d3 f i libucrt:output.obj - 0001:0006e8fc ?unget@?$c_string_character_source@_W@__crt_strtox@@QAEX_W@Z 1006f8fc f i libucrt:output.obj - 0001:0006e930 ?update_locale_slow@__crt_cached_ptd_host@@AAEXXZ 1006f930 f i libucrt:output.obj - 0001:0006e98b ?validate@?$c_string_character_source@D@__crt_strtox@@QBE_NXZ 1006f98b f i libucrt:output.obj - 0001:0006e98b ?validate@?$c_string_character_source@_W@__crt_strtox@@QBE_NXZ 1006f98b f i libucrt:output.obj - 0001:0006e9a6 ?validate@?$string_output_adapter@D@__crt_stdio_output@@QBE_NAAV__crt_cached_ptd_host@@@Z 1006f9a6 f i libucrt:output.obj - 0001:0006e9d7 ?write_string@?$string_output_adapter@D@__crt_stdio_output@@QBEXQBDHQAHAAV__crt_cached_ptd_host@@@Z 1006f9d7 f i libucrt:output.obj - 0001:0006ea3e ___acrt_locale_get_ctype_array_value 1006fa3e f i libucrt:output.obj - 0001:0006ea60 ___stdio_common_vsprintf 1006fa60 f libucrt:output.obj - 0001:0006eaa1 ___stdio_common_vsprintf_s 1006faa1 f libucrt:output.obj - 0001:0006eae2 ___acrt_errno_from_os_error 1006fae2 f libucrt:errno.obj - 0001:0006eb25 ___acrt_errno_map_os_error 1006fb25 f libucrt:errno.obj - 0001:0006eb48 ___acrt_errno_map_os_error_ptd 1006fb48 f libucrt:errno.obj - 0001:0006eb6c ___doserrno 1006fb6c f libucrt:errno.obj - 0001:0006eb7f __errno 1006fb7f f libucrt:errno.obj - 0001:0006eb92 _frexp 1006fb92 f libucrt:frexp.obj - 0001:0006ec8c _calloc 1006fc8c f libucrt:calloc.obj - 0001:0006ec97 _abort 1006fc97 f libucrt:abort.obj - 0001:0006ecdb ??$is_overflow_condition@_K@__crt_strtox@@YA_NI_K@Z 1006fcdb f i libucrt:atox.obj - 0001:0006ed1c ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 1006fd1c f i libucrt:atox.obj - 0001:0006ef63 ??$parse_integer@KV?$c_string_character_source@_W@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@_W@0@H_N@Z 1006ff63 f i libucrt:atox.obj - 0001:0006f571 ??$parse_integer@_KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YA_KAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 10070571 f i libucrt:atox.obj - 0001:0006f839 __ischartype_l 10070839 f i libucrt:atox.obj - 0001:0006f890 __wtol 10070890 f libucrt:atox.obj - 0001:0006f8cf _atoi 100708cf f libucrt:atox.obj - 0001:0006f8cf _atol 100708cf f libucrt:atox.obj - 0001:0006f90e ??$assemble_floating_point_value_t@M@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAM@Z 1007090e f i libucrt:strtod.obj - 0001:0006f93e ??$assemble_floating_point_value_t@N@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAN@Z 1007093e f i libucrt:strtod.obj - 0001:0006fa0f ??$convert_decimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10070a0f f i libucrt:strtod.obj - 0001:0006fa30 ??$convert_hexadecimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10070a30 f i libucrt:strtod.obj - 0001:0006fa51 ??$parse_floating_point@V?$c_string_character_source@D@__crt_strtox@@M@__crt_strtox@@YA?AW4SLD_STATUS@@QAU__crt_locale_pointers@@V?$c_string_character_source@D@0@QAM@Z 10070a51 f i libucrt:strtod.obj - 0001:0006fad1 ??$parse_floating_point_from_source@V?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA?AW4floating_point_parse_result@0@QAU__crt_locale_pointers@@AAV?$c_string_character_source@D@0@AAUfloating_point_string@0@@Z 10070ad1 f i libucrt:strtod.obj - 0001:0006fee9 ??$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 10070ee9 f i libucrt:strtod.obj - 0001:0006ff9c ??$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 10070f9c f i libucrt:strtod.obj - 0001:000700a0 ??$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 100710a0 f i libucrt:strtod.obj - 0001:000700dc ??$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 100710dc f i libucrt:strtod.obj - 0001:00070118 ??$parse_floating_point_write_result@M@__crt_strtox@@YA?AW4SLD_STATUS@@W4floating_point_parse_result@0@ABUfloating_point_string@0@QAM@Z 10071118 f i libucrt:strtod.obj - 0001:00070284 ??R@@QBE@XZ 10071284 f i libucrt:strtod.obj - 0001:00070284 ??R@@QBE@XZ 10071284 f i libucrt:strtod.obj - 0001:00070284 ??R@@QBE@XZ 10071284 f i libucrt:strtod.obj - 0001:000702aa ?as_double@floating_point_value@__crt_strtox@@QBEAANXZ 100712aa f i libucrt:strtod.obj - 0001:000702cf ?as_float@floating_point_value@__crt_strtox@@QBEAAMXZ 100712cf f i libucrt:strtod.obj - 0001:000702f4 ?assemble_floating_point_infinity@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 100712f4 f i libucrt:strtod.obj - 0001:00070334 ?assemble_floating_point_value@__crt_strtox@@YA?AW4SLD_STATUS@@_KH_N1ABVfloating_point_value@1@@Z 10071334 f i libucrt:strtod.obj - 0001:0007068d ?assemble_floating_point_value_from_big_integer@__crt_strtox@@YA?AW4SLD_STATUS@@ABUbig_integer@1@I_N1ABVfloating_point_value@1@@Z 1007168d f i libucrt:strtod.obj - 0001:0007081f ?assemble_floating_point_zero@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 1007181f f i libucrt:strtod.obj - 0001:00070854 ?convert_decimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10071854 f i libucrt:strtod.obj - 0001:000725fa ?convert_hexadecimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 100735fa f i libucrt:strtod.obj - 0001:000726a0 ?denormal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 100736a0 f i libucrt:strtod.obj - 0001:000726c0 ?divide@__crt_strtox@@YA_KAAUbig_integer@1@ABU21@@Z 100736c0 f i libucrt:strtod.obj - 0001:00072b6b ?normal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 10073b6b f i libucrt:strtod.obj - 0001:00072b82 _strtof 10073b82 f libucrt:strtod.obj - 0001:00072ba0 _strcspn 10073ba0 f libucrt:strcspn.obj - 0001:00072bf0 _strncmp 10073bf0 f libucrt:strncmp.obj - 0001:00072ef9 __localtime64_s 10073ef9 f libucrt:localtime.obj - 0001:00072f04 _localeconv 10073f04 f libucrt:localeconv.obj - 0001:00072f2c ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@ABV@@I@Z 10073f2c f i libucrt:strftime.obj - 0001:00072fee ??$__acrt_wcs_to_mbs_cp@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@I@Z 10073fee f i libucrt:strftime.obj - 0001:0007300b ??R@@QBE@IQB_WQADI@Z 1007400b f i libucrt:strftime.obj - 0001:0007300b ??R@@QBE@IQB_WQADI@Z 1007400b f i libucrt:argv_wildcards.obj - 0001:0007302f ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEHI@Z 1007402f f i libucrt:strftime.obj - 0001:00073056 ?set_to_nullptr@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEXXZ 10074056 f i libucrt:strftime.obj - 0001:0007306a __Gettnames 1007406a f libucrt:strftime.obj - 0001:0007306f __Strftime 1007406f f libucrt:strftime.obj - 0001:0007308f __Strftime_l 1007408f f libucrt:strftime.obj - 0001:0007318a __dclass 1007418a f libucrt:nan.obj - 0001:0007319b __dsign 1007419b f libucrt:nan.obj - 0001:000731ab __ldclass 100741ab f libucrt:nanl.obj - 0001:000731bc ___ascii_stricmp 100741bc f libucrt:stricmp.obj - 0001:000731f5 __strcmpi 100741f5 f libucrt:stricmp.obj - 0001:000731f5 __stricmp 100741f5 f libucrt:stricmp.obj - 0001:0007323e __stricmp_l 1007423e f libucrt:stricmp.obj - 0001:000732ce _strtoul 100742ce f libucrt:strtox.obj - 0001:00073314 _strtoull 10074314 f libucrt:strtox.obj - 0001:00073360 _wcstol 10074360 f libucrt:strtox.obj - 0001:000733a6 __tolower_l 100743a6 f libucrt:tolower_toupper.obj - 0001:000734a4 _tolower 100744a4 f libucrt:tolower_toupper.obj - 0001:000734e0 __libm_sse2_sqrt_precise 100744e0 f libucrt:sqrt_sse2_precise.obj - 0001:000735e0 _ceil 100745e0 f libucrt:ceil_pentium4.obj - 0001:00073620 __ceil_pentium4 10074620 f libucrt:ceil_pentium4.obj - 0001:00073700 _islower 10074700 f libucrt:_ctype.obj - 0001:00073790 _isupper 10074790 f libucrt:_ctype.obj - 0001:00073820 _isxdigit 10074820 f libucrt:_ctype.obj - 0001:000738ab __strnicmp 100748ab f libucrt:strnicmp.obj - 0001:00073918 __strnicmp_l 10074918 f libucrt:strnicmp.obj - 0001:000739e3 _terminate 100749e3 f libucrt:terminate.obj - 0001:00073a1f _malloc 10074a1f f libucrt:malloc.obj - 0001:00073a2a _strcpy_s 10074a2a f libucrt:strcpy_s.obj - 0001:00073a84 _wcsncmp 10074a84 f libucrt:wcsncmp.obj - 0001:00073dfc ___acrt_freeptd 10074dfc f libucrt:per_thread_data.obj - 0001:00073e28 ___acrt_getptd 10074e28 f libucrt:per_thread_data.obj - 0001:00073ee3 ___acrt_getptd_head 10074ee3 f libucrt:per_thread_data.obj - 0001:00073f79 ___acrt_getptd_noexit 10074f79 f libucrt:per_thread_data.obj - 0001:0007402a ___acrt_getptd_noexit_explicit 1007502a f libucrt:per_thread_data.obj - 0001:000740cd ___acrt_initialize_ptd 100750cd f libucrt:per_thread_data.obj - 0001:000740f9 ___acrt_uninitialize_ptd 100750f9 f libucrt:per_thread_data.obj - 0001:00074213 ??0_expandlocale_locale_name_cache@@QAE@QA_WIQAU__crt_qualified_locale_data@@@Z 10075213 f i libucrt:wsetlocale.obj - 0001:0007425d ??1_expandlocale_locale_name_cache@@QAE@XZ 1007525d f i libucrt:wsetlocale.obj - 0001:000743f5 ?commit_locale_name@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 100753f5 f i libucrt:wsetlocale.obj - 0001:00074439 ?commit_locale_name_cache_already_updated@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 10075439 f i libucrt:wsetlocale.obj - 0001:0007446e ___acrt_copy_locale_name 1007546e f libucrt:wsetlocale.obj - 0001:000744ce ___acrt_set_locale_changed 100754ce f libucrt:wsetlocale.obj - 0001:000744d9 ___acrt_uninitialize_locale 100754d9 f libucrt:wsetlocale.obj - 0001:00074500 ___lc_lctowcs 10075500 f libucrt:wsetlocale.obj - 0001:00074570 ___lc_wcstolc 10075570 f libucrt:wsetlocale.obj - 0001:00074aa2 __wcscats 10075aa2 f libucrt:wsetlocale.obj - 0001:00074ae3 __wsetlocale 10075ae3 f libucrt:wsetlocale.obj - 0001:000757db __calloc_base 100767db f libucrt:calloc_base.obj - 0001:00075838 __free_base 10076838 f libucrt:free_base.obj - 0001:000758fb ??$__crt_fast_encode_pointer@P6AHXZ@@YAP6AHXZQ6AHXZ@Z 100768fb f i libucrt:onexit.obj - 0001:000758fb ??$__crt_fast_encode_pointer@P6GHPA_WKJ@Z@@YAP6GHPA_WKJ@ZQ6GH0KJ@Z@Z 100768fb f i libucrt:winapi_thunks.obj - 0001:000758fb ??$__crt_fast_encode_pointer@PAP6AXXZ@@YAPAP6AXXZQAP6AXXZ@Z 100768fb f i libucrt:onexit.obj - 0001:000758fb ??$__crt_fast_encode_pointer@PAX@@YAPAXQAX@Z 100768fb f i libucrt:winapi_thunks.obj - 0001:00075bbb ___acrt_AppPolicyGetProcessTerminationMethodInternal@4 10076bbb f libucrt:winapi_thunks.obj - 0001:00075bfb ___acrt_AreFileApisANSI@0 10076bfb f libucrt:winapi_thunks.obj - 0001:00075c1a ___acrt_CompareStringEx@36 10076c1a f libucrt:winapi_thunks.obj - 0001:00075c77 ___acrt_EnumSystemLocalesEx@16 10076c77 f libucrt:winapi_thunks.obj - 0001:00075ccb ___acrt_FlsAlloc@4 10076ccb f libucrt:winapi_thunks.obj - 0001:00075d0a ___acrt_FlsFree@4 10076d0a f libucrt:winapi_thunks.obj - 0001:00075d49 ___acrt_FlsGetValue@4 10076d49 f libucrt:winapi_thunks.obj - 0001:00075d88 ___acrt_FlsSetValue@8 10076d88 f libucrt:winapi_thunks.obj - 0001:00075dca ___acrt_GetDateFormatEx@28 10076dca f libucrt:winapi_thunks.obj - 0001:00075e21 ___acrt_GetLocaleInfoEx@16 10076e21 f libucrt:winapi_thunks.obj - 0001:00075e60 ___acrt_GetTimeFormatEx@24 10076e60 f libucrt:winapi_thunks.obj - 0001:00075ea5 ___acrt_GetUserDefaultLocaleName@8 10076ea5 f libucrt:winapi_thunks.obj - 0001:00075ee1 ___acrt_InitializeCriticalSectionEx@12 10076ee1 f libucrt:winapi_thunks.obj - 0001:00075f2c ___acrt_IsValidLocaleName@4 10076f2c f libucrt:winapi_thunks.obj - 0001:00075f64 ___acrt_LCIDToLocaleName@16 10076f64 f libucrt:winapi_thunks.obj - 0001:00075fa3 ___acrt_LCMapStringEx@36 10076fa3 f libucrt:winapi_thunks.obj - 0001:00076000 ___acrt_LocaleNameToLCID@8 10077000 f libucrt:winapi_thunks.obj - 0001:00076031 ___acrt_can_use_vista_locale_apis 10077031 f libucrt:winapi_thunks.obj - 0001:0007603c ___acrt_eagerly_load_locale_apis 1007703c f libucrt:winapi_thunks.obj - 0001:00076073 ___acrt_initialize_winapi_thunks 10077073 f libucrt:winapi_thunks.obj - 0001:00076087 ___acrt_uninitialize_winapi_thunks 10077087 f libucrt:winapi_thunks.obj - 0001:000760bd __fcloseall 100770bd f libucrt:closeall.obj - 0001:00076168 ___acrt_stdio_free_buffer_nolock 10077168 f libucrt:_freebuf.obj - 0001:0007630e ___acrt_initialize_lowio 1007730e f libucrt:ioinit.obj - 0001:0007636e ___acrt_uninitialize_lowio 1007736e f libucrt:ioinit.obj - 0001:0007639a __fileno 1007739a f libucrt:fileno.obj - 0001:00076452 __close_internal 10077452 f libucrt:close.obj - 0001:000764f5 __close_nolock 100774f5 f libucrt:close.obj - 0001:00076525 __close_nolock_internal 10077525 f libucrt:close.obj - 0001:000765c5 ?__acrt_stdio_allocate_stream@@YA?AV__crt_stdio_stream@@XZ 100775c5 f libucrt:stream.obj - 0001:0007662e ?__acrt_stdio_free_stream@@YAXV__crt_stdio_stream@@@Z 1007762e f libucrt:stream.obj - 0001:0007672b ___acrt_initialize_locks 1007772b f libucrt:locks.obj - 0001:0007676c ___acrt_lock 1007776c f libucrt:locks.obj - 0001:00076783 ___acrt_uninitialize_locks 10077783 f libucrt:locks.obj - 0001:000767b4 ___acrt_unlock 100777b4 f libucrt:locks.obj - 0001:000767cb __lock_locales 100777cb f libucrt:locks.obj - 0001:000767d9 __unlock_locales 100777d9 f libucrt:locks.obj - 0001:00076884 __commit 10077884 f libucrt:commit.obj - 0001:000770a3 __write 100780a3 f libucrt:write.obj - 0001:000770da __write_internal 100780da f libucrt:write.obj - 0001:000771eb __write_nolock 100781eb f libucrt:write.obj - 0001:00077596 ___acrt_stdio_refill_and_read_narrow_nolock 10078596 f libucrt:_filbuf.obj - 0001:00077b98 __ftelli64 10078b98 f libucrt:ftell.obj - 0001:00077bce __ftelli64_nolock_internal 10078bce f libucrt:ftell.obj - 0001:00077e26 ___acrt_stdio_flush_and_write_narrow_nolock 10078e26 f libucrt:_flsbuf.obj - 0001:0007830d __read 1007930d f libucrt:read.obj - 0001:00078426 __read_nolock 10079426 f libucrt:read.obj - 0001:00078959 __lseeki64 10079959 f libucrt:lseek.obj - 0001:00078999 __lseeki64_internal 10079999 f libucrt:lseek.obj - 0001:000789b7 __lseeki64_nolock 100799b7 f libucrt:lseek.obj - 0001:000789f7 __lseeki64_nolock_internal 100799f7 f libucrt:lseek.obj - 0001:00078a15 ___acrt_should_use_temporary_buffer 10079a15 f libucrt:_sftbuf.obj - 0001:00078a53 ___acrt_stdio_begin_temporary_buffering_nolock 10079a53 f libucrt:_sftbuf.obj - 0001:00078afe ___acrt_stdio_end_temporary_buffering_nolock 10079afe f libucrt:_sftbuf.obj - 0001:00078b3c ___acrt_stdio_allocate_buffer_nolock 10079b3c f libucrt:_getbuf.obj - 0001:00078b98 __malloc_base 10079b98 f libucrt:malloc_base.obj - 0001:00078c7e ___acrt_MultiByteToWideChar 10079c7e f libucrt:multibytetowidechar.obj - 0001:00078ca8 ___acrt_update_locale_info 10079ca8 f libucrt:locale_update.obj - 0001:00078cd5 ___acrt_update_locale_info_explicit 10079cd5 f libucrt:locale_update.obj - 0001:00078d06 ___acrt_update_multibyte_info 10079d06 f libucrt:locale_update.obj - 0001:00078d33 ___acrt_update_multibyte_info_explicit 10079d33 f libucrt:locale_update.obj - 0001:00078d64 __wrename 10079d64 f libucrt:wrename.obj - 0001:00078d91 _strnlen 10079d91 f libucrt:strnlen.obj - 0001:00078eb3 _wcsnlen 10079eb3 f libucrt:strnlen.obj - 0001:00079063 ?__acrt_fp_classify@@YA?AW4__acrt_fp_class@@ABN@Z 1007a063 f i libucrt:cvt.obj - 0001:00079a3b ___acrt_fp_format 1007aa3b f libucrt:cvt.obj - 0001:00079bbc __wctomb_internal 1007abbc f libucrt:wctomb.obj - 0001:00079d26 __mbtowc_internal 1007ad26 f libucrt:mbtowc.obj - 0001:00079e59 __get_printf_count_output 1007ae59 f libucrt:printf_count_output.obj - 0001:00079e6e __errcode 1007ae6e f libucrt:fpexcept.obj - 0001:00079ea2 __except1 1007aea2 f libucrt:fpexcept.obj - 0001:00079f70 __handle_exc 1007af70 f libucrt:fpexcept.obj - 0001:0007a1f0 __raise_exc 1007b1f0 f libucrt:fpexcept.obj - 0001:0007a213 __raise_exc_ex 1007b213 f libucrt:fpexcept.obj - 0001:0007a504 __set_errno_from_matherr 1007b504 f libucrt:fpexcept.obj - 0001:0007a535 __umatherr 1007b535 f libucrt:fpexcept.obj - 0001:0007a5d5 __decomp 1007b5d5 f libucrt:util.obj - 0001:0007a6a7 __set_exp 1007b6a7 f libucrt:util.obj - 0001:0007a6d4 __sptype 1007b6d4 f libucrt:util.obj - 0001:0007a737 ___set_fpsr_sse2 1007b737 f libucrt:fpctrl.obj - 0001:0007a7b7 __clrfp 1007b7b7 f libucrt:fpctrl.obj - 0001:0007a7c8 __ctrlfp 1007b7c8 f libucrt:fpctrl.obj - 0001:0007a7f2 __set_statfp 1007b7f2 f libucrt:fpctrl.obj - 0001:0007a84b __statfp 1007b84b f libucrt:fpctrl.obj - 0001:0007a8a8 ??$__crt_fast_decode_pointer@P6AHI@Z@@YAP6AHI@ZQ6AHI@Z@Z 1007b8a8 f i libucrt:new_handler.obj - 0001:0007a8a8 ??$__crt_fast_decode_pointer@P6AXH@Z@@YAP6AXH@ZQ6AXH@Z@Z 1007b8a8 f i libucrt:signal.obj - 0001:0007a8a8 ??$__crt_fast_decode_pointer@P6GXPAXK0@Z@@YAP6GXPAXK0@ZQ6GX0K0@Z@Z 1007b8a8 f i libucrt:exit.obj - 0001:0007ab50 ___acrt_initialize_thread_local_exit_callback 1007bb50 f libucrt:exit.obj - 0001:0007ab5f __cexit 1007bb5f f libucrt:exit.obj - 0001:0007ab6e __exit 1007bb6e f libucrt:exit.obj - 0001:0007ab84 __is_c_termination_complete 1007bb84 f libucrt:exit.obj - 0001:0007ac5d ___acrt_get_sigabrt_handler 1007bc5d f libucrt:signal.obj - 0001:0007ac84 ___acrt_initialize_signal_handlers 1007bc84 f libucrt:signal.obj - 0001:0007aca2 _raise 1007bca2 f libucrt:signal.obj - 0001:0007ae94 ___pctype_func 1007be94 f libucrt:ctype.obj - 0001:0007aeb8 _iswctype 1007beb8 f libucrt:iswctype.obj - 0001:0007af21 __isctype_l 1007bf21 f libucrt:isctype.obj - 0001:0007afec _fegetround 1007bfec f libucrt:fegetround.obj - 0001:0007aff9 ___acrt_initialize_timeset 1007bff9 f libucrt:timeset.obj - 0001:0007b02e ___daylight 1007c02e f libucrt:timeset.obj - 0001:0007b034 ___dstbias 1007c034 f libucrt:timeset.obj - 0001:0007b03a ___timezone 1007c03a f libucrt:timeset.obj - 0001:0007b040 ___tzname 1007c040 f libucrt:timeset.obj - 0001:0007b046 ___wide_tzname 1007c046 f libucrt:timeset.obj - 0001:0007b04c __get_daylight 1007c04c f libucrt:timeset.obj - 0001:0007b078 __get_dstbias 1007c078 f libucrt:timeset.obj - 0001:0007b0a4 __get_timezone 1007c0a4 f libucrt:timeset.obj - 0001:0007b0d0 ??$__crt_time_elapsed_leap_years@H@@YAHH@Z 1007c0d0 f i libucrt:gmtime.obj - 0001:0007b10a ??$__crt_time_is_leap_year@H@@YA_NH@Z 1007c10a f i libucrt:gmtime.obj - 0001:0007b350 __gmtime64_s 1007c350 f libucrt:gmtime.obj - 0001:0007bc1a ___tzset 1007cc1a f libucrt:tzset.obj - 0001:0007bc77 __isindst 1007cc77 f libucrt:tzset.obj - 0001:0007bd5b ___acrt_WideCharToMultiByte 1007cd5b f libucrt:widechartomultibyte.obj - 0001:0007bdc7 ??1?$__crt_scoped_stack_ptr@_W@@QAE@XZ 1007cdc7 f i libucrt:wcsftime.obj - 0001:0007ce2b __W_Gettnames 1007de2b f libucrt:wcsftime.obj - 0001:0007d527 __Wcsftime_l 1007e527 f libucrt:wcsftime.obj - 0001:0007d687 __freea_crt 1007e687 f i libucrt:wcsftime.obj - 0001:0007d6a7 __dtest 1007e6a7 f libucrt:_test.obj - 0001:0007d70b __ldtest 1007e70b f libucrt:_test.obj - 0001:0007d905 ___acrt_LCMapStringA 1007e905 f libucrt:lcmapstringa.obj - 0001:0007d94e ___libm_error_support 1007e94e f libucrt:libm_error.obj - 0001:0007db50 _sqrt 1007eb50 f libucrt:sqrt.obj - 0001:0007db5e ___acrt_initialize_sse2 1007eb5e f libucrt:mathfcns.obj - 0001:0007db6e __ceil_default 1007eb6e f libucrt:ceil.obj - 0001:0007dc30 ___ascii_strnicmp 1007ec30 f libucrt:_strnicm.obj - 0001:0007dc91 ___acrt_add_locale_ref 1007ec91 f libucrt:locale_refcounting.obj - 0001:0007dd0e ___acrt_free_locale 1007ed0e f libucrt:locale_refcounting.obj - 0001:0007de56 ___acrt_locale_add_lc_time_reference 1007ee56 f libucrt:locale_refcounting.obj - 0001:0007de7f ___acrt_locale_free_lc_time_if_unreferenced 1007ee7f f libucrt:locale_refcounting.obj - 0001:0007deb0 ___acrt_locale_release_lc_time_reference 1007eeb0 f libucrt:locale_refcounting.obj - 0001:0007ded9 ___acrt_release_locale_ref 1007eed9 f libucrt:locale_refcounting.obj - 0001:0007df5a ___acrt_update_thread_locale_data 1007ef5a f libucrt:locale_refcounting.obj - 0001:0007dfdb __updatetlocinfoEx_nolock 1007efdb f libucrt:locale_refcounting.obj - 0001:0007e5a7 ___acrt_initialize_multibyte 1007f5a7 f libucrt:mbctype.obj - 0001:0007e5ef ___acrt_update_thread_multibyte_data 1007f5ef f libucrt:mbctype.obj - 0001:0007e602 __setmbcp_nolock 1007f602 f libucrt:mbctype.obj - 0001:0007e807 __seh_filter_dll 1007f807 f libucrt:exception_filter.obj - 0001:0007e827 __seh_filter_exe 1007f827 f libucrt:exception_filter.obj - 0001:0007e96d ____lc_codepage_func 1007f96d f libucrt:initctype.obj - 0001:0007e992 ____lc_locale_name_func 1007f992 f libucrt:initctype.obj - 0001:0007e9b9 ____mb_cur_max_func 1007f9b9 f libucrt:initctype.obj - 0001:0007e9de ___acrt_locale_initialize_ctype 1007f9de f libucrt:initctype.obj - 0001:0007ee3b ___acrt_locale_free_monetary 1007fe3b f libucrt:initmon.obj - 0001:0007ef39 ___acrt_locale_initialize_monetary 1007ff39 f libucrt:initmon.obj - 0001:0007f29a ___acrt_locale_free_numeric 1008029a f libucrt:initnum.obj - 0001:0007f303 ___acrt_locale_initialize_numeric 10080303 f libucrt:initnum.obj - 0001:0007f7c1 ___acrt_locale_free_time 100807c1 f libucrt:inittime.obj - 0001:0007f8a5 ___acrt_locale_initialize_time 100808a5 f libucrt:inittime.obj - 0001:0007f920 _wcscat_s 10080920 f libucrt:wcscat_s.obj - 0001:0007f98f _wcscpy_s 1008098f f libucrt:wcscpy_s.obj - 0001:0007fadb _wcsncat_s 10080adb f libucrt:wcsncat_s.obj - 0001:0007fbb4 _wcsncpy_s 10080bb4 f libucrt:wcsncpy_s.obj - 0001:0007fbbf _wcscspn 10080bbf f libucrt:wcscspn.obj - 0001:0007fc18 _wcspbrk 10080c18 f libucrt:wcspbrk.obj - 0001:0007fc66 ___acrt_GetStringTypeA 10080c66 f libucrt:getstringtypea.obj - 0001:0008045e ___acrt_get_qualified_locale 1008145e f libucrt:get_qualified_locale.obj - 0001:00080dd3 ___acrt_get_qualified_locale_downlevel 10081dd3 f libucrt:getqloc_downlevel.obj - 0001:00080fc3 ___acrt_initialize_new_handler 10081fc3 f libucrt:new_handler.obj - 0001:00080fd2 __callnewh 10081fd2 f libucrt:new_handler.obj - 0001:00080ffe __query_new_handler 10081ffe f libucrt:new_handler.obj - 0001:00081055 __query_new_mode 10082055 f libucrt:new_mode.obj - 0001:0008105c ___acrt_initialize_heap 1008205c f libucrt:heap_handle.obj - 0001:0008106d ___acrt_uninitialize_heap 1008206d f libucrt:heap_handle.obj - 0001:000810c7 ___acrt_DownlevelLCIDToLocaleName 100820c7 f libucrt:lcidtoname_downlevel.obj - 0001:0008116a ___acrt_DownlevelLocaleNameToLCID 1008216a f libucrt:lcidtoname_downlevel.obj - 0001:00081196 ___acrt_get_process_end_policy 10082196 f libucrt:win_policies.obj - 0001:000811bd ___acrt_lowio_create_handle_array 100821bd f libucrt:osfinfo.obj - 0001:00081238 ___acrt_lowio_destroy_handle_array 10082238 f libucrt:osfinfo.obj - 0001:0008126d ___acrt_lowio_ensure_fh_exists 1008226d f libucrt:osfinfo.obj - 0001:0008130b ___acrt_lowio_lock_fh 1008230b f libucrt:osfinfo.obj - 0001:0008132e ___acrt_lowio_set_os_handle 1008232e f libucrt:osfinfo.obj - 0001:000813c0 ___acrt_lowio_unlock_fh 100823c0 f libucrt:osfinfo.obj - 0001:000813e3 __alloc_osfhnd 100823e3 f libucrt:osfinfo.obj - 0001:000814f6 __free_osfhnd 100824f6 f libucrt:osfinfo.obj - 0001:00081587 __get_osfhandle 10082587 f libucrt:osfinfo.obj - 0001:000815f1 __isatty 100825f1 f libucrt:isatty.obj - 0001:00081673 ?__mbrtowc_utf8@__crt_mbstring@@YAIPA_WPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10082673 f libucrt:mbrtowc.obj - 0001:000816b6 ?__mbsrtowcs_utf8@__crt_mbstring@@YAIPA_WPAPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100826b6 f libucrt:mbrtowc.obj - 0001:000817be __putwch_nolock 100827be f libucrt:putwch.obj - 0001:000818a1 ___acrt_fp_strflt_to_string 100828a1 f libucrt:_fptostr.obj - 0001:0008199b ___acrt_fltout 1008299b f libucrt:cfout.obj - 0001:00082f83 ?__c32rtomb_utf8@__crt_mbstring@@YAIPAD_UPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10083f83 f libucrt:c32rtomb.obj - 0001:00083033 ___acrt_has_user_matherr 10084033 f libucrt:matherr.obj - 0001:00083050 ___acrt_initialize_user_matherr 10084050 f libucrt:matherr.obj - 0001:0008305f ___acrt_invoke_user_matherr 1008405f f libucrt:matherr.obj - 0001:00083095 __initterm 10084095 f libucrt:initterm.obj - 0001:000830c0 __initterm_e 100840c0 f libucrt:initterm.obj - 0001:00083380 __crt_atexit 10084380 f libucrt:onexit.obj - 0001:00083396 __execute_onexit_table 10084396 f libucrt:onexit.obj - 0001:000833d4 __initialize_onexit_table 100843d4 f libucrt:onexit.obj - 0001:000833fd __register_onexit_function 100843fd f libucrt:onexit.obj - 0001:00083430 ___acrt_app_verifier_enabled 10084430 f libucrt:peb_access.obj - 0001:00083442 ___acrt_is_secure_process 10084442 f libucrt:peb_access.obj - 0001:00083455 ___acrt_GetStringTypeW 10084455 f libucrt:getstringtypew.obj - 0001:00083737 ___acrt_fenv_get_common_round_control 10084737 f libucrt:_fenvutils.obj - 0001:00083759 ___acrt_fenv_get_control 10084759 f libucrt:_fenvutils.obj - 0001:000837d9 ___acrt_fenv_get_status 100847d9 f libucrt:_fenvutils.obj - 0001:00083883 ___acrt_fenv_set_control 10084883 f libucrt:_fenvutils.obj - 0001:000838fe ___acrt_fenv_set_status 100848fe f libucrt:_fenvutils.obj - 0001:00083b8b __wgetenv_s 10084b8b f libucrt:getenv.obj - 0001:00083b96 ___ascii_wcsicmp 10084b96 f libucrt:wcsicmp.obj - 0001:00083bd3 __towlower_internal 10084bd3 f i libucrt:wcsicmp.obj - 0001:00083c12 __wcsicmp 10084c12 f libucrt:wcsicmp.obj - 0001:00083c5b __wcsicmp_l 10084c5b f libucrt:wcsicmp.obj - 0001:00083d13 ___strncnt 10084d13 f libucrt:strncnt.obj - 0001:00083d30 __twoToTOS 10084d30 f libucrt:common.obj - 0001:00083d45 __load_CW 10084d45 f libucrt:common.obj - 0001:00083d5c __convertTOStoQNaN 10084d5c f libucrt:common.obj - 0001:00083d75 __fload_withFB 10084d75 f libucrt:common.obj - 0001:00083db8 __checkTOS_withFB 10084db8 f libucrt:common.obj - 0001:00083dce __fast_exit 10084dce f libucrt:common.obj - 0001:00083ddb __math_exit 10084ddb f libucrt:common.obj - 0001:00083e05 __check_overflow_exit 10084e05 f libucrt:common.obj - 0001:00083e19 __check_range_exit 10084e19 f libucrt:common.obj - 0001:00083ec0 __CIsqrt 10084ec0 f libucrt:sqrt_impl.obj - 0001:00083ed4 __sqrt_common 10084ed4 libucrt:sqrt_impl.obj - 0001:00083f71 __frnd 10084f71 f libucrt:frnd.obj - 0001:00084073 ___acrt_GetLocaleInfoA 10085073 f libucrt:getlocaleinfoa.obj - 0001:00084351 __itow_s 10085351 f libucrt:xtoa.obj - 0001:00084384 ___ascii_wcsnicmp 10085384 f libucrt:wcsnicmp.obj - 0001:000843d3 __wcsnicmp 100853d3 f libucrt:wcsnicmp.obj - 0001:0008441f __wcsnicmp_l 1008541f f libucrt:wcsnicmp.obj - 0001:000844f2 __query_app_type 100854f2 f libucrt:report_runtime_error.obj - 0001:000844f8 ?__mbrtoc32_utf8@__crt_mbstring@@YAIPA_UPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100854f8 f libucrt:mbrtoc32.obj - 0001:000846c8 ___dcrt_lowio_ensure_console_output_initialized 100856c8 f libucrt:initcon.obj - 0001:000846e7 ___dcrt_terminate_console_output 100856e7 f libucrt:initcon.obj - 0001:000846fe ___dcrt_write_console 100856fe f libucrt:initcon.obj - 0001:00084753 __controlfp_s 10085753 f libucrt:contrlfp.obj - 0001:000847b2 _fegetenv 100857b2 f libucrt:fegetenv.obj - 0001:000847cf _fesetenv 100857cf f libucrt:fesetenv.obj - 0001:0008481b _feholdexcept 1008581b f libucrt:feholdexcept.obj - 0001:00084870 __CIlog10 10085870 f libucrt:log10_impl.obj - 0001:000848ab __CIlog10_default 100858ab f libucrt:log10_impl.obj - 0001:000848bf __log10_default 100858bf libucrt:log10_impl.obj - 0001:00084980 ?reset_and_return@__crt_mbstring@@YAIIPAU_Mbstatet@@@Z 10085980 f libucrt:common_utf8.obj - 0001:00084994 ?return_illegal_sequence@__crt_mbstring@@YAIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10085994 f libucrt:common_utf8.obj - 0001:000849b6 __recalloc_base 100859b6 f libucrt:recalloc.obj - 0001:00084a23 __wcsnicoll 10085a23 f libucrt:wcsnicol.obj - 0001:00084a90 __wcsnicoll_l 10085a90 f libucrt:wcsnicol.obj - 0001:00084f11 ___dcrt_get_or_create_wide_environment_nolock 10085f11 f libucrt:environment_initialization.obj - 0001:00084f16 ___dcrt_uninitialize_environments_nolock 10085f16 f libucrt:environment_initialization.obj - 0001:00084f67 __initialize_narrow_environment 10085f67 f libucrt:environment_initialization.obj - 0001:00084f6c __towlower_l 10085f6c f libucrt:towlower.obj - 0001:00085040 __startTwoArgErrorHandling 10086040 f libucrt:genexcep.obj - 0001:00085057 __startOneArgErrorHandling 10086057 f libucrt:genexcep.obj - 0001:000850a0 __trandisp1 100860a0 f libucrt:87disp.obj - 0001:00085115 __trandisp2 10086115 f libucrt:87disp.obj - 0001:000851af __rttospopde 100861af libucrt:87disp.obj - 0001:000851b4 __rttospop 100861b4 libucrt:87disp.obj - 0001:000851c0 __rtnospop 100861c0 f libucrt:87disp.obj - 0001:000851d0 __rttosnpop 100861d0 f libucrt:87disp.obj - 0001:000851d1 __rtnospopde 100861d1 libucrt:87disp.obj - 0001:000851d8 __rtzeropop 100861d8 libucrt:87disp.obj - 0001:000851da __rtzeronpop 100861da libucrt:87disp.obj - 0001:000851e0 __rtzerospop 100861e0 f libucrt:87disp.obj - 0001:000851ed __rtonepop 100861ed libucrt:87disp.obj - 0001:000851f0 __rtonenpop 100861f0 f libucrt:87disp.obj - 0001:00085200 __tosnan1 10086200 f libucrt:87disp.obj - 0001:00085230 __nosnan2 10086230 f libucrt:87disp.obj - 0001:00085240 __tosnan2 10086240 f libucrt:87disp.obj - 0001:00085270 __nan2 10086270 f libucrt:87disp.obj - 0001:000852b0 __rtindfpop 100862b0 f libucrt:87disp.obj - 0001:000852b2 __rtindfnpop 100862b2 libucrt:87disp.obj - 0001:000852c3 __rttosnpopde 100862c3 libucrt:87disp.obj - 0001:000852d0 __rtatan2inf 100862d0 f libucrt:87disp.obj - 0001:000852ed __rtchsifneg 100862ed libucrt:87disp.obj - 0001:000853ab _strncpy_s 100863ab f libucrt:strncpy_s.obj - 0001:0008545d __clearfp 1008645d f libucrt:ieee87.obj - 0001:0008553b __control87 1008653b f libucrt:ieee87.obj - 0001:000858e0 __CIlog10_pentium4 100868e0 f libucrt:log10_pentium4.obj - 0001:000858f8 __log10_pentium4 100868f8 libucrt:log10_pentium4.obj - 0001:00085b90 __fFEXP 10086b90 f libucrt:87tran.obj - 0001:00085be7 __rtinfpopse 10086be7 libucrt:87tran.obj - 0001:00085be9 __rtinfnpopse 10086be9 libucrt:87tran.obj - 0001:00085bf9 __fFLN 10086bf9 libucrt:87tran.obj - 0001:00085cae __rtinfpop 10086cae libucrt:87tran.obj - 0001:00085cb0 __rtinfnpop 10086cb0 libucrt:87tran.obj - 0001:00085cc0 __rtforexpinf 10086cc0 f libucrt:87tran.obj - 0001:00085ccd __ffexpm1 10086ccd libucrt:87tran.obj - 0001:00085d76 __msize_base 10086d76 f libucrt:msize.obj - 0001:00085da9 __realloc_base 10086da9 f libucrt:realloc_base.obj - 0001:00085e12 ___acrt_CompareStringW 10086e12 f libucrt:comparestringw.obj - 0001:00085eae ___dcrt_get_narrow_environment_from_os 10086eae f libucrt:get_environment_from_os.obj - 0001:00085f4e ___dcrt_get_wide_environment_from_os 10086f4e f libucrt:get_environment_from_os.obj - 0001:00086357 ___dcrt_set_variable_in_wide_environment_nolock 10087357 f libucrt:setenv.obj - 0001:00086362 ___acrt_LCMapStringW 10087362 f libucrt:lcmapstringw.obj - 0001:000863a0 __87except 100873a0 f libucrt:87except.obj - 0001:000864b0 __d_inttype 100874b0 f libucrt:powhlp.obj - 0001:00086518 __powhlp 10087518 f libucrt:powhlp.obj - 0001:000868e6 _mbstowcs_s 100878e6 f libucrt:mbstowcs.obj - 0001:00086923 __fpclass 10087923 f libucrt:ieeemisc.obj - 0001:000869c7 _CreateToolhelp32Snapshot@8 100879c7 f kernel32:KERNEL32.dll - 0001:000869cd _Thread32First@8 100879cd f kernel32:KERNEL32.dll - 0001:000869d3 _Thread32Next@8 100879d3 f kernel32:KERNEL32.dll - 0001:000869d9 ??0_Init_locks@std@@QAE@XZ 100879d9 f libcpmt:xlock.obj - 0001:00086a06 ??0_Lockit@std@@QAE@H@Z 10087a06 f libcpmt:xlock.obj - 0001:00086a37 ??1_Init_locks@std@@QAE@XZ 10087a37 f libcpmt:xlock.obj - 0001:00086a5e ??1_Lockit@std@@QAE@XZ 10087a5e f libcpmt:xlock.obj - 0001:00086a7d ??0bad_function_call@std@@QAE@ABV01@@Z 10087a7d f i libcpmt:xthrow.obj - 0001:00086a98 ??0bad_function_call@std@@QAE@XZ 10087a98 f i libcpmt:xthrow.obj - 0001:00086aa9 ??0invalid_argument@std@@QAE@ABV01@@Z 10087aa9 f i libcpmt:xthrow.obj - 0001:00086ac4 ??0invalid_argument@std@@QAE@PBD@Z 10087ac4 f i libcpmt:xthrow.obj - 0001:00086ae3 ??0length_error@std@@QAE@ABV01@@Z 10087ae3 f i libcpmt:xthrow.obj - 0001:00086afe ??0length_error@std@@QAE@PBD@Z 10087afe f i libcpmt:xthrow.obj - 0001:00086b1d ??0logic_error@std@@QAE@ABV01@@Z 10087b1d f i libcpmt:xthrow.obj - 0001:00086b38 ??0out_of_range@std@@QAE@ABV01@@Z 10087b38 f i libcpmt:xthrow.obj - 0001:00086b53 ??0out_of_range@std@@QAE@PBD@Z 10087b53 f i libcpmt:xthrow.obj - 0001:00086b72 ??0runtime_error@std@@QAE@PBD@Z 10087b72 f i libcpmt:xthrow.obj - 0001:00086b91 ?_Xbad_alloc@std@@YAXXZ 10087b91 f libcpmt:xthrow.obj - 0001:00086b91 ?__scrt_throw_std_bad_alloc@@YAXXZ 10087b91 f LIBCMT:throw_bad_alloc.obj - 0001:00086bae ?_Xbad_function_call@std@@YAXXZ 10087bae f libcpmt:xthrow.obj - 0001:00086bcb ?_Xinvalid_argument@std@@YAXPBD@Z 10087bcb f libcpmt:xthrow.obj - 0001:00086beb ?_Xlength_error@std@@YAXPBD@Z 10087beb f libcpmt:xthrow.obj - 0001:00086c0b ?_Xout_of_range@std@@YAXPBD@Z 10087c0b f libcpmt:xthrow.obj - 0001:00086c2b ?_Xruntime_error@std@@YAXPBD@Z 10087c2b f libcpmt:xthrow.obj - 0001:00086c4b ?what@bad_function_call@std@@UBEPBDXZ 10087c4b f i libcpmt:xthrow.obj - 0001:00086c51 ?_Syserror_map@std@@YAPBDH@Z 10087c51 f libcpmt:syserror.obj - 0001:00086c76 ??0_Locimp@locale@std@@AAE@_N@Z 10087c76 f i libcpmt:locale0.obj - 0001:00086cb7 ??1_Fac_node@std@@QAE@XZ 10087cb7 f i libcpmt:locale0.obj - 0001:00086ce8 ??1_Fac_tidy_reg_t@std@@QAE@XZ 10087ce8 f i libcpmt:locale0.obj - 0001:00086d0f ??1_Locimp@locale@std@@MAE@XZ 10087d0f f i libcpmt:locale0.obj - 0001:00086d3a ??4?$_Yarn@D@std@@QAEAAV01@PBD@Z 10087d3a f i libcpmt:locale0.obj - 0001:00086d8e ??_E_Locimp@locale@std@@MAEPAXI@Z 10087d8e f i libcpmt:locale0.obj - 0001:00086d8e ??_G_Locimp@locale@std@@MAEPAXI@Z 10087d8e f i libcpmt:locale0.obj - 0001:00086db0 ?_Facet_Register@std@@YAXPAV_Facet_base@1@@Z 10087db0 f libcpmt:locale0.obj - 0001:00086ddc ?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ 10087ddc f libcpmt:locale0.obj - 0001:00086de2 ?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 10087de2 f libcpmt:locale0.obj - 0001:00086e6f ?_Locimp_dtor@_Locimp@locale@std@@CAXPAV123@@Z 10087e6f f libcpmt:locale0.obj - 0001:00086ee0 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z 10087ee0 f libcpmt:locale0.obj - 0001:00086f2b ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z 10087f2b f libcpmt:locale0.obj - 0001:00086f45 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@_N@Z 10087f45 f libcpmt:locale0.obj - 0001:00086f68 ?_Setgloballocale@locale@std@@CAXPAX@Z 10087f68 f libcpmt:locale0.obj - 0001:00086f90 __Deletegloballocale 10087f90 f libcpmt:locale0.obj - 0001:00086ff5 __Getctype 10087ff5 f libcpmt:_tolower.obj - 0001:00087060 __Tolower 10088060 f libcpmt:_tolower.obj - 0001:0008716c __Toupper 1008816c f libcpmt:_toupper.obj - 0001:00087278 ?_Addstd@ios_base@std@@SAXPAV12@@Z 10088278 f libcpmt:ios.obj - 0001:000872c4 ?_Callfns@ios_base@std@@AAEXW4event@12@@Z 100882c4 f i libcpmt:ios.obj - 0001:000872f7 ?_Ios_base_dtor@ios_base@std@@CAXPAV12@@Z 100882f7 f libcpmt:ios.obj - 0001:00087337 ?_Tidy@ios_base@std@@AAEXXZ 10088337 f i libcpmt:ios.obj - 0001:000873b2 ?uncaught_exception@std@@YA_NXZ 100883b2 f libcpmt:uncaught_exception.obj - 0001:000873b7 ___std_init_once_link_alternate_names_and_abort@0 100883b7 f libcpmt:xonce2.obj - 0001:000873bc __Query_perf_counter 100883bc f libcpmt:xtime.obj - 0001:000873d3 __Query_perf_frequency 100883d3 f libcpmt:xtime.obj - 0001:00087410 __Xtime_get_ticks 10088410 f libcpmt:xtime.obj - 0001:00087437 __Getcvt 10088437 f libcpmt:xwctomb.obj - 0001:00087527 ?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z 10088527 f libcpmt:fiopen.obj - 0001:00087530 ?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z 10088530 f libcpmt:iomanip.obj - 0001:0008755e __Mtxdst 1008855e f libcpmt:xmtx.obj - 0001:0008756c __Mtxinit 1008856c f libcpmt:xmtx.obj - 0001:00087581 __Mtxlock 10088581 f libcpmt:xmtx.obj - 0001:0008758f __Mtxunlock 1008858f f libcpmt:xmtx.obj - 0001:0008759d ??1_Init_atexit@@QAE@XZ 1008859d f i libcpmt:iosptrs.obj - 0001:00087605 ?_Atexit@@YAXP6AXXZ@Z 10088605 f libcpmt:iosptrs.obj - 0001:00087634 ___crtLCMapStringA 10088634 f libcpmt:StlLCMapStringA.obj - 0001:00087845 ___crtGetSystemTimePreciseAsFileTime 10088845 f libcpmt:winapisupp.obj - 0001:0008789a ??2@YAPAXI@Z 1008889a f LIBCMT:new_scalar.obj - 0001:000878ca ??3@YAXPAXI@Z 100888ca f LIBCMT:delete_scalar_size.obj - 0001:000878d8 ??_V@YAXPAX@Z 100888d8 f LIBCMT:delete_array.obj - 0001:00087921 ___scrt_acquire_startup_lock 10088921 f LIBCMT:utility.obj - 0001:00087953 ___scrt_dllmain_after_initialize_c 10088953 f LIBCMT:utility.obj - 0001:0008797e ___scrt_dllmain_before_initialize_c 1008897e f LIBCMT:utility.obj - 0001:0008798c ___scrt_dllmain_crt_thread_attach 1008898c f LIBCMT:utility.obj - 0001:000879ab ___scrt_dllmain_crt_thread_detach 100889ab f LIBCMT:utility.obj - 0001:000879b8 ___scrt_dllmain_exception_filter 100889b8 f LIBCMT:utility.obj - 0001:000879ec ___scrt_dllmain_uninitialize_c 100889ec f LIBCMT:utility.obj - 0001:00087a0f ___scrt_dllmain_uninitialize_critical 10088a0f f LIBCMT:utility.obj - 0001:00087a1c ___scrt_initialize_crt 10088a1c f LIBCMT:utility.obj - 0001:00087a55 ___scrt_initialize_onexit_tables 10088a55 f LIBCMT:utility.obj - 0001:00087adc ___scrt_is_nonwritable_in_current_image 10088adc f LIBCMT:utility.obj - 0001:00087b70 ___scrt_release_startup_lock 10088b70 f LIBCMT:utility.obj - 0001:00087b8d ___scrt_uninitialize_crt 10088b8d f LIBCMT:utility.obj - 0001:00087bb5 __onexit 10088bb5 f LIBCMT:utility.obj - 0001:00087be2 _atexit 10088be2 f LIBCMT:utility.obj - 0001:00087bf7 @__security_check_cookie@4 10088bf7 f LIBCMT:secchk.obj - 0001:00087c05 ??_Etype_info@@UAEPAXI@Z 10088c05 f i LIBCMT:std_type_info_static.obj - 0001:00087c05 ??_Gtype_info@@UAEPAXI@Z 10088c05 f i LIBCMT:std_type_info_static.obj - 0001:00087c28 ??_U@YAPAXI@Z 10088c28 f LIBCMT:new_array.obj - 0001:00087c40 __allshl 10088c40 f LIBCMT:llshl.obj - 0001:00087c60 __aullshr 10088c60 f LIBCMT:ullshr.obj - 0001:00087c7f __Init_thread_abort 10088c7f f LIBCMT:thread_safe_statics.obj - 0001:00087caa __Init_thread_footer 10088caa f LIBCMT:thread_safe_statics.obj - 0001:00087cfb __Init_thread_header 10088cfb f LIBCMT:thread_safe_statics.obj - 0001:00087d4a __Init_thread_wait_v2 10088d4a f LIBCMT:thread_safe_statics.obj - 0001:00087d60 __alldiv 10088d60 f LIBCMT:lldiv.obj - 0001:00087e10 __alldvrm 10088e10 f LIBCMT:lldvrm.obj - 0001:00087ef0 __allmul 10088ef0 f LIBCMT:llmul.obj - 0001:00087f30 __allrem 10088f30 f LIBCMT:llrem.obj - 0001:00087fe2 ?__scrt_initialize_type_info@@YAXXZ 10088fe2 f LIBCMT:tncleanup.obj - 0001:00087fee ?__scrt_uninitialize_type_info@@YAXXZ 10088fee f LIBCMT:tncleanup.obj - 0001:00088000 __ftol3 10089000 f LIBCMT:ftol3.obj - 0001:00088070 __dtoul3 10089070 f LIBCMT:ftol3.obj - 0001:00088120 __dtoul3_legacy 10089120 f LIBCMT:ftol3.obj - 0001:00088150 __dtol3 10089150 f LIBCMT:ftol3.obj - 0001:00088200 __ultod3 10089200 f LIBCMT:ftol3.obj - 0001:00088250 __ltod3 10089250 f LIBCMT:ftol3.obj - 0001:000885d2 __DllMainCRTStartup@12 100895d2 f LIBCMT:dll_dllmain.obj - 0001:00088600 __SEH_prolog4 10089600 f LIBCMT:sehprolg4.obj - 0001:00088645 @_guard_check_icall@4 10089645 f i LIBCMT:checkcfg.obj - 0001:0008864b ___isa_available_init 1008964b f LIBCMT:cpu_disp.obj - 0001:00088980 __FindPESection 10089980 f LIBCMT:pesect.obj - 0001:000889d0 __IsNonwritableInCurrentImage 100899d0 f LIBCMT:pesect.obj - 0001:00088a90 __ValidateImageBase 10089a90 f LIBCMT:pesect.obj - 0001:00088ac1 __EH_epilog3 10089ac1 f LIBCMT:ehprolg3.obj - 0001:00088ad5 __EH_prolog3 10089ad5 f LIBCMT:ehprolg3.obj - 0001:00088b08 __EH_prolog3_catch 10089b08 f LIBCMT:ehprolg3.obj - 0001:00088b40 __aulldvrm 10089b40 f LIBCMT:ulldvrm.obj - 0001:00088bd5 ___scrt_fastfail 10089bd5 f LIBCMT:utility_desktop.obj - 0001:00088cea __crt_debugger_hook 10089cea f LIBCMT:utility_desktop.obj - 0001:00088d00 __aulldiv 10089d00 f LIBCMT:ulldiv.obj - 0001:00088d70 __aullrem 10089d70 f LIBCMT:ullrem.obj - 0001:00088de5 ___raise_securityfailure 10089de5 f LIBCMT:gs_report.obj - 0001:00088e0d ___report_gsfailure 10089e0d f LIBCMT:gs_report.obj - 0001:00088f08 ___report_rangecheckfailure 10089f08 f LIBCMT:gs_report.obj - 0001:00088f15 ___report_securityfailure 10089f15 f LIBCMT:gs_report.obj - 0001:00088ff0 __alloca_probe 10089ff0 f LIBCMT:chkstk.obj - 0001:00088ff0 __chkstk 10089ff0 f LIBCMT:chkstk.obj - 0001:00089020 __alloca_probe_16 1008a020 f LIBCMT:alloca16.obj - 0001:00089036 __alloca_probe_8 1008a036 LIBCMT:alloca16.obj - 0001:00089050 __ftol2_sse 1008a050 f LIBCMT:ftol2.obj - 0001:00089060 __ftoi2 1008a060 f LIBCMT:ftol2.obj - 0001:000890dc ?__scrt_throw_std_bad_array_new_length@@YAXXZ 1008a0dc f LIBCMT:throw_bad_alloc.obj - 0001:000890f9 ___scrt_is_ucrt_dll_in_use 1008a0f9 f LIBCMT:ucrt_detection.obj - 0001:00089152 ___security_init_cookie 1008a152 f LIBCMT:gs_support.obj - 0001:0008919d _DllMain@12 1008a19d f LIBCMT:dll_dllmain_stub.obj - 0001:000891a3 ___local_stdio_scanf_options 1008a1a3 f i LIBCMT:default_local_stdio_options.obj - 0001:000891a9 ___scrt_initialize_default_local_stdio_options 1008a1a9 f LIBCMT:default_local_stdio_options.obj - 0001:000891c6 ___scrt_get_dyn_tls_init_callback 1008a1c6 f LIBCMT:dyn_tls_init.obj - 0001:000891cc __RTC_Initialize 1008a1cc f LIBCMT:initsect.obj - 0001:000891f8 __RTC_Terminate 1008a1f8 f LIBCMT:initsect.obj - 0001:00089224 _memcmp 1008a224 f libvcruntime:memcmp.obj - 0001:0008a8b0 _strrchr 1008b8b0 f libvcruntime:strrchr.obj - 0001:0008a9e7 _wcschr 1008b9e7 f libvcruntime:wcschr.obj - 0001:0008aa88 ___uncaught_exception 1008ba88 f libvcruntime:uncaught_exception.obj - 0001:0008aa9c ___vcrt_initialize 1008ba9c f libvcruntime:initialization.obj - 0001:0008aabb ___vcrt_thread_attach 1008babb f libvcruntime:initialization.obj - 0001:0008aac6 ___vcrt_thread_detach 1008bac6 f libvcruntime:initialization.obj - 0001:0008aace ___vcrt_uninitialize 1008bace f libvcruntime:initialization.obj - 0001:0008aae5 ___vcrt_uninitialize_critical 1008bae5 f libvcruntime:initialization.obj - 0001:0008ad42 _setlocale 1008bd42 f libucrt:setlocale.obj - 0001:0008ad7a __wcsdup 1008bd7a f libucrt:wcsdup.obj - 0001:0008ae90 __fsopen 1008be90 f libucrt:fopen.obj - 0001:0008b14c ___acrt_allocate_buffer_for_argv 1008c14c f libucrt:argv_parsing.obj - 0001:0008b19b __configure_narrow_argv 1008c19b f libucrt:argv_parsing.obj - 0001:0008b2a1 ___acrt_initialize 1008c2a1 f libucrt:initialization.obj - 0001:0008b2b3 ___acrt_thread_attach 1008c2b3 f libucrt:initialization.obj - 0001:0008b2be ___acrt_thread_detach 1008c2be f libucrt:initialization.obj - 0001:0008b2c6 ___acrt_uninitialize 1008c2c6 f libucrt:initialization.obj - 0001:0008b2f6 ___acrt_uninitialize_critical 1008c2f6 f libucrt:initialization.obj - 0001:0008b684 __wcstombs_s_l 1008c684 f libucrt:wcstombs.obj - 0001:0008b6c2 ??$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z 1008c6c2 f i libucrt:openfile.obj - 0001:0008b96f ?__acrt_stdio_parse_mode_D@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008c96f f i libucrt:openfile.obj - 0001:0008b98a ?__acrt_stdio_parse_mode_T@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008c98a f i libucrt:openfile.obj - 0001:0008b9a9 ?__acrt_stdio_parse_mode_b@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008c9a9 f i libucrt:openfile.obj - 0001:0008b9c9 ?__acrt_stdio_parse_mode_c@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1008c9c9 f i libucrt:openfile.obj - 0001:0008b9eb ?__acrt_stdio_parse_mode_n@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1008c9eb f i libucrt:openfile.obj - 0001:0008ba0d ?__acrt_stdio_parse_mode_plus@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1008ca0d f i libucrt:openfile.obj - 0001:0008ba43 ?__acrt_stdio_parse_mode_t@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008ca43 f i libucrt:openfile.obj - 0001:0008ba63 ?__acrt_stdio_parse_mode_x@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008ca63 f i libucrt:openfile.obj - 0001:0008ba83 __openfile 1008ca83 f libucrt:openfile.obj - 0001:0008baa6 ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 1008caa6 f i libucrt:argv_wildcards.obj - 0001:0008c044 ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 1008d044 f i libucrt:argv_wildcards.obj - 0001:0008c107 ___acrt_expand_narrow_argv_wildcards 1008d107 f libucrt:argv_wildcards.obj - 0001:0008c112 ___acrt_GetModuleFileNameA 1008d112 f libucrt:getmodulefilenamea.obj - 0001:0008c203 __ismbblead 1008d203 f libucrt:ismbbyte.obj - 0001:0008c21b ___acrt_initialize_command_line 1008d21b f libucrt:argv_data.obj - 0001:0008c234 ___acrt_execute_initializers 1008d234 f libucrt:shared_initialization.obj - 0001:0008c29c ___acrt_execute_uninitializers 1008d29c f libucrt:shared_initialization.obj - 0001:0008c2cd ?__wcsrtombs_utf8@__crt_mbstring@@YAIPADPAPB_WIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 1008d2cd f libucrt:wcrtomb.obj - 0001:0008c9c6 __sopen_nolock 1008d9c6 f libucrt:open.obj - 0001:0008ca34 __sopen_s 1008da34 f libucrt:open.obj - 0001:0008ca54 __wsopen_nolock 1008da54 f libucrt:open.obj - 0001:0008cd80 _qsort 1008dd80 f libucrt:qsort.obj - 0001:0008d270 _strpbrk 1008e270 f libucrt:strpbrk.obj - 0001:0008d2b0 __mbsdec 1008e2b0 f libucrt:mbsdec.obj - 0001:0008d2c7 __mbsdec_l 1008e2c7 f libucrt:mbsdec.obj - 0001:0008d354 ?__c16rtomb_utf8@__crt_mbstring@@YAIPAD_SPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 1008e354 f libucrt:c16rtomb.obj - 0001:0008d3fe __get_fmode 1008e3fe f libucrt:setmode.obj - 0001:0008d42b __setmode_nolock 1008e42b f libucrt:setmode.obj - 0001:0008d4fa ??0__crt_seek_guard@@QAE@H_J@Z 1008e4fa f i libucrt:chsize.obj - 0001:0008d547 __chsize_nolock 1008e547 f libucrt:chsize.obj - 0001:0008d57e __chsize_nolock_internal 1008e57e f libucrt:chsize.obj - 0001:0008d715 ___acrt_initialize_fmode 1008e715 f libucrt:txtmode.obj - 0001:0008d72b __filter_x86_sse2_floating_point_exception 1008e72b f LIBCMT:x86_exception_filter.obj - 0001:0008d72b __filter_x86_sse2_floating_point_exception_default 1008e72b f LIBCMT:x86_exception_filter.obj - 0002:00000000 __imp__CreateDirectoryA@8 10095000 kernel32:KERNEL32.dll - 0002:00000004 __imp__CreateFileA@28 10095004 kernel32:KERNEL32.dll - 0002:00000008 __imp__DeleteFileA@4 10095008 kernel32:KERNEL32.dll - 0002:0000000c __imp__GetFileAttributesA@4 1009500c kernel32:KERNEL32.dll - 0002:00000010 __imp__SetFileAttributesA@8 10095010 kernel32:KERNEL32.dll - 0002:00000014 __imp__OutputDebugStringA@4 10095014 kernel32:KERNEL32.dll - 0002:00000018 __imp__CloseHandle@4 10095018 kernel32:KERNEL32.dll - 0002:0000001c __imp__DuplicateHandle@28 1009501c kernel32:KERNEL32.dll - 0002:00000020 __imp__GetLastError@0 10095020 kernel32:KERNEL32.dll - 0002:00000024 __imp__Sleep@4 10095024 kernel32:KERNEL32.dll - 0002:00000028 __imp__GetCurrentProcess@0 10095028 kernel32:KERNEL32.dll - 0002:0000002c __imp__GetCurrentProcessId@0 1009502c kernel32:KERNEL32.dll - 0002:00000030 __imp__GetCurrentThread@0 10095030 kernel32:KERNEL32.dll - 0002:00000034 __imp__GetCurrentThreadId@0 10095034 kernel32:KERNEL32.dll - 0002:00000038 __imp__OpenThread@12 10095038 kernel32:KERNEL32.dll - 0002:0000003c __imp__SuspendThread@4 1009503c kernel32:KERNEL32.dll - 0002:00000040 __imp__ResumeThread@4 10095040 kernel32:KERNEL32.dll - 0002:00000044 __imp__GetProcessIdOfThread@4 10095044 kernel32:KERNEL32.dll - 0002:00000048 __imp__GetThreadContext@8 10095048 kernel32:KERNEL32.dll - 0002:0000004c __imp__FlushInstructionCache@12 1009504c kernel32:KERNEL32.dll - 0002:00000050 __imp__OpenProcess@12 10095050 kernel32:KERNEL32.dll - 0002:00000054 __imp__GetSystemInfo@4 10095054 kernel32:KERNEL32.dll - 0002:00000058 __imp__VirtualQuery@12 10095058 kernel32:KERNEL32.dll - 0002:0000005c __imp__VirtualAllocEx@20 1009505c kernel32:KERNEL32.dll - 0002:00000060 __imp__VirtualProtectEx@20 10095060 kernel32:KERNEL32.dll - 0002:00000064 __imp__VirtualQueryEx@16 10095064 kernel32:KERNEL32.dll - 0002:00000068 __imp__ReadProcessMemory@20 10095068 kernel32:KERNEL32.dll - 0002:0000006c __imp__WriteProcessMemory@20 1009506c kernel32:KERNEL32.dll - 0002:00000070 __imp__VirtualFreeEx@16 10095070 kernel32:KERNEL32.dll - 0002:00000074 __imp__IsWow64Process@8 10095074 kernel32:KERNEL32.dll - 0002:00000078 __imp__CreateToolhelp32Snapshot@8 10095078 kernel32:KERNEL32.dll - 0002:0000007c __imp__Thread32First@8 1009507c kernel32:KERNEL32.dll - 0002:00000080 __imp__Thread32Next@8 10095080 kernel32:KERNEL32.dll - 0002:00000084 __imp__RaiseException@16 10095084 kernel32:KERNEL32.dll - 0002:00000088 __imp__RtlUnwind@16 10095088 kernel32:KERNEL32.dll - 0002:0000008c __imp__InterlockedPushEntrySList@8 1009508c kernel32:KERNEL32.dll - 0002:00000090 __imp__InterlockedFlushSList@4 10095090 kernel32:KERNEL32.dll - 0002:00000094 __imp__SetLastError@4 10095094 kernel32:KERNEL32.dll - 0002:00000098 __imp__EncodePointer@4 10095098 kernel32:KERNEL32.dll - 0002:0000009c __imp__InitializeCriticalSectionAndSpinCount@8 1009509c kernel32:KERNEL32.dll - 0002:000000a0 __imp__TlsAlloc@0 100950a0 kernel32:KERNEL32.dll - 0002:000000a4 __imp__TlsGetValue@4 100950a4 kernel32:KERNEL32.dll - 0002:000000a8 __imp__TlsSetValue@8 100950a8 kernel32:KERNEL32.dll - 0002:000000ac __imp__TlsFree@4 100950ac kernel32:KERNEL32.dll - 0002:000000b0 __imp__FreeLibrary@4 100950b0 kernel32:KERNEL32.dll - 0002:000000b4 __imp__GetProcAddress@8 100950b4 kernel32:KERNEL32.dll - 0002:000000b8 __imp__LoadLibraryExW@12 100950b8 kernel32:KERNEL32.dll - 0002:000000bc __imp__EnterCriticalSection@4 100950bc kernel32:KERNEL32.dll - 0002:000000c0 __imp__LeaveCriticalSection@4 100950c0 kernel32:KERNEL32.dll - 0002:000000c4 __imp__DeleteCriticalSection@4 100950c4 kernel32:KERNEL32.dll - 0002:000000c8 __imp__IsDebuggerPresent@0 100950c8 kernel32:KERNEL32.dll - 0002:000000cc __imp__UnhandledExceptionFilter@4 100950cc kernel32:KERNEL32.dll - 0002:000000d0 __imp__SetUnhandledExceptionFilter@4 100950d0 kernel32:KERNEL32.dll - 0002:000000d4 __imp__TerminateProcess@8 100950d4 kernel32:KERNEL32.dll - 0002:000000d8 __imp__IsProcessorFeaturePresent@4 100950d8 kernel32:KERNEL32.dll - 0002:000000dc __imp__HeapAlloc@12 100950dc kernel32:KERNEL32.dll - 0002:000000e0 __imp__HeapFree@12 100950e0 kernel32:KERNEL32.dll - 0002:000000e4 __imp__GetSystemTimeAsFileTime@4 100950e4 kernel32:KERNEL32.dll - 0002:000000e8 __imp__GetDateFormatW@24 100950e8 kernel32:KERNEL32.dll - 0002:000000ec __imp__GetTimeFormatW@24 100950ec kernel32:KERNEL32.dll - 0002:000000f0 __imp__CompareStringW@24 100950f0 kernel32:KERNEL32.dll - 0002:000000f4 __imp__LCMapStringW@24 100950f4 kernel32:KERNEL32.dll - 0002:000000f8 __imp__GetLocaleInfoW@16 100950f8 kernel32:KERNEL32.dll - 0002:000000fc __imp__IsValidLocale@8 100950fc kernel32:KERNEL32.dll - 0002:00000100 __imp__GetUserDefaultLCID@0 10095100 kernel32:KERNEL32.dll - 0002:00000104 __imp__EnumSystemLocalesW@8 10095104 kernel32:KERNEL32.dll - 0002:00000108 __imp__GetStdHandle@4 10095108 kernel32:KERNEL32.dll - 0002:0000010c __imp__GetFileType@4 1009510c kernel32:KERNEL32.dll - 0002:00000110 __imp__GetStartupInfoW@4 10095110 kernel32:KERNEL32.dll - 0002:00000114 __imp__FlushFileBuffers@4 10095114 kernel32:KERNEL32.dll - 0002:00000118 __imp__WriteFile@20 10095118 kernel32:KERNEL32.dll - 0002:0000011c __imp__GetConsoleOutputCP@0 1009511c kernel32:KERNEL32.dll - 0002:00000120 __imp__GetConsoleMode@8 10095120 kernel32:KERNEL32.dll - 0002:00000124 __imp__ReadFile@20 10095124 kernel32:KERNEL32.dll - 0002:00000128 __imp__GetFileSizeEx@8 10095128 kernel32:KERNEL32.dll - 0002:0000012c __imp__SetFilePointerEx@20 1009512c kernel32:KERNEL32.dll - 0002:00000130 __imp__ReadConsoleW@20 10095130 kernel32:KERNEL32.dll - 0002:00000134 __imp__MultiByteToWideChar@24 10095134 kernel32:KERNEL32.dll - 0002:00000138 __imp__MoveFileExW@12 10095138 kernel32:KERNEL32.dll - 0002:0000013c __imp__ExitProcess@4 1009513c kernel32:KERNEL32.dll - 0002:00000140 __imp__GetModuleHandleW@4 10095140 kernel32:KERNEL32.dll - 0002:00000144 __imp__GetModuleHandleExW@12 10095144 kernel32:KERNEL32.dll - 0002:00000148 __imp__GetTimeZoneInformation@4 10095148 kernel32:KERNEL32.dll - 0002:0000014c __imp__WideCharToMultiByte@32 1009514c kernel32:KERNEL32.dll - 0002:00000150 __imp__DecodePointer@4 10095150 kernel32:KERNEL32.dll - 0002:00000154 __imp__IsValidCodePage@4 10095154 kernel32:KERNEL32.dll - 0002:00000158 __imp__GetACP@0 10095158 kernel32:KERNEL32.dll - 0002:0000015c __imp__GetOEMCP@0 1009515c kernel32:KERNEL32.dll - 0002:00000160 __imp__GetCPInfo@8 10095160 kernel32:KERNEL32.dll - 0002:00000164 __imp__GetStringTypeW@16 10095164 kernel32:KERNEL32.dll - 0002:00000168 __imp__GetProcessHeap@0 10095168 kernel32:KERNEL32.dll - 0002:0000016c __imp__SetStdHandle@8 1009516c kernel32:KERNEL32.dll - 0002:00000170 __imp__GetModuleFileNameW@12 10095170 kernel32:KERNEL32.dll - 0002:00000174 __imp__CreateFileW@28 10095174 kernel32:KERNEL32.dll - 0002:00000178 __imp__WriteConsoleW@20 10095178 kernel32:KERNEL32.dll - 0002:0000017c __imp__HeapSize@12 1009517c kernel32:KERNEL32.dll - 0002:00000180 __imp__HeapReAlloc@16 10095180 kernel32:KERNEL32.dll - 0002:00000184 __imp__GetEnvironmentStringsW@0 10095184 kernel32:KERNEL32.dll - 0002:00000188 __imp__FreeEnvironmentStringsW@4 10095188 kernel32:KERNEL32.dll - 0002:0000018c __imp__SetEnvironmentVariableW@8 1009518c kernel32:KERNEL32.dll - 0002:00000190 __imp__GetCommandLineW@0 10095190 kernel32:KERNEL32.dll - 0002:00000194 __imp__GetCommandLineA@0 10095194 kernel32:KERNEL32.dll - 0002:00000198 __imp__FindNextFileW@8 10095198 kernel32:KERNEL32.dll - 0002:0000019c __imp__InitOnceBeginInitialize@16 1009519c kernel32:KERNEL32.dll - 0002:0000019c __imp____std_init_once_begin_initialize@16 1009519c kernel32:KERNEL32.dll - 0002:000001a0 __imp__InitOnceComplete@12 100951a0 kernel32:KERNEL32.dll - 0002:000001a0 __imp____std_init_once_complete@12 100951a0 kernel32:KERNEL32.dll - 0002:000001a4 __imp__QueryPerformanceCounter@4 100951a4 kernel32:KERNEL32.dll - 0002:000001a8 __imp__QueryPerformanceFrequency@4 100951a8 kernel32:KERNEL32.dll - 0002:000001ac __imp__InitializeCriticalSectionEx@12 100951ac kernel32:KERNEL32.dll - 0002:000001b0 __imp__LCMapStringEx@36 100951b0 kernel32:KERNEL32.dll - 0002:000001b4 __imp__ReleaseSRWLockExclusive@4 100951b4 kernel32:KERNEL32.dll - 0002:000001b8 __imp__AcquireSRWLockExclusive@4 100951b8 kernel32:KERNEL32.dll - 0002:000001bc __imp__WakeAllConditionVariable@4 100951bc kernel32:KERNEL32.dll - 0002:000001c0 __imp__SleepConditionVariableSRW@16 100951c0 kernel32:KERNEL32.dll - 0002:000001c4 __imp__InitializeSListHead@4 100951c4 kernel32:KERNEL32.dll - 0002:000001c8 __imp__FindClose@4 100951c8 kernel32:KERNEL32.dll - 0002:000001cc __imp__FindFirstFileExW@24 100951cc kernel32:KERNEL32.dll - 0002:000001d0 __imp__SetEndOfFile@4 100951d0 kernel32:KERNEL32.dll - 0002:000001d4 \177KERNEL32_NULL_THUNK_DATA 100951d4 kernel32:KERNEL32.dll - 0002:000001d8 __imp__MessageBoxA@16 100951d8 user32:USER32.dll - 0002:000001dc \177USER32_NULL_THUNK_DATA 100951dc user32:USER32.dll - 0002:000001e0 ___guard_check_icall_fptr 100951e0 libucrt:guard_support.obj - 0002:000001e4 ___castguard_check_failure_os_handled_fptr 100951e4 libucrt:guard_support.obj - 0002:000001e8 ___xc_a 100951e8 LIBCMT:initializers.obj - 0002:0000034c ___xc_z 1009534c LIBCMT:initializers.obj - 0002:00000350 ___xi_a 10095350 LIBCMT:initializers.obj - 0002:00000354 ___acrt_stdio_initializer 10095354 libucrt:stdio_initializer.obj - 0002:00000358 ___acrt_timeset_initializer 10095358 libucrt:timeset_initializer.obj - 0002:0000035c ___acrt_tran_sse2_initializer 1009535c libucrt:sse2_initializer.obj - 0002:00000360 ___acrt_multibyte_initializer 10095360 libucrt:multibyte_initializer.obj - 0002:00000368 ___acrt_fmode_initializer 10095368 libucrt:fmode_initializer.obj - 0002:0000036c ___xi_z 1009536c LIBCMT:initializers.obj - 0002:00000370 ___xl_a 10095370 LIBCMT:tlssup.obj - 0002:00000374 ___xl_z 10095374 LIBCMT:tlssup.obj - 0002:00000378 ___xp_a 10095378 LIBCMT:initializers.obj - 0002:0000037c ___acrt_locale_terminator 1009537c libucrt:locale_initializer.obj - 0002:00000380 ___dcrt_console_output_terminator 10095380 libucrt:console_output_initializer.obj - 0002:00000384 ___acrt_stdio_terminator 10095384 libucrt:stdio_initializer.obj - 0002:00000388 ___xp_z 10095388 LIBCMT:initializers.obj - 0002:0000038c ___xt_a 1009538c LIBCMT:initializers.obj - 0002:00000390 ___xt_z 10095390 LIBCMT:initializers.obj - 0002:000003a8 ??_7exception@std@@6B@ 100953a8 logging.cpp.obj - 0002:000003b0 ??_C@_0BC@EOODALEL@Unknown?5exception@ 100953b0 logging.cpp.obj - 0002:000003c8 ??_7bad_alloc@std@@6B@ 100953c8 logging.cpp.obj - 0002:000003d4 ??_7bad_array_new_length@std@@6B@ 100953d4 logging.cpp.obj - 0002:000003dc ??_C@_0BF@KINCDENJ@bad?5array?5new?5length@ 100953dc logging.cpp.obj - 0002:000003f4 ??_C@_0BA@JFNIOLAK@string?5too?5long@ 100953f4 logging.cpp.obj - 0002:00000408 ??_7runtime_error@std@@6B@ 10095408 logging.cpp.obj - 0002:00000414 ??_7_System_error@std@@6B@ 10095414 logging.cpp.obj - 0002:0000041c ??_C@_02LMMGGCAJ@?3?5@ 1009541c logging.cpp.obj - 0002:00000424 ??_7system_error@std@@6B@ 10095424 logging.cpp.obj - 0002:00000430 ??_7_Iostream_error_category2@std@@6B@ 10095430 logging.cpp.obj - 0002:00000448 ??_C@_08LLGCOLLL@iostream@ 10095448 logging.cpp.obj - 0002:00000454 ?_Iostream_error@?4??message@_Iostream_error_category2@std@@UBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@H@Z@4QBDB 10095454 logging.cpp.obj - 0002:00000470 ??_7bad_cast@std@@6B@ 10095470 logging.cpp.obj - 0002:00000478 ??_C@_08EPJLHIJG@bad?5cast@ 10095478 logging.cpp.obj - 0002:00000488 ??_7_Facet_base@std@@6B@ 10095488 logging.cpp.obj - 0002:00000494 ??_C@_0BA@ELKIONDK@bad?5locale?5name@ 10095494 logging.cpp.obj - 0002:000004a4 ??_C@_00CNPNBAHC@@ 100954a4 logging.cpp.obj - 0002:000004ac ??_7?$ctype@D@std@@6B@ 100954ac logging.cpp.obj - 0002:000004dc ??_7failure@ios_base@std@@6B@ 100954dc logging.cpp.obj - 0002:000004e8 ??_7ios_base@std@@6B@ 100954e8 logging.cpp.obj - 0002:000004ec ??_C@_0BF@PHHKMMFD@ios_base?3?3badbit?5set@ 100954ec logging.cpp.obj - 0002:00000504 ??_C@_0BG@FMKFHCIL@ios_base?3?3failbit?5set@ 10095504 logging.cpp.obj - 0002:0000051c ??_C@_0BF@OOHOMBOF@ios_base?3?3eofbit?5set@ 1009551c logging.cpp.obj - 0002:00000538 ??_7?$basic_ios@DU?$char_traits@D@std@@@std@@6B@ 10095538 logging.cpp.obj - 0002:00000540 ??_7?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@ 10095540 logging.cpp.obj - 0002:00000544 ??_8?$basic_ostream@DU?$char_traits@D@std@@@std@@7B@ 10095544 logging.cpp.obj - 0002:00000550 ??_7?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@ 10095550 logging.cpp.obj - 0002:00000590 ??_7?$basic_filebuf@DU?$char_traits@D@std@@@std@@6B@ 10095590 logging.cpp.obj - 0002:000005d0 ??_7?$basic_ofstream@DU?$char_traits@D@std@@@std@@6B@ 100955d0 logging.cpp.obj - 0002:000005d4 ??_8?$basic_ofstream@DU?$char_traits@D@std@@@std@@7B@ 100955d4 logging.cpp.obj - 0002:000005e0 ??_7?$codecvt@DDU_Mbstatet@@@std@@6B@ 100955e0 logging.cpp.obj - 0002:00000608 ??_C@_0BI@CFPLBAOH@invalid?5string?5position@ 10095608 logging.cpp.obj - 0002:00000628 ??_7bad_exception@std@@6B@ 10095628 main.cpp.obj - 0002:00000630 ??_C@_0O@DPKOEFFH@bad?5exception@ 10095630 main.cpp.obj - 0002:00000640 ??_C@_0P@GHFPNOJB@bad?5allocation@ 10095640 main.cpp.obj - 0002:00000650 ??_C@_05LAPONLG@false@ 10095650 main.cpp.obj - 0002:00000658 ??_C@_04LOAJBDKD@true@ 10095658 main.cpp.obj - 0002:00000660 ??_C@_0BG@OFLLLHIE@invalid?5stof?5argument@ 10095660 main.cpp.obj - 0002:00000678 ??_C@_0BL@CGEIMNKL@stof?5argument?5out?5of?5range@ 10095678 main.cpp.obj - 0002:00000694 ??_C@_02NJPGOMH@?$CFf@ 10095694 main.cpp.obj - 0002:00000698 ??_C@_0BB@GCADKGJO@map?1set?5too?5long@ 10095698 main.cpp.obj - 0002:000006b0 ??_7error_info_container@exception_detail@boost@@6B@ 100956b0 main.cpp.obj - 0002:000006cc ??_7exception@boost@@6B@ 100956cc main.cpp.obj - 0002:000006d4 ??_7clone_base@exception_detail@boost@@6B@ 100956d4 main.cpp.obj - 0002:000006e4 ??_7error_info_base@exception_detail@boost@@6B@ 100956e4 main.cpp.obj - 0002:000006f4 ??_7sp_counted_base@detail@boost@@6B@ 100956f4 main.cpp.obj - 0002:00000710 ??_7error_info_container_impl@exception_detail@boost@@6B@ 10095710 main.cpp.obj - 0002:0000072c ??_7?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 1009572c main.cpp.obj - 0002:0000076c ??_7?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 1009576c main.cpp.obj - 0002:00000770 ??_8?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B@ 10095770 main.cpp.obj - 0002:00000778 ??_C@_0CF@CFFMGBAP@No?5diagnostic?5information?5avail@ 10095778 main.cpp.obj - 0002:000007a0 ??_C@_0BD@OKEHHCDP@Unknown?5exception?4@ 100957a0 main.cpp.obj - 0002:000007b4 ??_C@_0DP@GHFCDMCB@Throw?5location?5unknown?5?$CIconside@ 100957b4 main.cpp.obj - 0002:000007f4 ??_C@_03LPPJIELD@?$CJ?3?5@ 100957f4 main.cpp.obj - 0002:000007f8 ??_C@_0BD@FCCHBKHG@Throw?5in?5function?5@ 100957f8 main.cpp.obj - 0002:0000080c ??_C@_09GPGAJHPD@?$CIunknown?$CJ@ 1009580c main.cpp.obj - 0002:00000818 ??_C@_0BJ@GCNBPHBB@Dynamic?5exception?5type?3?5@ 10095818 main.cpp.obj - 0002:00000834 ??_C@_06OJHGLDPL@?$CInull?$CJ@ 10095834 main.cpp.obj - 0002:0000083c ??_C@_0BH@IJDPHMMC@std?3?3exception?3?3what?3?5@ 1009583c main.cpp.obj - 0002:00000854 ??_C@_04OAFLPOMH@?$FN?5?$DN?5@ 10095854 main.cpp.obj - 0002:00000860 ??_7bad_alloc_@exception_detail@boost@@6Bexception@2@@ 10095860 main.cpp.obj - 0002:00000868 ??_7bad_alloc_@exception_detail@boost@@6Bbad_alloc@std@@@ 10095868 main.cpp.obj - 0002:00000874 ??_7bad_exception_@exception_detail@boost@@6Bexception@2@@ 10095874 main.cpp.obj - 0002:0000087c ??_7bad_exception_@exception_detail@boost@@6Bbad_exception@std@@@ 1009587c main.cpp.obj - 0002:00000888 ??_7Error@hadesmem@@6Bexception@std@@@ 10095888 main.cpp.obj - 0002:00000894 ??_7Error@hadesmem@@6Bexception@boost@@@ 10095894 main.cpp.obj - 0002:00000898 ??_8Error@hadesmem@@7B@ 10095898 main.cpp.obj - 0002:000008a8 ??_7?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@6B@ 100958a8 main.cpp.obj - 0002:000008b8 ??_7?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@6B@ 100958b8 main.cpp.obj - 0002:000008c4 ??_C@_0O@LHJCBCAJ@?$FL?$CFlu?$FN?5?$CFs?3?5?$CFs?6@ 100958c4 main.cpp.obj - 0002:000008d4 ??_C@_0P@DMJNBGBJ@IsWoW64Process@ 100958d4 main.cpp.obj - 0002:000008e8 ??_C@_0FC@HMKIBJE@C?3?2software?2hadesmem?9v142?9Relea@ 100958e8 main.cpp.obj - 0002:0000093c ??_C@_0BH@CAHPBGBP@IsWoW64Process?5failed?4@ 1009593c main.cpp.obj - 0002:00000954 ??_C@_0M@MMCMKPDL@OpenProcess@ 10095954 main.cpp.obj - 0002:00000960 ??_C@_0BE@LHGDOJMK@OpenProcess?5failed?4@ 10095960 main.cpp.obj - 0002:00000974 ??_C@_0L@EHKLHJ@OpenThread@ 10095974 main.cpp.obj - 0002:00000980 ??_C@_0BD@GGECPCAK@OpenThread?5failed?4@ 10095980 main.cpp.obj - 0002:00000994 ??_C@_0BA@KKBHKMMH@DuplicateHandle@ 10095994 main.cpp.obj - 0002:000009a4 ??_C@_0BI@FGIAIHNB@DuplicateHandle?5failed?4@ 100959a4 main.cpp.obj - 0002:000009bc ??_C@_0L@BPDMILMI@CheckWoW64@ 100959bc main.cpp.obj - 0002:000009c8 ??_C@_0EM@FPGLKILF@C?3?2software?2hadesmem?9v142?9Relea@ 100959c8 main.cpp.obj - 0002:00000a14 ??_C@_0CN@CIONBDMF@x86?5?9?$DO?5x64?5process?5modification@ 10095a14 main.cpp.obj - 0002:00000a44 ??_C@_02DKCKIIND@?$CFs@ 10095a44 main.cpp.obj - 0002:00000a48 ??_C@_0CE@NLAKHOBH@hadesmem?3?3Process?3?3CleanupUnche@ 10095a48 main.cpp.obj - 0002:00000a6c ??_C@_05KKFAOBBL@Alloc@ 10095a6c main.cpp.obj - 0002:00000a78 ??_C@_0EK@ILAEBCGD@C?3?2software?2hadesmem?9v142?9Relea@ 10095a78 main.cpp.obj - 0002:00000ac4 ??_C@_0BH@PKAGPCAJ@VirtualAllocEx?5failed?4@ 10095ac4 main.cpp.obj - 0002:00000adc ??_C@_04HJMOFLDF@Free@ 10095adc main.cpp.obj - 0002:00000ae4 ??_C@_0BG@MMIHDGBH@VirtualFreeEx?5failed?4@ 10095ae4 main.cpp.obj - 0002:00000afc ??_C@_0CD@GFAOAFIL@hadesmem?3?3Allocator?3?3FreeUnchec@ 10095afc main.cpp.obj - 0002:00000b20 ??_C@_0CD@LNPEPGDL@hadesmem?3?3Thread?3?3CleanupUnchec@ 10095b20 main.cpp.obj - 0002:00000b44 ??_C@_0BJ@JEFKDHMD@CreateToolhelp32Snapshot@ 10095b44 main.cpp.obj - 0002:00000b60 ??_C@_0FE@PMPDGIMA@C?3?2software?2hadesmem?9v142?9Relea@ 10095b60 main.cpp.obj - 0002:00000bb4 ??_C@_0CB@JCNCLELI@CreateToolhelp32Snapshot?5failed@ 10095bb4 main.cpp.obj - 0002:00000bd8 ??_C@_0BG@CIDIKHKO@Thread32First?5failed?4@ 10095bd8 main.cpp.obj - 0002:00000bf0 ??_C@_0BF@OOLHIKFH@Thread32Next?5failed?4@ 10095bf0 main.cpp.obj - 0002:00000c08 ??_C@_0BB@MBPKHMON@GetThreadContext@ 10095c08 main.cpp.obj - 0002:00000c20 ??_C@_0FD@GFMGBNPP@C?3?2software?2hadesmem?9v142?9Relea@ 10095c20 main.cpp.obj - 0002:00000c74 ??_C@_0CM@PMFHKMCF@GetThreadContext?5called?5for?5cur@ 10095c74 main.cpp.obj - 0002:00000ca0 ??_C@_0BJ@NBMNLEAK@GetThreadContext?5failed?4@ 10095ca0 main.cpp.obj - 0002:00000cbc ??_C@_0O@HMJOGGOE@SuspendThread@ 10095cbc main.cpp.obj - 0002:00000ccc ??_C@_0BG@HGBOONEI@SuspendThread?5failed?4@ 10095ccc main.cpp.obj - 0002:00000ce4 ??_C@_0N@JPHIGJOE@ResumeThread@ 10095ce4 main.cpp.obj - 0002:00000cf4 ??_C@_0BF@CPDPNIDB@ResumeThread?5failed?4@ 10095cf4 main.cpp.obj - 0002:00000d0c ??_C@_0CL@NOFNLPJH@hadesmem?3?3SuspendedThread?3?3Resu@ 10095d0c main.cpp.obj - 0002:00000d38 ??_C@_0EB@CHHFMIFP@WARNING?$CB?5Error?5while?5suspending@ 10095d38 main.cpp.obj - 0002:00000d7c ??_C@_0CN@OAFEMMLD@hadesmem?3?3SuspendedProcess?3?3Sus@ 10095d7c main.cpp.obj - 0002:00000dac ??_C@_0BB@CEKDJBHG@SuspendedProcess@ 10095dac main.cpp.obj - 0002:00000dc0 ??_C@_0DN@FMFFEHNA@Failed?5to?5suspend?5all?5threads?5i@ 10095dc0 main.cpp.obj - 0002:00000e00 ??_C@_09OJCFAFOB@VerifyPid@ 10095e00 main.cpp.obj - 0002:00000e0c ??_C@_0BN@EEJAIICA@GetProcessIdOfThread?5failed?4@ 10095e0c main.cpp.obj - 0002:00000e2c ??_C@_0BJ@PHFJBNAN@PID?5verification?5failed?4@ 10095e2c main.cpp.obj - 0002:00000e48 ??_C@_0BG@JNMEKNNO@FlushInstructionCache@ 10095e48 main.cpp.obj - 0002:00000e60 ??_C@_0EK@MAJFCFGD@C?3?2software?2hadesmem?9v142?9Relea@ 10095e60 main.cpp.obj - 0002:00000eac ??_C@_0BO@BEKIKMHC@FlushInstructionCache?5failed?4@ 10095eac main.cpp.obj - 0002:00000ecc ??_C@_07EMMGCHGI@Protect@ 10095ecc main.cpp.obj - 0002:00000ed8 ??_C@_0FK@CJDMOKGD@C?3?2software?2hadesmem?9v142?9Relea@ 10095ed8 main.cpp.obj - 0002:00000f34 ??_C@_0BJ@GOHMJHGO@VirtualProtectEx?5failed?4@ 10095f34 main.cpp.obj - 0002:00000f50 ??_C@_05BNKNJDAB@Query@ 10095f50 main.cpp.obj - 0002:00000f58 ??_C@_0FI@NAPLGFGJ@C?3?2software?2hadesmem?9v142?9Relea@ 10095f58 main.cpp.obj - 0002:00000fb0 ??_C@_0BH@JFGDHIMO@VirtualQueryEx?5failed?4@ 10095fb0 main.cpp.obj - 0002:00000fc8 ??_C@_0N@KLFIJGGA@ProtectGuard@ 10095fc8 main.cpp.obj - 0002:00000fd8 ??_C@_0FJ@OFKJBOII@C?3?2software?2hadesmem?9v142?9Relea@ 10095fd8 main.cpp.obj - 0002:00001034 ??_C@_0DF@BAHJNPFD@Attempt?5to?5access?5page?5with?5a?5?8@ 10096034 main.cpp.obj - 0002:0000106c ??_C@_0DB@CGKFDJFG@hadesmem?3?3detail?3?3ProtectGuard?3@ 1009606c main.cpp.obj - 0002:000010a0 ??_C@_0O@KAKHNDGG@ReadUnchecked@ 100960a0 main.cpp.obj - 0002:000010b0 ??_C@_0FF@IFPHEENA@C?3?2software?2hadesmem?9v142?9Relea@ 100960b0 main.cpp.obj - 0002:00001108 ??_C@_0BK@NFNEHIDL@ReadProcessMemory?5failed?4@ 10096108 main.cpp.obj - 0002:00001124 ??_C@_0P@LBLMMGGB@WriteUnchecked@ 10096124 main.cpp.obj - 0002:00001138 ??_C@_0FG@HKAAFBIF@C?3?2software?2hadesmem?9v142?9Relea@ 10096138 main.cpp.obj - 0002:00001190 ??_C@_0BL@BKBINFBA@WriteProcessMemory?5failed?4@ 10096190 main.cpp.obj - 0002:000011ac ??_C@_0DD@NEDPJGDL@Address?5?$DN?5?$CFp?0?5Target?5?$DN?5?$CFp?0?5Push@ 100961ac main.cpp.obj - 0002:000011e0 ??_C@_0BM@BLAEMDDL@hadesmem?3?3detail?3?3WriteJump@ 100961e0 main.cpp.obj - 0002:000011fc ??_C@_0BF@NLCMJOPD@Using?5relative?5jump?4@ 100961fc main.cpp.obj - 0002:00001214 ??_C@_0BK@FPNCDMKG@Address?5?$DN?5?$CFp?0?5Target?5?$DN?5?$CFp@ 10096214 main.cpp.obj - 0002:00001230 ??_C@_0BM@CONKFGOI@hadesmem?3?3detail?3?3WriteCall@ 10096230 main.cpp.obj - 0002:0000124c ??_C@_0BF@MEMDMDAI@Using?5relative?5call?4@ 1009624c main.cpp.obj - 0002:00001264 ??_C@_0BD@KKJJLKB@VerifyPatchThreads@ 10096264 main.cpp.obj - 0002:00001278 ??_C@_0FH@FDDALOBI@C?3?2software?2hadesmem?9v142?9Relea@ 10096278 main.cpp.obj - 0002:000012d0 ??_C@_0CM@OJCIIPGE@Thread?5is?5currently?5executing?5p@ 100962d0 main.cpp.obj - 0002:00001300 ??_7?$basic_istream@DU?$char_traits@D@std@@@std@@6B@ 10096300 main.cpp.obj - 0002:00001308 ??_7?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@ 10096308 main.cpp.obj - 0002:0000130c ??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@ 1009630c main.cpp.obj - 0002:00001314 ??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@ 10096314 main.cpp.obj - 0002:0000131c ??_C@_0CE@GCLPNIIO@hadesmem?3?3PatchRaw?3?3RemoveUnche@ 1009631c main.cpp.obj - 0002:00001340 ??_C@_07NJGAEJFG@?$FLDEBUG?$FN@ 10096340 main.cpp.obj - 0002:0000134c ??_7CDataStore@Nampower@@6B@ 1009634c main.cpp.obj - 0002:00001374 ??_C@_06BALNJMNP@player@ 10096374 main.cpp.obj - 0002:00001380 ??_7?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 10096380 main.cpp.obj - 0002:00001384 ??_8?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@ 10096384 main.cpp.obj - 0002:0000138c ??_8?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@ 1009638c main.cpp.obj - 0002:00001394 ??_C@_0M@EHAPGNAC@?$CFY?9?$CFm?9?$CFd?5?$CFX@ 10096394 main.cpp.obj - 0002:000013a0 ??_C@_06CGLFEPBO@Unused@ 100963a0 main.cpp.obj - 0002:000013a8 ??_C@_04MKEOLIJC@?5to?5@ 100963a8 main.cpp.obj - 0002:000013b0 ??_C@_0N@JECGEPKH@Registering?5@ 100963b0 main.cpp.obj - 0002:000013c0 ??_C@_0BK@ECMBPKJF@?5triggering?5queued?5spells@ 100963c0 main.cpp.obj - 0002:000013dc ??_C@_01LBDDMOBJ@?$FN@ 100963dc main.cpp.obj - 0002:000013e0 ??_C@_0BE@DJPHGBFK@?5latency?5reduction?5@ 100963e0 main.cpp.obj - 0002:000013f4 ??_C@_0BE@MCKMMINL@?5original?5duration?5@ 100963f4 main.cpp.obj - 0002:00001408 ??_C@_0M@GDEDPOEP@?5elapsed?5?$DO?5@ 10096408 main.cpp.obj - 0002:00001414 ??_C@_0BB@CLMMGHMA@Ending?5channel?5?$FL@ 10096414 main.cpp.obj - 0002:00001428 ??_C@_0BF@PLCENIP@?5latency?5reduction?3?5@ 10096428 main.cpp.obj - 0002:00001440 ??_C@_0BG@BKKFKINO@Remaining?5tick?5time?3?5@ 10096440 main.cpp.obj - 0002:00001458 ??_C@_0CO@EPCFCBPN@Ending?5channel?5due?5to?5cancelCha@ 10096458 main.cpp.obj - 0002:00001488 ??_C@_0DA@KGIDDBKC@Non?5gcd?5spell?5cooldown?5up?0?5cast@ 10096488 main.cpp.obj - 0002:000014b8 ??_C@_0CB@OKGJLKOH@?5due?5to?5max?5time?5since?5last?5cas@ 100964b8 main.cpp.obj - 0002:000014dc ??_C@_0BJ@MOIJJLEH@Ignoring?5queued?5cast?5of?5@ 100964dc main.cpp.obj - 0002:000014f8 ??_C@_0CI@DLDOLJJB@Spell?5cooldown?5up?0?5casting?5queu@ 100964f8 main.cpp.obj - 0002:00001520 ??_C@_0BH@JFBHEHPE@NP_QueueCastTimeSpells@ 10096520 main.cpp.obj - 0002:00001538 ??_C@_0BP@PICLLELH@Set?5NP_QueueCastTimeSpells?5to?5@ 10096538 main.cpp.obj - 0002:00001558 ??_C@_0BG@EPNAOJED@NP_QueueInstantSpells@ 10096558 main.cpp.obj - 0002:00001570 ??_C@_0BO@FGKHFEMB@Set?5NP_QueueInstantSpells?5to?5@ 10096570 main.cpp.obj - 0002:00001590 ??_C@_0BG@NHCCGJDA@NP_QueueOnSwingSpells@ 10096590 main.cpp.obj - 0002:000015a8 ??_C@_0BO@BGEGNIHK@Set?5NP_QueueOnSwingSpells?5to?5@ 100965a8 main.cpp.obj - 0002:000015c8 ??_C@_0BJ@KIPOCKFK@NP_QueueChannelingSpells@ 100965c8 main.cpp.obj - 0002:000015e4 ??_C@_0CB@OBNLDPCK@Set?5NP_QueueChannelingSpells?5to@ 100965e4 main.cpp.obj - 0002:00001608 ??_C@_0BI@OGLIEAGM@NP_QueueTargetingSpells@ 10096608 main.cpp.obj - 0002:00001620 ??_C@_0CA@DMKPKEFC@Set?5NP_QueueTargetingSpells?5to?5@ 10096620 main.cpp.obj - 0002:00001640 ??_C@_0BJ@EEBEGJJE@NP_QueueSpellsOnCooldown@ 10096640 main.cpp.obj - 0002:0000165c ??_C@_0CB@ILICALD@Set?5NP_QueueSpellsOnCooldown?5to@ 1009665c main.cpp.obj - 0002:00001680 ??_C@_0CH@NKILOBGJ@NP_InterruptChannelsOutsideQueu@ 10096680 main.cpp.obj - 0002:000016a8 ??_C@_0CP@CBMJDLLE@Set?5NP_InterruptChannelsOutside@ 100966a8 main.cpp.obj - 0002:000016d8 ??_C@_0BN@BPHINGMM@NP_RetryServerRejectedSpells@ 100966d8 main.cpp.obj - 0002:000016f8 ??_C@_0CF@GJMGHEJL@Set?5NP_RetryServerRejectedSpell@ 100966f8 main.cpp.obj - 0002:00001720 ??_C@_0BM@KAAEKKLI@NP_QuickcastTargetingSpells@ 10096720 main.cpp.obj - 0002:0000173c ??_C@_0CE@LGHOMBHC@Set?5NP_QuickcastTargetingSpells@ 1009673c main.cpp.obj - 0002:00001760 ??_C@_0CB@HPGIFMMF@NP_ReplaceMatchingNonGcdCategor@ 10096760 main.cpp.obj - 0002:00001784 ??_C@_0CJ@BKCNDEIE@Set?5NP_ReplaceMatchingNonGcdCat@ 10096784 main.cpp.obj - 0002:000017b0 ??_C@_0CE@HNEFELI@NP_OptimizeBufferUsingPacketTim@ 100967b0 main.cpp.obj - 0002:000017d4 ??_C@_0CM@IFFMCJBG@Set?5NP_OptimizeBufferUsingPacke@ 100967d4 main.cpp.obj - 0002:00001800 ??_C@_0CB@PAPCHMPF@NP_PreventRightClickTargetChang@ 10096800 main.cpp.obj - 0002:00001824 ??_C@_0CJ@CEOCHGOE@Set?5NP_PreventRightClickTargetC@ 10096824 main.cpp.obj - 0002:00001850 ??_C@_0BO@IJCJBII@NP_PreventRightClickPvPAttack@ 10096850 main.cpp.obj - 0002:00001870 ??_C@_0CG@OFCDCGBE@Set?5NP_PreventRightClickPvPAtta@ 10096870 main.cpp.obj - 0002:00001898 ??_C@_0BP@COIIKABN@NP_DoubleCastToEndChannelEarly@ 10096898 main.cpp.obj - 0002:000018b8 ??_C@_0CH@FPPJPDAN@Set?5NP_DoubleCastToEndChannelEa@ 100968b8 main.cpp.obj - 0002:000018e0 ??_C@_0BJ@OGGMANCP@NP_QuickcastOnDoubleCast@ 100968e0 main.cpp.obj - 0002:000018fc ??_C@_0CB@FCCLLLOO@Set?5NP_QuickcastOnDoubleCast?5to@ 100968fc main.cpp.obj - 0002:00001920 ??_C@_0BJ@BNCLKABI@NP_SpamProtectionEnabled@ 10096920 main.cpp.obj - 0002:0000193c ??_C@_0CB@HLCAEHJD@Set?5NP_SpamProtectionEnabled?5to@ 1009693c main.cpp.obj - 0002:00001960 ??_C@_0CA@HJJDEHK@NP_PreserveGreaterDemonAutocast@ 10096960 main.cpp.obj - 0002:00001980 ??_C@_0CI@PFLGHHNE@Set?5NP_PreserveGreaterDemonAuto@ 10096980 main.cpp.obj - 0002:000019a8 ??_C@_0BH@KAMACOOH@NP_EnableUnitEventsPet@ 100969a8 main.cpp.obj - 0002:000019c0 ??_C@_0BP@GFELCLJC@Set?5NP_EnableUnitEventsPet?5to?5@ 100969c0 main.cpp.obj - 0002:000019e0 ??_C@_0BJ@LAAHDDAL@NP_EnableUnitEventsParty@ 100969e0 main.cpp.obj - 0002:000019fc ??_C@_0CB@FHIPANLA@Set?5NP_EnableUnitEventsParty?5to@ 100969fc main.cpp.obj - 0002:00001a20 ??_C@_0BI@NOADONEC@NP_EnableUnitEventsRaid@ 10096a20 main.cpp.obj - 0002:00001a38 ??_C@_0CA@ICNBHNIB@Set?5NP_EnableUnitEventsRaid?5to?5@ 10096a38 main.cpp.obj - 0002:00001a58 ??_C@_0BN@NCMLNAFN@NP_EnableUnitEventsMouseover@ 10096a58 main.cpp.obj - 0002:00001a78 ??_C@_0CF@ECIKMNJO@Set?5NP_EnableUnitEventsMouseove@ 10096a78 main.cpp.obj - 0002:00001aa0 ??_C@_0BI@KJHIDFHI@NP_EnableUnitEventsGuid@ 10096aa0 main.cpp.obj - 0002:00001ab8 ??_C@_0CA@JMHHEFGO@Set?5NP_EnableUnitEventsGuid?5to?5@ 10096ab8 main.cpp.obj - 0002:00001ad8 ??_C@_0CB@GODFGNOP@NP_EnableUnitEventsGuidFilterin@ 10096ad8 main.cpp.obj - 0002:00001afc ??_C@_0CJ@JFKOPHJC@Set?5NP_EnableUnitEventsGuidFilt@ 10096afc main.cpp.obj - 0002:00001b28 ??_C@_0BI@OFECCKJA@NP_EnableAuraCastEvents@ 10096b28 main.cpp.obj - 0002:00001b40 ??_C@_0CA@MCAFBLDG@Set?5NP_EnableAuraCastEvents?5to?5@ 10096b40 main.cpp.obj - 0002:00001b60 ??_C@_0BK@MBLEOKAE@NP_EnableAutoAttackEvents@ 10096b60 main.cpp.obj - 0002:00001b7c ??_C@_0CC@FLEKOLKF@Set?5NP_EnableAutoAttackEvents?5t@ 10096b7c main.cpp.obj - 0002:00001ba0 ??_C@_0BK@HPKDDDJN@NP_EnableSpellStartEvents@ 10096ba0 main.cpp.obj - 0002:00001bbc ??_C@_0CC@DAAAFBCJ@Set?5NP_EnableSpellStartEvents?5t@ 10096bbc main.cpp.obj - 0002:00001be0 ??_C@_0BH@DBJNDJCK@NP_EnableSpellGoEvents@ 10096be0 main.cpp.obj - 0002:00001bf8 ??_C@_0BP@HABICIHH@Set?5NP_EnableSpellGoEvents?5to?5@ 10096bf8 main.cpp.obj - 0002:00001c18 ??_C@_0BJ@OPDINFN@NP_EnableSpellHealEvents@ 10096c18 main.cpp.obj - 0002:00001c34 ??_C@_0CB@CKCADEOG@Set?5NP_EnableSpellHealEvents?5to@ 10096c34 main.cpp.obj - 0002:00001c58 ??_C@_0BN@DLFLANCE@NP_EnableSpellEnergizeEvents@ 10096c58 main.cpp.obj - 0002:00001c78 ??_C@_0CF@HJHLFECN@Set?5NP_EnableSpellEnergizeEvent@ 10096c78 main.cpp.obj - 0002:00001ca0 ??_C@_0CB@CLDKJOLH@NP_PreventMountingWhenBuffCappe@ 10096ca0 main.cpp.obj - 0002:00001cc4 ??_C@_0CJ@KNLLLEIG@Set?5NP_PreventMountingWhenBuffC@ 10096cc4 main.cpp.obj - 0002:00001cf0 ??_C@_0BD@KEENKIJP@NP_MinBufferTimeMs@ 10096cf0 main.cpp.obj - 0002:00001d04 ??_C@_0CO@NIJCIBCJ@Set?5NP_MinBufferTimeMs?5and?5curr@ 10096d04 main.cpp.obj - 0002:00001d34 ??_C@_0BG@LLHBJGHN@NP_NonGcdBufferTimeMs@ 10096d34 main.cpp.obj - 0002:00001d4c ??_C@_0BO@BEDCEPJD@Set?5NP_NonGcdBufferTimeMs?5to?5@ 10096d4c main.cpp.obj - 0002:00001d6c ??_C@_0BH@MKMOFKHN@NP_MaxBufferIncreaseMs@ 10096d6c main.cpp.obj - 0002:00001d84 ??_C@_0BP@NHKKEPBG@Set?5NP_MaxBufferIncreaseMs?5to?5@ 10096d84 main.cpp.obj - 0002:00001da4 ??_C@_0BG@HPCNJHHL@NP_SpellQueueWindowMs@ 10096da4 main.cpp.obj - 0002:00001dbc ??_C@_0BO@LKJMGOIJ@Set?5NP_SpellQueueWindowMs?5to?5@ 10096dbc main.cpp.obj - 0002:00001ddc ??_C@_0BL@KOCNOCFF@NP_OnSwingBufferCooldownMs@ 10096ddc main.cpp.obj - 0002:00001df8 ??_C@_0CD@BOIHNHHB@Set?5NP_OnSwingBufferCooldownMs?5@ 10096df8 main.cpp.obj - 0002:00001e1c ??_C@_0BI@LPMHBLBF@NP_ChannelQueueWindowMs@ 10096e1c main.cpp.obj - 0002:00001e34 ??_C@_0CA@PAGBAGHM@Set?5NP_ChannelQueueWindowMs?5to?5@ 10096e34 main.cpp.obj - 0002:00001e54 ??_C@_0BK@KEKPPKMD@NP_TargetingQueueWindowMs@ 10096e54 main.cpp.obj - 0002:00001e70 ??_C@_0CC@DIBIMACH@Set?5NP_TargetingQueueWindowMs?5t@ 10096e70 main.cpp.obj - 0002:00001e94 ??_C@_0BJ@EPEDEFB@NP_CooldownQueueWindowMs@ 10096e94 main.cpp.obj - 0002:00001eb0 ??_C@_0CB@FONDBBI@Set?5NP_CooldownQueueWindowMs?5to@ 10096eb0 main.cpp.obj - 0002:00001ed4 ??_C@_0CF@LNIPLOJI@NP_ChannelLatencyReductionPerce@ 10096ed4 main.cpp.obj - 0002:00001efc ??_C@_0CN@EINCDKGL@Set?5NP_ChannelLatencyReductionP@ 10096efc main.cpp.obj - 0002:00001f2c ??_C@_0BF@NPNCLNJG@NP_NameplateDistance@ 10096f2c main.cpp.obj - 0002:00001f44 ??_C@_0BN@EGLOHIBD@Set?5NP_NameplateDistance?5to?5@ 10096f44 main.cpp.obj - 0002:00001f68 ??_7?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@6B@ 10096f68 main.cpp.obj - 0002:00001fb8 ??_C@_03PEOPGAMG@NP_@ 10096fb8 main.cpp.obj - 0002:00001fbc ??_C@_0BJ@HNOEHODG@Using?5default?5value?5for?5@ 10096fbc main.cpp.obj - 0002:00001fd8 ??_C@_04IOBBKNGP@Logs@ 10096fd8 main.cpp.obj - 0002:00001fe0 ??_C@_0BD@FEPMOMFL@nampower_debug?4log@ 10096fe0 main.cpp.obj - 0002:00001ff4 ??_C@_0BI@LDBODINK@Logs?2nampower_debug?4log@ 10096ff4 main.cpp.obj - 0002:0000200c ??_C@_0BF@EHNBCGI@nampower_debug?4log?41@ 1009700c main.cpp.obj - 0002:00002024 ??_C@_0BK@KHFLEKEN@Logs?2nampower_debug?4log?41@ 10097024 main.cpp.obj - 0002:00002040 ??_C@_0BF@CPFAEBKL@nampower_debug?4log?42@ 10097040 main.cpp.obj - 0002:00002058 ??_C@_0BK@IMHGBJIO@Logs?2nampower_debug?4log?42@ 10097058 main.cpp.obj - 0002:00002074 ??_C@_0BF@DGELHAOK@nampower_debug?4log?43@ 10097074 main.cpp.obj - 0002:0000208c ??_C@_0BK@JFGNCIMP@Logs?2nampower_debug?4log?43@ 1009708c main.cpp.obj - 0002:000020a8 ??_C@_01LFCBOECM@?4@ 100970a8 main.cpp.obj - 0002:000020ac ??_C@_0BD@BPOEFIKN@Loading?5nampower?5v@ 100970ac main.cpp.obj - 0002:000020c0 ??_C@_0BK@INOGODLN@Registering?1Loading?5CVars@ 100970c0 main.cpp.obj - 0002:000020dc ??_C@_0BI@JDKNJGGE@NP_FelguardAutocastData@ 100970dc main.cpp.obj - 0002:000020f4 ??_C@_0BJ@MKNOLCCP@NP_DoomguardAutocastData@ 100970f4 main.cpp.obj - 0002:00002110 ??_C@_0CF@IALCIHCG@?$DN?$DN?$DN?5Starting?5hook?5initializatio@ 10097110 main.cpp.obj - 0002:00002138 ??_C@_0CL@MJPJAFAM@?$DN?$DN?$DN?5All?5hooks?5initialized?5succe@ 10097138 main.cpp.obj - 0002:00002164 ??_C@_01CLKCMJKC@?5@ 10097164 main.cpp.obj - 0002:00002168 ??_C@_0BJ@DDBOIFAJ@Added?5custom?5event?5code?3@ 10097168 main.cpp.obj - 0002:00002184 ??_C@_0BC@IIJKILOC@SPELL_QUEUE_EVENT@ 10097184 main.cpp.obj - 0002:00002198 ??_C@_0BB@INAPBEKM@SPELL_CAST_EVENT@ 10097198 main.cpp.obj - 0002:000021ac ??_C@_0BI@IIEOEKLK@SPELL_DAMAGE_EVENT_SELF@ 100971ac main.cpp.obj - 0002:000021c4 ??_C@_0BJ@HABHONC@SPELL_DAMAGE_EVENT_OTHER@ 100971c4 main.cpp.obj - 0002:000021e0 ??_C@_0BC@FNMHDFMM@DEBUFF_ADDED_SELF@ 100971e0 main.cpp.obj - 0002:000021f4 ??_C@_0BE@IPCENOKC@DEBUFF_REMOVED_SELF@ 100971f4 main.cpp.obj - 0002:00002208 ??_C@_0BD@LOLCCDKE@DEBUFF_ADDED_OTHER@ 10097208 main.cpp.obj - 0002:0000221c ??_C@_0BF@BEGKIMBA@DEBUFF_REMOVED_OTHER@ 1009721c main.cpp.obj - 0002:00002234 ??_C@_0BA@MOKKJPMK@BUFF_ADDED_SELF@ 10097234 main.cpp.obj - 0002:00002244 ??_C@_0BC@OPHNKALP@BUFF_REMOVED_SELF@ 10097244 main.cpp.obj - 0002:00002258 ??_C@_0BB@FHECOLDL@BUFF_ADDED_OTHER@ 10097258 main.cpp.obj - 0002:0000226c ??_C@_0BD@HHAMLJLH@BUFF_REMOVED_OTHER@ 1009726c main.cpp.obj - 0002:00002280 ??_C@_09OAKDIAEE@UNIT_DIED@ 10097280 main.cpp.obj - 0002:0000228c ??_C@_0BC@HMKGCEPB@AURA_CAST_ON_SELF@ 1009728c main.cpp.obj - 0002:000022a0 ??_C@_0BD@OGPLAOKE@AURA_CAST_ON_OTHER@ 100972a0 main.cpp.obj - 0002:000022b4 ??_C@_0BB@GJGJCOEG@AUTO_ATTACK_SELF@ 100972b4 main.cpp.obj - 0002:000022c8 ??_C@_0BC@LDOLOHIB@AUTO_ATTACK_OTHER@ 100972c8 main.cpp.obj - 0002:000022dc ??_C@_0BB@LFPNKHHB@SPELL_START_SELF@ 100972dc main.cpp.obj - 0002:000022f0 ??_C@_0BC@LIKNGAH@SPELL_START_OTHER@ 100972f0 main.cpp.obj - 0002:00002304 ??_C@_0O@EBECIIDL@SPELL_GO_SELF@ 10097304 main.cpp.obj - 0002:00002314 ??_C@_0P@JNHHMBKG@SPELL_GO_OTHER@ 10097314 main.cpp.obj - 0002:00002324 ??_C@_0BC@IAGOOOHI@SPELL_FAILED_SELF@ 10097324 main.cpp.obj - 0002:00002338 ??_C@_0BD@HCGDPNOK@SPELL_FAILED_OTHER@ 10097338 main.cpp.obj - 0002:0000234c ??_C@_0BD@BEPEMHGP@SPELL_DELAYED_SELF@ 1009734c main.cpp.obj - 0002:00002360 ??_C@_0BE@PBCEOCAE@SPELL_DELAYED_OTHER@ 10097360 main.cpp.obj - 0002:00002374 ??_C@_0BE@IOCKMDKP@SPELL_CHANNEL_START@ 10097374 main.cpp.obj - 0002:00002388 ??_C@_0BF@LJOECPNH@SPELL_CHANNEL_UPDATE@ 10097388 main.cpp.obj - 0002:000023a0 ??_C@_0BD@MPPCDFLO@SPELL_HEAL_BY_SELF@ 100973a0 main.cpp.obj - 0002:000023b4 ??_C@_0BE@CLAGLE@SPELL_HEAL_BY_OTHER@ 100973b4 main.cpp.obj - 0002:000023c8 ??_C@_0BD@PGIOICCP@SPELL_HEAL_ON_SELF@ 100973c8 main.cpp.obj - 0002:000023dc ??_C@_0BH@FKIAPLHB@SPELL_ENERGIZE_BY_SELF@ 100973dc main.cpp.obj - 0002:000023f4 ??_C@_0BI@LGFKLFL@SPELL_ENERGIZE_BY_OTHER@ 100973f4 main.cpp.obj - 0002:0000240c ??_C@_0BH@GDPMEMOA@SPELL_ENERGIZE_ON_SELF@ 1009740c main.cpp.obj - 0002:00002424 ??_C@_0BK@LABCOB@BUFF_UPDATE_DURATION_SELF@ 10097424 main.cpp.obj - 0002:00002440 ??_C@_0BM@OJOKLDBP@DEBUFF_UPDATE_DURATION_SELF@ 10097440 main.cpp.obj - 0002:0000245c ??_C@_0BA@GBKNELAD@SPELL_MISS_SELF@ 1009745c main.cpp.obj - 0002:0000246c ??_C@_0BB@LFFFJGPL@SPELL_MISS_OTHER@ 1009746c main.cpp.obj - 0002:00002480 ??_C@_0BB@IBMHAJAM@UNIT_COMBAT_GUID@ 10097480 main.cpp.obj - 0002:00002494 ??_C@_0BG@EEJJBMGL@UNIT_NAME_UPDATE_GUID@ 10097494 main.cpp.obj - 0002:000024ac ??_C@_0BK@HFCILLKB@UNIT_PORTRAIT_UPDATE_GUID@ 100974ac main.cpp.obj - 0002:000024c8 ??_C@_0BI@BNJDINBF@UNIT_MODEL_CHANGED_GUID@ 100974c8 main.cpp.obj - 0002:000024e0 ??_C@_0BM@BPKDJDMK@UNIT_INVENTORY_CHANGED_GUID@ 100974e0 main.cpp.obj - 0002:000024fc ??_C@_0O@CDAGPNCP@UNIT_PET_GUID@ 100974fc main.cpp.obj - 0002:0000250c ??_C@_0BB@FECBAHGP@UNIT_HEALTH_GUID@ 1009750c main.cpp.obj - 0002:00002520 ??_C@_0P@INHDBPOB@UNIT_MANA_GUID@ 10097520 main.cpp.obj - 0002:00002530 ??_C@_0P@LANGPKLM@UNIT_RAGE_GUID@ 10097530 main.cpp.obj - 0002:00002540 ??_C@_0BB@LHNLBJOO@UNIT_ENERGY_GUID@ 10097540 main.cpp.obj - 0002:00002554 ??_C@_0BA@KMIOLEEG@UNIT_FLAGS_GUID@ 10097554 main.cpp.obj - 0002:00002564 ??_C@_0P@ENHHMIHG@UNIT_AURA_GUID@ 10097564 main.cpp.obj - 0002:00002574 ??_C@_0BI@OEJBNCMD@UNIT_DYNAMIC_FLAGS_GUID@ 10097574 main.cpp.obj - 0002:0000258c ??_C@_0BJ@OKKIPLGF@PLAYER_GUILD_UPDATE_GUID@ 1009758c main.cpp.obj - 0002:000025a8 ??_C@_08GNEEABI@KEY_DOWN@ 100975a8 main.cpp.obj - 0002:000025b4 ??_C@_06NKLJJJM@KEY_UP@ 100975b4 main.cpp.obj - 0002:000025bc ??_C@_07NFDODHAI@?5to?5700@ 100975bc main.cpp.obj - 0002:000025c4 ??_C@_0BN@PFEPHOAH@Increasing?5event?5count?5from?5@ 100975c4 main.cpp.obj - 0002:000025e4 ??_C@_0CB@KNPGGJME@Registering?5Custom?5Lua?5function@ 100975e4 main.cpp.obj - 0002:00002608 ??_C@_0BB@COEIEDHD@QueueSpellByName@ 10097608 main.cpp.obj - 0002:0000261c ??_C@_0BH@EFPAODGH@CastSpellByNameNoQueue@ 1009761c main.cpp.obj - 0002:00002634 ??_C@_0BB@HKEDLMIG@CastSpellNoQueue@ 10097634 main.cpp.obj - 0002:00002648 ??_C@_0M@PPLDGHGJ@QueueScript@ 10097648 main.cpp.obj - 0002:00002654 ??_C@_0P@EEAKKLOD@IsSpellInRange@ 10097654 main.cpp.obj - 0002:00002664 ??_C@_0O@OJOODJBA@IsSpellUsable@ 10097664 main.cpp.obj - 0002:00002674 ??_C@_0BG@LHDLCFEE@GetCurrentCastingInfo@ 10097674 main.cpp.obj - 0002:0000268c ??_C@_0BC@NFIAGJCO@GetSpellIdForName@ 1009768c main.cpp.obj - 0002:000026a0 ??_C@_0BJ@OIEGKLKO@GetSpellNameAndRankForId@ 100976a0 main.cpp.obj - 0002:000026bc ??_C@_0BK@PJJFEGPC@GetSpellSlotTypeIdForName@ 100976bc main.cpp.obj - 0002:000026d8 ??_C@_0BL@MFCJKIGL@ChannelStopCastingNextTick@ 100976d8 main.cpp.obj - 0002:000026f4 ??_C@_0BD@GKGGEBFB@GetNampowerVersion@ 100976f4 main.cpp.obj - 0002:00002708 ??_C@_0N@JDLNMJKE@GetItemLevel@ 10097708 main.cpp.obj - 0002:00002718 ??_C@_0N@CBMNGPCH@GetItemStats@ 10097718 main.cpp.obj - 0002:00002728 ??_C@_0BA@OKINMLMF@StartItemExport@ 10097728 main.cpp.obj - 0002:00002738 ??_C@_0M@GCMNFEPN@GetSpellRec@ 10097738 main.cpp.obj - 0002:00002744 ??_C@_0BC@EMLGDCK@GetItemStatsField@ 10097744 main.cpp.obj - 0002:00002758 ??_C@_0BB@DLPAGHLE@GetSpellRecField@ 10097758 main.cpp.obj - 0002:0000276c ??_C@_0M@GMDOHMKD@GetUnitData@ 1009776c main.cpp.obj - 0002:00002778 ??_C@_0N@NDOHCLOO@GetUnitField@ 10097778 main.cpp.obj - 0002:00002788 ??_C@_0BC@OJJLHCMM@GetSpellModifiers@ 10097788 main.cpp.obj - 0002:0000279c ??_C@_0BD@JFAGNKGG@FindPlayerItemSlot@ 1009779c main.cpp.obj - 0002:000027b0 ??_C@_0BB@DMAMHCNP@GetEquippedItems@ 100977b0 main.cpp.obj - 0002:000027c4 ??_C@_0BA@MGJKCOKC@GetEquippedItem@ 100977c4 main.cpp.obj - 0002:000027d4 ??_C@_0M@NACEOJGE@GetBagItems@ 100977d4 main.cpp.obj - 0002:000027e0 ??_C@_0L@INPDLDGD@GetBagItem@ 100977e0 main.cpp.obj - 0002:000027ec ??_C@_0M@IILIBIAD@GetCastInfo@ 100977ec main.cpp.obj - 0002:000027f8 ??_C@_0BD@FMMMOHBG@GetSpellIdCooldown@ 100977f8 main.cpp.obj - 0002:0000280c ??_C@_0BC@JJBCKJPB@GetItemIdCooldown@ 1009780c main.cpp.obj - 0002:00002820 ??_C@_0BD@JMKKPPOD@GetTrinketCooldown@ 10097820 main.cpp.obj - 0002:00002834 ??_C@_0BA@EIDAGHKD@UseItemIdOrName@ 10097834 main.cpp.obj - 0002:00002844 ??_C@_0L@NMBBKLLO@UseTrinket@ 10097844 main.cpp.obj - 0002:00002850 ??_C@_0M@EGBLDCCI@GetTrinkets@ 10097850 main.cpp.obj - 0002:0000285c ??_C@_0O@JMOODDHF@DisenchantAll@ 1009785c main.cpp.obj - 0002:0000286c ??_C@_0BD@CIKGFBEL@GetItemIconTexture@ 1009786c main.cpp.obj - 0002:00002880 ??_C@_0BE@BGANPINO@GetSpellIconTexture@ 10097880 main.cpp.obj - 0002:00002894 ??_C@_0BG@NHHLBJIB@GetPlayerAuraDuration@ 10097894 main.cpp.obj - 0002:000028ac ??_C@_0BF@JCGGDHDN@CancelPlayerAuraSlot@ 100978ac main.cpp.obj - 0002:000028c4 ??_C@_0BI@EGDKELMA@CancelPlayerAuraSpellId@ 100978c4 main.cpp.obj - 0002:000028dc ??_C@_0O@EGACADAN@GetSpellPower@ 100978dc main.cpp.obj - 0002:000028ec ??_C@_0BB@GJJOHFMI@GetSpellDuration@ 100978ec main.cpp.obj - 0002:00002900 ??_C@_0BA@HLJFEPBF@LearnTalentRank@ 10097900 main.cpp.obj - 0002:00002910 ??_C@_0P@GNPNONPK@PlayerIsMoving@ 10097910 main.cpp.obj - 0002:00002920 ??_C@_0P@BEJAMHEO@PlayerIsRooted@ 10097920 main.cpp.obj - 0002:00002930 ??_C@_0BB@DODJPBOK@PlayerIsSwimming@ 10097930 main.cpp.obj - 0002:00002944 ??_C@_0BB@ICFMFGMO@SetMouseoverUnit@ 10097944 main.cpp.obj - 0002:00002958 ??_C@_0M@JAJHMPKB@GetUnitGUID@ 10097958 main.cpp.obj - 0002:00002964 ??_C@_0N@GJHOCJAI@IsAuraHidden@ 10097964 main.cpp.obj - 0002:00002978 ??_7?$PatchDetour@P6IXXZPAX@hadesmem@@6B@ 10097978 main.cpp.obj - 0002:000029c8 ??_C@_0CA@CBNOLNBD@Exception?5in?5Nampower?3?3load?$CI?$CJ?3?5@ 100979c8 main.cpp.obj - 0002:000029e8 ??_C@_0P@NAFFIKBA@Nampower?5Error@ 100979e8 main.cpp.obj - 0002:000029f8 ??_C@_0CG@PNCMOHNE@Unknown?5exception?5in?5Nampower?3?3@ 100979f8 main.cpp.obj - 0002:00002a20 ??_C@_0BK@DKOOEMML@Restoring?5original?5bytes?4@ 10097a20 main.cpp.obj - 0002:00002a40 ??_C@_0EE@CMAMOMOO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10097a40 main.cpp.obj - 0002:00002a84 ??_C@_0BG@LCAOCHAL@Writing?5jump?5to?5stub?4@ 10097a84 main.cpp.obj - 0002:00002aa0 ??_C@_0ED@FNJJIMJO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10097aa0 main.cpp.obj - 0002:00002ae4 ??_C@_0L@NBAFHLHH@Stub?5near?4@ 10097ae4 main.cpp.obj - 0002:00002af0 ??_C@_0EF@HPLFPOCH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10097af0 main.cpp.obj - 0002:00002b38 ??_C@_0EI@IEHKJNFE@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10097b38 main.cpp.obj - 0002:00002b80 ??_C@_0M@GFKJMBMN@operator?5?$CI?$CJ@ 10097b80 main.cpp.obj - 0002:00002b90 ??_C@_0FH@PGJHJNK@C?3?2software?2hadesmem?9v142?9Relea@ 10097b90 main.cpp.obj - 0002:00002be8 ??_C@_0BK@NOAOGKJA@Unknown?5instruction?5size?4@ 10097be8 main.cpp.obj - 0002:00002c04 ??_C@_0DG@JEMBOIJP@This?5?$DN?5?$CFp?0?5Target?5?$DN?5?$CFp?0?5Detour?5@ 10097c04 main.cpp.obj - 0002:00002c3c ??_C@_0DO@BDGDLPLM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10097c3c main.cpp.obj - 0002:00002c7c ??_C@_05KHOEDHDN@Apply@ 10097c7c main.cpp.obj - 0002:00002c84 ??_C@_0BE@FPCEIMCK@Disassembly?5failed?4@ 10097c84 main.cpp.obj - 0002:00002c98 ??_C@_08LMIDJNHP@Invalid?4@ 10097c98 main.cpp.obj - 0002:00002ca4 ??_C@_09CGOPAKAI@?$CFs?4?5?$FL?$CFs?$FN?4@ 10097ca4 main.cpp.obj - 0002:00002cb0 ??_C@_0BM@LBDNLCLP@Operand?1offset?5size?5is?5?$CFhu?4@ 10097cb0 main.cpp.obj - 0002:00002ccc ??_C@_0BH@BFFFOFOC@Jump?1call?5target?5?$DN?5?$CFp?4@ 10097ccc main.cpp.obj - 0002:00002ce4 ??_C@_0BH@LEKNPHHB@Writing?5resolved?5jump?4@ 10097ce4 main.cpp.obj - 0002:00002cfc ??_C@_0BH@KLECKKIK@Writing?5resolved?5call?4@ 10097cfc main.cpp.obj - 0002:00002d14 ??_C@_0CE@JLFHLNDK@Writing?5jump?5back?5to?5original?5c@ 10097d14 main.cpp.obj - 0002:00002d38 ??_C@_0EN@DGGOEDLL@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 10097d38 main.cpp.obj - 0002:00002d88 ??_C@_0EM@OFOCKEIK@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 10097d88 main.cpp.obj - 0002:00002dd8 ??_C@_0EO@GEKODJPD@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 10097dd8 main.cpp.obj - 0002:00002e28 ??_C@_0FB@CEIIMG@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 10097e28 main.cpp.obj - 0002:00002e80 ??_C@_0EH@NEPCCDBP@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 10097e80 main.cpp.obj - 0002:00002ec8 ??_C@_07CLEOFAGA@Cleanup@ 10097ec8 main.cpp.obj - 0002:00002ed0 ??_C@_0FI@HFJICEID@C?3?2software?2hadesmem?9v142?9Relea@ 10097ed0 main.cpp.obj - 0002:00002f28 ??_C@_0BM@KIILNFBE@SmartHandle?5cleanup?5failed?4@ 10097f28 main.cpp.obj - 0002:00002f48 ??_7?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 10097f48 main.cpp.obj - 0002:00002f74 ??_C@_02BBAHNLBA@?$CFp@ 10097f74 main.cpp.obj - 0002:00002f7c ??_7?$numpunct@D@std@@6B@ 10097f7c main.cpp.obj - 0002:00002fa0 ??_7?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@6B@ 10097fa0 main.cpp.obj - 0002:00002ff4 ??_7?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@6B@ 10097ff4 main.cpp.obj - 0002:00003048 ??_7?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@6B@ 10098048 main.cpp.obj - 0002:0000309c ??_7?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@6B@ 1009809c main.cpp.obj - 0002:000030f0 ??_7?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@6B@ 100980f0 main.cpp.obj - 0002:00003144 ??_7?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@6B@ 10098144 main.cpp.obj - 0002:00003198 ??_7?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@6B@ 10098198 main.cpp.obj - 0002:000031ec ??_7?$PatchDetour@P6IXI@ZPAX@hadesmem@@6B@ 100981ec main.cpp.obj - 0002:00003240 ??_7?$PatchDetour@P6IXEH@ZPAX@hadesmem@@6B@ 10098240 main.cpp.obj - 0002:00003294 ??_7?$PatchDetour@P6IX_K@ZPAX@hadesmem@@6B@ 10098294 main.cpp.obj - 0002:000032e8 ??_7?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@6B@ 100982e8 main.cpp.obj - 0002:0000333c ??_7?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@6B@ 1009833c main.cpp.obj - 0002:00003390 ??_7?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@6B@ 10098390 main.cpp.obj - 0002:000033e4 ??_7?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100983e4 main.cpp.obj - 0002:00003438 ??_7?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 10098438 main.cpp.obj - 0002:0000348c ??_7?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 1009848c main.cpp.obj - 0002:000034e0 ??_7?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@6B@ 100984e0 main.cpp.obj - 0002:00003534 ??_7?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@6B@ 10098534 main.cpp.obj - 0002:00003588 ??_7?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@6B@ 10098588 main.cpp.obj - 0002:000035dc ??_7?$PatchDetour@P6IH_K@ZPAX@hadesmem@@6B@ 100985dc main.cpp.obj - 0002:00003630 ??_7?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@6B@ 10098630 main.cpp.obj - 0002:00003684 ??_7?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 10098684 main.cpp.obj - 0002:000036d8 ??_7?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@6B@ 100986d8 main.cpp.obj - 0002:0000372c ??_7?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@6B@ 1009872c main.cpp.obj - 0002:00003780 ??_7?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@6B@ 10098780 main.cpp.obj - 0002:000037d4 ??_7?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@6B@ 100987d4 main.cpp.obj - 0002:00003828 ??_7?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@6B@ 10098828 main.cpp.obj - 0002:0000387c ??_7?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@6B@ 1009887c main.cpp.obj - 0002:000038d0 ??_7?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@6B@ 100988d0 main.cpp.obj - 0002:00003924 ??_7?$PatchDetour@P6IXHI@ZPAX@hadesmem@@6B@ 10098924 main.cpp.obj - 0002:00003978 ??_7?$PatchDetour@P6GXXZPAX@hadesmem@@6B@ 10098978 main.cpp.obj - 0002:000039c8 ??_C@_0FJ@CKOLAMMN@hadesmem?3?3detail?3?3SmartHandleIm@ 100989c8 main.cpp.obj - 0002:00003a28 ??_C@_0FL@DOKMKPPP@hadesmem?3?3detail?3?3SmartHandleIm@ 10098a28 main.cpp.obj - 0002:00003a88 ??_C@_0ED@JCILNKDP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 10098a88 main.cpp.obj - 0002:00003ad0 ??_C@_0EC@NBLPENOM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 10098ad0 main.cpp.obj - 0002:00003b18 ??_C@_0EE@IONPJLFD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 10098b18 main.cpp.obj - 0002:00003b60 ??_C@_0EH@GCGPEKIN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 10098b60 main.cpp.obj - 0002:00003ba8 ??_C@_0DN@HCDNLHCD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 10098ba8 main.cpp.obj - 0002:00003be8 ??_C@_0FA@GGFAPFCJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098be8 main.cpp.obj - 0002:00003c38 ??_C@_0EP@NOCFAKPK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098c38 main.cpp.obj - 0002:00003c88 ??_C@_0FB@HKPPPFCN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098c88 main.cpp.obj - 0002:00003ce0 ??_C@_0FE@PMBAGJMC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098ce0 main.cpp.obj - 0002:00003d38 ??_C@_0EK@IODNOJBC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098d38 main.cpp.obj - 0002:00003d88 ??_C@_0FK@DHPECJNJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098d88 main.cpp.obj - 0002:00003de8 ??_C@_0FJ@KEPJMAML@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098de8 main.cpp.obj - 0002:00003e48 ??_C@_0FL@MHBDKDON@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098e48 main.cpp.obj - 0002:00003ea8 ??_C@_0FO@CIOCKLLO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098ea8 main.cpp.obj - 0002:00003f08 ??_C@_0FE@OCCPBJAI@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098f08 main.cpp.obj - 0002:00003f60 ??_C@_0GB@CMIPBGLM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098f60 main.cpp.obj - 0002:00003fc8 ??_C@_0GA@NOGDNOJO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10098fc8 main.cpp.obj - 0002:00004028 ??_C@_0GC@PKNAENAF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099028 main.cpp.obj - 0002:00004090 ??_C@_0GF@ENIDGHPD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099090 main.cpp.obj - 0002:000040f8 ??_C@_0FL@MEMFFBCH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100990f8 main.cpp.obj - 0002:00004158 ??_C@_0IE@MPIDPNEO@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 10099158 main.cpp.obj - 0002:000041e0 ??_C@_0ID@LBIDDOBG@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 100991e0 main.cpp.obj - 0002:00004268 ??_C@_0IF@KJIANCNO@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 10099268 main.cpp.obj - 0002:000042f0 ??_C@_0II@FBONHKFA@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 100992f0 main.cpp.obj - 0002:00004378 ??_C@_0HO@FGBNGFMK@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 10099378 main.cpp.obj - 0002:000043f8 ??_C@_0FN@COKBPBGB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100993f8 main.cpp.obj - 0002:00004458 ??_C@_0FM@JNBHAJFN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099458 main.cpp.obj - 0002:000044b8 ??_C@_0FO@CLAMNIL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100994b8 main.cpp.obj - 0002:00004518 ??_C@_0GB@NABJKIJC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099518 main.cpp.obj - 0002:00004580 ??_C@_0FH@MGHHMICM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099580 main.cpp.obj - 0002:000045d8 ??_C@_0GE@LHOMILHH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100995d8 main.cpp.obj - 0002:00004640 ??_C@_0GD@NJDMKFFO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099640 main.cpp.obj - 0002:000046a8 ??_C@_0GF@PGPNDFKA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100996a8 main.cpp.obj - 0002:00004710 ??_C@_0GI@DAAJFHPP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099710 main.cpp.obj - 0002:00004778 ??_C@_0FO@PNFCAMCC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099778 main.cpp.obj - 0002:000047d8 ??_C@_0HE@KIIMFCKG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100997d8 main.cpp.obj - 0002:00004850 ??_C@_0HD@GDGGBKIN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099850 main.cpp.obj - 0002:000048c8 ??_C@_0HF@HDGLHDL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100998c8 main.cpp.obj - 0002:00004940 ??_C@_0HI@MEEMOBOO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099940 main.cpp.obj - 0002:000049b8 ??_C@_0GO@CMGODEII@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100999b8 main.cpp.obj - 0002:00004a28 ??_C@_0EP@MGMDIOMN@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 10099a28 main.cpp.obj - 0002:00004a78 ??_C@_0EO@EHLMJGBK@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 10099a78 main.cpp.obj - 0002:00004ac8 ??_C@_0FA@NNDIEADH@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 10099ac8 main.cpp.obj - 0002:00004b18 ??_C@_0FD@HBBDECCN@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 10099b18 main.cpp.obj - 0002:00004b70 ??_C@_0EJ@GALGJHOJ@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 10099b70 main.cpp.obj - 0002:00004bc0 ??_C@_0IP@NMBMNIFG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099bc0 main.cpp.obj - 0002:00004c50 ??_C@_0IO@ECDOHAAO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099c50 main.cpp.obj - 0002:00004ce0 ??_C@_0JA@LKPPNFKN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099ce0 main.cpp.obj - 0002:00004d70 ??_C@_0JD@IIKBFGCA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099d70 main.cpp.obj - 0002:00004e08 ??_C@_0IJ@KIKGLEPM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 10099e08 main.cpp.obj - 0002:00004e98 ??_C@_0FG@CLOAKDIP@hadesmem?3?3PatchDetour?$DMunsigned?5@ 10099e98 main.cpp.obj - 0002:00004ef0 ??_C@_0FF@NMBCPEJK@hadesmem?3?3PatchDetour?$DMunsigned?5@ 10099ef0 main.cpp.obj - 0002:00004f48 ??_C@_0FH@EFAHEDKG@hadesmem?3?3PatchDetour?$DMunsigned?5@ 10099f48 main.cpp.obj - 0002:00004fa0 ??_C@_0FK@BAIJOOIM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 10099fa0 main.cpp.obj - 0002:00005000 ??_C@_0FA@FNDKAGCN@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009a000 main.cpp.obj - 0002:00005050 ??_C@_0EP@CMBHHAFN@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009a050 main.cpp.obj - 0002:000050a0 ??_C@_0EO@EGAFDPJO@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009a0a0 main.cpp.obj - 0002:000050f0 ??_C@_0FA@CNNNAHIN@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009a0f0 main.cpp.obj - 0002:00005140 ??_C@_0FD@NGICPGCO@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009a140 main.cpp.obj - 0002:00005198 ??_C@_0EJ@BHJFEBKJ@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009a198 main.cpp.obj - 0002:000051e8 ??_C@_0GJ@FBMDGMBA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009a1e8 main.cpp.obj - 0002:00005258 ??_C@_0GI@JFIHMDBB@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009a258 main.cpp.obj - 0002:000052c0 ??_C@_0GK@CFMNOOLM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009a2c0 main.cpp.obj - 0002:00005330 ??_C@_0GN@GBCACBEA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009a330 main.cpp.obj - 0002:000053a0 ??_C@_0GD@HFBIACGA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009a3a0 main.cpp.obj - 0002:00005408 ??_C@_0EO@EHOAFBKP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009a408 main.cpp.obj - 0002:00005458 ??_C@_0EN@NKHFDJMO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009a458 main.cpp.obj - 0002:000054a8 ??_C@_0EP@HOAFGDJM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009a4a8 main.cpp.obj - 0002:000054f8 ??_C@_0FC@ECPPMLHP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009a4f8 main.cpp.obj - 0002:00005550 ??_C@_0EI@NIFCFMJK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009a550 main.cpp.obj - 0002:00005598 ??_C@_0HA@OBNHLGJL@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009a598 main.cpp.obj - 0002:00005608 ??_C@_0GP@FBMFGKGL@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009a608 main.cpp.obj - 0002:00005678 ??_C@_0HB@FPBHKAMO@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009a678 main.cpp.obj - 0002:000056f0 ??_C@_0HE@DOKJMEEF@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009a6f0 main.cpp.obj - 0002:00005768 ??_C@_0GK@OBCFALJF@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009a768 main.cpp.obj - 0002:000057d8 ??_C@_0GJ@DKOBECBA@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009a7d8 main.cpp.obj - 0002:00005848 ??_C@_0GI@NMPIDHEB@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009a848 main.cpp.obj - 0002:000058b0 ??_C@_0GK@CFKGMMJC@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009a8b0 main.cpp.obj - 0002:00005920 ??_C@_0GN@COCBLEFK@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009a920 main.cpp.obj - 0002:00005990 ??_C@_0GD@LGHOPJLB@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009a990 main.cpp.obj - 0002:000059f8 ??_C@_0IC@FJDBMJMP@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009a9f8 main.cpp.obj - 0002:00005a80 ??_C@_0IB@KBPDBFM@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009aa80 main.cpp.obj - 0002:00005b08 ??_C@_0ID@DDKJNDFM@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009ab08 main.cpp.obj - 0002:00005b90 ??_C@_0IG@OIPFBMAJ@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009ab90 main.cpp.obj - 0002:00005c18 ??_C@_0HM@JJIDEBIB@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009ac18 main.cpp.obj - 0002:00005c98 ??_C@_0GK@EOGIHJKJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ac98 main.cpp.obj - 0002:00005d08 ??_C@_0GJ@OEBBBEMC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ad08 main.cpp.obj - 0002:00005d78 ??_C@_0GL@JHGPEOIB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ad78 main.cpp.obj - 0002:00005de8 ??_C@_0GO@NLEMCJBM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ade8 main.cpp.obj - 0002:00005e58 ??_C@_0GE@KOJFDDGH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ae58 main.cpp.obj - 0002:00005ec0 ??_C@_0FE@OMCNLAAC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009aec0 main.cpp.obj - 0002:00005f18 ??_C@_0FD@MGKJMNOB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009af18 main.cpp.obj - 0002:00005f70 ??_C@_0FF@NGMJHBCI@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009af70 main.cpp.obj - 0002:00005fc8 ??_C@_0FI@GKIOGDFD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009afc8 main.cpp.obj - 0002:00006020 ??_C@_0EO@BGCEFFKG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b020 main.cpp.obj - 0002:00006070 ??_C@_0GP@DKFIDIIB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b070 main.cpp.obj - 0002:000060e0 ??_C@_0GO@GFICKGEB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b0e0 main.cpp.obj - 0002:00006150 ??_C@_0HA@KCKONGDK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b150 main.cpp.obj - 0002:000061c0 ??_C@_0HD@EHLMMKOM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b1c0 main.cpp.obj - 0002:00006238 ??_C@_0GJ@EAIACKBB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b238 main.cpp.obj - 0002:000062a8 ??_C@_0GH@BBHBKCOP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b2a8 main.cpp.obj - 0002:00006310 ??_C@_0GG@PIECFKPL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b310 main.cpp.obj - 0002:00006378 ??_C@_0GI@IIPLDPP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b378 main.cpp.obj - 0002:000063e0 ??_C@_0GL@IEDLBBFB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b3e0 main.cpp.obj - 0002:00006450 ??_C@_0GB@MMKDCIPG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b450 main.cpp.obj - 0002:000064b8 ??_C@_0FA@LPCANDDG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b4b8 main.cpp.obj - 0002:00006508 ??_C@_0EP@HIFJMJBD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b508 main.cpp.obj - 0002:00006558 ??_C@_0FB@PHCOIIPO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b558 main.cpp.obj - 0002:000065b0 ??_C@_0FE@BIJKAHNP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b5b0 main.cpp.obj - 0002:00006608 ??_C@_0EK@NCEOOBCN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b608 main.cpp.obj - 0002:00006658 ??_C@_0FB@IOIDOGLA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b658 main.cpp.obj - 0002:000066b0 ??_C@_0FA@LFOCKALN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b6b0 main.cpp.obj - 0002:00006700 ??_C@_0FC@PDMEANNO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b700 main.cpp.obj - 0002:00006758 ??_C@_0FF@CGPMCGFD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b758 main.cpp.obj - 0002:000067b0 ??_C@_0EL@MJEICIOC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b7b0 main.cpp.obj - 0002:00006800 ??_C@_0EM@DLPEIJNB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b800 main.cpp.obj - 0002:00006850 ??_C@_0EL@BCECPAAA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b850 main.cpp.obj - 0002:000068a0 ??_C@_0EN@MJMECLHP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b8a0 main.cpp.obj - 0002:000068f0 ??_C@_0FA@DNJIJCBK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b8f0 main.cpp.obj - 0002:00006940 ??_C@_0EG@HFKCIJJB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009b940 main.cpp.obj - 0002:00006988 ??_C@_0HE@JCEOEHIB@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009b988 main.cpp.obj - 0002:00006a00 ??_C@_0HD@BECCPDOM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009ba00 main.cpp.obj - 0002:00006a78 ??_C@_0HF@KCAGMAEF@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009ba78 main.cpp.obj - 0002:00006af0 ??_C@_0HI@NMIEHLIM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009baf0 main.cpp.obj - 0002:00006b68 ??_C@_0GO@FAAFNIEE@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009bb68 main.cpp.obj - 0002:00006bd8 ??_C@_0FL@HGFCPJFG@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009bbd8 main.cpp.obj - 0002:00006c38 ??_C@_0FK@GFDCPGA@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009bc38 main.cpp.obj - 0002:00006c98 ??_C@_0FM@LKFFJLIM@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009bc98 main.cpp.obj - 0002:00006cf8 ??_C@_0FP@OJNHFCIK@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009bcf8 main.cpp.obj - 0002:00006d58 ??_C@_0FF@BDJILBEG@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009bd58 main.cpp.obj - 0002:00006db0 ??_C@_0FI@JFOCINPB@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009bdb0 main.cpp.obj - 0002:00006e08 ??_C@_0FH@NFCMJKOI@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009be08 main.cpp.obj - 0002:00006e60 ??_C@_0FJ@PCAEBNLD@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009be60 main.cpp.obj - 0002:00006ec0 ??_C@_0FM@LHFFKOMA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009bec0 main.cpp.obj - 0002:00006f20 ??_C@_0FC@FDIEOGFG@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009bf20 main.cpp.obj - 0002:00006f78 ??_C@_0FP@FDCKJHHF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009bf78 main.cpp.obj - 0002:00006fd8 ??_C@_0FO@BBOPKMNC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009bfd8 main.cpp.obj - 0002:00007038 ??_C@_0GA@BIBHJCJA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c038 main.cpp.obj - 0002:00007098 ??_C@_0GD@LFPLJDMJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c098 main.cpp.obj - 0002:00007100 ??_C@_0FJ@GCIPOLHH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c100 main.cpp.obj - 0002:00007160 ??_C@_0GH@JJEDIHGL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c160 main.cpp.obj - 0002:000071c8 ??_C@_0GG@MCDNDICD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c1c8 main.cpp.obj - 0002:00007230 ??_C@_0GI@OCNCMGOD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c230 main.cpp.obj - 0002:00007298 ??_C@_0GL@NGJFOLFF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c298 main.cpp.obj - 0002:00007308 ??_C@_0GB@HOKLGKJM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c308 main.cpp.obj - 0002:00007370 ??_C@_0EO@EOPBFFM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c370 main.cpp.obj - 0002:000073c0 ??_C@_0EN@LMNIKAKG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c3c0 main.cpp.obj - 0002:00007410 ??_C@_0EP@FKPCMPHO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c410 main.cpp.obj - 0002:00007460 ??_C@_0FC@MJPCFLMP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c460 main.cpp.obj - 0002:000074b8 ??_C@_0EI@CEDHEIMB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c4b8 main.cpp.obj - 0002:00007500 ??_C@_0GL@GGLNAMIF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c500 main.cpp.obj - 0002:00007570 ??_C@_0GK@DDNMKGPK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c570 main.cpp.obj - 0002:000075e0 ??_C@_0GM@KFJPPHBH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c5e0 main.cpp.obj - 0002:00007650 ??_C@_0GP@KKGIAKIB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c650 main.cpp.obj - 0002:000076c0 ??_C@_0GF@NNBFNMOO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009c6c0 main.cpp.obj - 0002:0000772c ??_7?$wrapexcept@VError@hadesmem@@@boost@@6B@ 1009c72c main.cpp.obj - 0002:0000773c ??_7?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@std@@@ 1009c73c main.cpp.obj - 0002:00007748 ??_7?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@1@@ 1009c748 main.cpp.obj - 0002:0000774c ??_8?$wrapexcept@VError@hadesmem@@@boost@@7B@ 1009c74c main.cpp.obj - 0002:00007758 ??_C@_0P@CADPMCCM@Toolhelp32Enum@ 1009c758 main.cpp.obj - 0002:0000776c ??_7?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 1009c76c main.cpp.obj - 0002:0000777c ??_C@_01PKGAHCOL@?$CJ@ 1009c77c main.cpp.obj - 0002:00007780 ??_C@_0BF@KCPMKJAM@?5attempts?5?$CIoffset?50x@ 1009c780 main.cpp.obj - 0002:00007798 ??_C@_0BI@LPFEPKOA@?5?5Hook?5succeeded?5after?5@ 1009c798 main.cpp.obj - 0002:000077b0 ??_C@_0P@GMOIJGGB@?5?9?5retrying?4?4?4@ 1009c7b0 main.cpp.obj - 0002:000077c0 ??_C@_0BL@GLPGJHGB@?5?5Hook?5failed?5on?5offset?50x@ 1009c7c0 main.cpp.obj - 0002:000077dc ??_C@_0BA@BHOKINGE@?5?5FAILED?5after?5@ 1009c7dc main.cpp.obj - 0002:000077ec ??_C@_0CP@GBDDEGCO@?5?5Hook?5failed?5with?5std?3?3excepti@ 1009c7ec main.cpp.obj - 0002:0000781c ??_C@_0DC@OCFGAIKL@?5?5Hook?5failed?5with?5unknown?5exce@ 1009c81c main.cpp.obj - 0002:00007850 ??_C@_07NBEOHAHH@?5Type?3?5@ 1009c850 main.cpp.obj - 0002:00007858 ??_C@_0L@LKMHAKKL@?5Protect?3?5@ 1009c858 main.cpp.obj - 0002:00007864 ??_C@_08CHPDLAMK@?5State?3?5@ 1009c864 main.cpp.obj - 0002:00007870 ??_C@_07FNIPFEMD@?5Size?3?5@ 1009c870 main.cpp.obj - 0002:00007878 ??_C@_0BJ@KJCAKANC@?5?5Memory?5info?5?9?5Base?3?50x@ 1009c878 main.cpp.obj - 0002:00007894 ??_C@_0L@CLBNCPDM@createHook@ 1009c894 main.cpp.obj - 0002:000078a0 ??_C@_0CI@DFGDNLDL@C?3?2workspace?2nampower?2nampower?2@ 1009c8a0 main.cpp.obj - 0002:000078c8 ??_C@_0CP@CACHEKIE@Failed?5to?5create?5hook?5after?5all@ 1009c8c8 main.cpp.obj - 0002:000078fc ??_7?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 1009c8fc main.cpp.obj - 0002:00007910 ??_7?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 1009c910 main.cpp.obj - 0002:00007920 ??_C@_02MDKMJEGG@eE@ 1009c920 main.cpp.obj - 0002:00007924 ??_C@_02OOPEBDOJ@pP@ 1009c924 main.cpp.obj - 0002:00007928 ??_C@_04IHCGILC@?$CB?$CFx?$AA@ 1009c928 main.cpp.obj - 0002:00007930 ??_C@_0M@HIBANGPP@PatchDetour@ 1009c930 main.cpp.obj - 0002:0000793c ??_C@_0CN@JBEOHMAH@PatchDetour?5only?5supported?5on?5l@ 1009c93c main.cpp.obj - 0002:0000796c ??_C@_0BA@FOIKENOD@vector?5too?5long@ 1009c96c main.cpp.obj - 0002:00007980 ??_7?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 1009c980 main.cpp.obj - 0002:00007988 ??_7?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bbad_alloc@std@@@ 1009c988 main.cpp.obj - 0002:00007994 ??_7?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6B@ 1009c994 main.cpp.obj - 0002:000079a0 ??_8?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@7B@ 1009c9a0 main.cpp.obj - 0002:000079a8 ??_C@_0EC@KFLIJNMG@C?3?2software?2boost_1_80_0?2boost?1@ 1009c9a8 main.cpp.obj - 0002:000079f0 ??_C@_0IK@LHEHAGMH@class?5boost?3?3exception_ptr?5__cd@ 1009c9f0 main.cpp.obj - 0002:00007a80 ??_7?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 1009ca80 main.cpp.obj - 0002:00007a88 ??_7?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bbad_exception@std@@@ 1009ca88 main.cpp.obj - 0002:00007a94 ??_7?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6B@ 1009ca94 main.cpp.obj - 0002:00007aa0 ??_8?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@7B@ 1009caa0 main.cpp.obj - 0002:00007aa8 ??_C@_0IO@BHMGIOEK@class?5boost?3?3exception_ptr?5__cd@ 1009caa8 main.cpp.obj - 0002:00007b3c ??_7?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@6B@ 1009cb3c main.cpp.obj - 0002:00007b58 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@6B@ 1009cb58 main.cpp.obj - 0002:00007b74 ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@6B@ 1009cb74 main.cpp.obj - 0002:00007b90 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@6B@ 1009cb90 main.cpp.obj - 0002:00007bac ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@6B@ 1009cbac main.cpp.obj - 0002:00007bc8 ??_7?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@6B@ 1009cbc8 main.cpp.obj - 0002:00007be4 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@6B@ 1009cbe4 main.cpp.obj - 0002:00007c00 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@6B@ 1009cc00 main.cpp.obj - 0002:00007c1c ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@6B@ 1009cc1c main.cpp.obj - 0002:00007c38 ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@6B@ 1009cc38 main.cpp.obj - 0002:00007c54 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@6B@ 1009cc54 main.cpp.obj - 0002:00007c70 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@6B@ 1009cc70 main.cpp.obj - 0002:00007c8c ??_7?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@6B@ 1009cc8c main.cpp.obj - 0002:00007ca8 ??_7?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@6B@ 1009cca8 main.cpp.obj - 0002:00007cc4 ??_7?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@6B@ 1009ccc4 main.cpp.obj - 0002:00007ce0 ??_7?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@6B@ 1009cce0 main.cpp.obj - 0002:00007cfc ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@6B@ 1009ccfc main.cpp.obj - 0002:00007d18 ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@6B@ 1009cd18 main.cpp.obj - 0002:00007d34 ??_7?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@6B@ 1009cd34 main.cpp.obj - 0002:00007d50 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@6B@ 1009cd50 main.cpp.obj - 0002:00007d6c ??_7?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@6B@ 1009cd6c main.cpp.obj - 0002:00007d88 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@6B@ 1009cd88 main.cpp.obj - 0002:00007da4 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@6B@ 1009cda4 main.cpp.obj - 0002:00007dc0 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@6B@ 1009cdc0 main.cpp.obj - 0002:00007ddc ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@6B@ 1009cddc main.cpp.obj - 0002:00007df8 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@6B@ 1009cdf8 main.cpp.obj - 0002:00007e14 ??_7?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@6B@ 1009ce14 main.cpp.obj - 0002:00007e30 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@6B@ 1009ce30 main.cpp.obj - 0002:00007e4c ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@6B@ 1009ce4c main.cpp.obj - 0002:00007e68 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@6B@ 1009ce68 main.cpp.obj - 0002:00007e84 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@6B@ 1009ce84 main.cpp.obj - 0002:00007ea0 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@6B@ 1009cea0 main.cpp.obj - 0002:00007ebc ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@6B@ 1009cebc main.cpp.obj - 0002:00007ed8 ??_7?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 1009ced8 main.cpp.obj - 0002:00007ef4 ??_7?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 1009cef4 main.cpp.obj - 0002:00007f10 ??_7?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@6B@ 1009cf10 main.cpp.obj - 0002:00007f2c ??_7?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@6B@ 1009cf2c main.cpp.obj - 0002:00007f48 __real@4202a05f20000000 1009cf48 main.cpp.obj - 0002:00007f50 __xmm@7fffffffffffffff7fffffffffffffff 1009cf50 main.cpp.obj - 0002:00007f60 __xmm@ffffffff000000000000000000000000 1009cf60 main.cpp.obj - 0002:00007f70 ?kNilGuidStr@Nampower@@3QBDB 1009cf70 helper.cpp.obj - 0002:00007f88 ??_C@_09IFBAIJJB@0x?$CF016llX@ 1009cf88 helper.cpp.obj - 0002:00007f94 ??_C@_02MDDDDAID@0x@ 1009cf94 helper.cpp.obj - 0002:00007f98 ??_C@_02FGLHBECB@0X@ 1009cf98 helper.cpp.obj - 0002:00007f9c ??_C@_0BL@GOIGLPKN@unordered_map?1set?5too?5long@ 1009cf9c helper.cpp.obj - 0002:00007fb8 ??_C@_0BK@OGNNAFAB@invalid?5hash?5bucket?5count@ 1009cfb8 helper.cpp.obj - 0002:00007fd8 __real@3ff8000000000000 1009cfd8 helper.cpp.obj - 0002:00007fe0 __xmm@41f00000000000000000000000000000 1009cfe0 helper.cpp.obj - 0002:00007ff4 ??_C@_0BC@MHCHADOA@?5for?5gcdCategory?5@ 1009cff4 spellcast.cpp.obj - 0002:00008008 ??_C@_06BIDGLIKJ@?5with?5@ 1009d008 spellcast.cpp.obj - 0002:00008010 ??_C@_0BP@FJKKCADI@Replacing?5queued?5nonGcd?5spell?5@ 1009d010 spellcast.cpp.obj - 0002:00008030 ??_C@_0DN@LFNKAAEA@Target?5changed?5during?5quick?5cas@ 1009d030 spellcast.cpp.obj - 0002:00008070 ??_C@_0BA@MCIJFKAO@?5queuetrigger?3?5@ 1009d070 spellcast.cpp.obj - 0002:00008080 ??_C@_0N@CJFDIMCD@?5quickcast?3?5@ 1009d080 spellcast.cpp.obj - 0002:00008090 ??_C@_0BM@EOLKOAOP@Quickcasting?5terrain?5spell?5@ 1009d090 spellcast.cpp.obj - 0002:000080ac ??_C@_0DL@IFODHHPF@GetChannelBaseDuration?3?5Duratio@ 1009d0ac spellcast.cpp.obj - 0002:000080e8 ??_C@_0DA@JCBAJNFA@Ignoring?5non?5active?5player?5begi@ 1009d0e8 spellcast.cpp.obj - 0002:00008118 ??_C@_0BH@CIIHKNNM@?5time?5since?5last?5cast?5@ 1009d118 spellcast.cpp.obj - 0002:00008130 ??_C@_0L@CFJAIELA@?5latency?3?5@ 1009d130 spellcast.cpp.obj - 0002:0000813c ??_C@_06GJNNAKOE@?5Gcd?3?5@ 1009d13c spellcast.cpp.obj - 0002:00008144 ??_C@_09NPFKODNJ@?5buffer?3?5@ 1009d144 spellcast.cpp.obj - 0002:00008150 ??_C@_0N@CCNKJBBP@?5cast?5time?3?5@ 1009d150 spellcast.cpp.obj - 0002:00008160 ??_C@_01ODHLEDKK@?$CI@ 1009d160 spellcast.cpp.obj - 0002:00008164 ??_C@_0M@BFOLJPLE@BeginCast?5?$CD@ 1009d164 spellcast.cpp.obj - 0002:00008170 ??_C@_07FJDGAAH@?5NO?5Gcd@ 1009d170 spellcast.cpp.obj - 0002:00008178 ??_C@_0BO@OKAMCEBE@Decreasing?5default?5buffer?5to?5@ 1009d178 spellcast.cpp.obj - 0002:00008198 ??_C@_0CD@HHFGFCEF@Triggering?5queued?5non?5gcd?5cast?5@ 1009d198 spellcast.cpp.obj - 0002:000081bc ??_C@_0CK@IDCOKNOH@Ignoring?5queued?5non?5gcd?5cast?0?5n@ 1009d1bc spellcast.cpp.obj - 0002:000081e8 ??_C@_0BL@OIEKGDFF@Triggering?5queued?5cast?5of?5@ 1009d1e8 spellcast.cpp.obj - 0002:00008204 ??_C@_0CC@DLDNPCKF@Ignoring?5queued?5cast?0?5no?5spell?5@ 1009d204 spellcast.cpp.obj - 0002:00008228 ??_C@_0BH@MNDFAADJ@?0?5triggering?5quickcast@ 1009d228 spellcast.cpp.obj - 0002:00008240 ??_C@_0DE@CEFFBIDD@CastSpell?5double?5cast?5detected?5@ 1009d240 spellcast.cpp.obj - 0002:00008274 ??_C@_0DF@OKDGBKLA@Use?5action?5double?5cast?5detected@ 1009d274 spellcast.cpp.obj - 0002:000082ac ??_C@_0CK@KAINKJIL@Ignoring?5non?5active?5player?5cast@ 1009d2ac spellcast.cpp.obj - 0002:000082d8 ??_C@_0BB@POLDOEMN@?5due?5to?5buff?5cap@ 1009d2d8 spellcast.cpp.obj - 0002:000082ec ??_C@_0BG@FMMOGOEG@Blocking?5mount?5spell?5@ 1009d2ec spellcast.cpp.obj - 0002:00008304 ??_C@_06EGFPNNHB@?5from?5@ 1009d304 spellcast.cpp.obj - 0002:0000830c ??_C@_0BO@GDCPHICE@Updating?5selection?5target?5to?5@ 1009d30c spellcast.cpp.obj - 0002:0000832c ??_C@_0BH@DKPBEKJE@?0?5ending?5channel?5early@ 1009d32c spellcast.cpp.obj - 0002:00008344 ??_C@_0BK@JFKBDLAO@Double?5cast?5detected?5for?5@ 1009d344 spellcast.cpp.obj - 0002:00008360 ??_C@_0BI@LMDLBPCD@?0?5time?5since?5last?5cast?5@ 1009d360 spellcast.cpp.obj - 0002:00008378 ??_C@_08DJKAFFEB@?5target?5@ 1009d378 spellcast.cpp.obj - 0002:00008384 ??_C@_09GCJJPOLD@?5on?5guid?5@ 1009d384 spellcast.cpp.obj - 0002:00008390 ??_C@_08EJFJFLKG@?5itemId?5@ 1009d390 spellcast.cpp.obj - 0002:0000839c ??_C@_0O@CIKJCEOK@Attempt?5cast?5@ 1009d39c spellcast.cpp.obj - 0002:000083ac ??_C@_0BI@DAADBDOK@Queuing?5on?5swing?5spell?5@ 1009d3ac spellcast.cpp.obj - 0002:000083c4 ??_C@_0BL@JIPDAEEF@Successful?5on?5swing?5spell?5@ 1009d3c4 spellcast.cpp.obj - 0002:000083e0 ??_C@_03NEMEPNJG@ms?5@ 1009d3e0 spellcast.cpp.obj - 0002:000083e4 ??_C@_0CH@CAOMOENB@Queuing?5targeting?5for?5after?5cas@ 1009d3e4 spellcast.cpp.obj - 0002:0000840c ??_C@_0DE@KDCLAKNN@Queuing?5instant?5cast?5targeting?5@ 1009d40c spellcast.cpp.obj - 0002:00008440 ??_C@_0DE@BKONOIBH@Updating?5instant?5cast?5non?5GCD?5t@ 1009d440 spellcast.cpp.obj - 0002:00008474 ??_C@_0P@NGFFJPPH@?5gcd?5category?5@ 1009d474 spellcast.cpp.obj - 0002:00008484 ??_C@_0DM@FPCEIGOB@Queuing?5instant?5cast?5non?5GCD?5ta@ 1009d484 spellcast.cpp.obj - 0002:000084c0 ??_C@_0BN@HPKBJIBH@Queuing?5for?5after?5cast?1gcd?3?5@ 1009d4c0 spellcast.cpp.obj - 0002:000084e0 ??_C@_0BN@NNFKHHAA@Updating?5non?5GCD?5params?5for?5@ 1009d4e0 spellcast.cpp.obj - 0002:00008500 ??_C@_0CF@LOKNHDBF@Queuing?5non?5GCD?5for?5after?5cast?1@ 1009d500 spellcast.cpp.obj - 0002:00008528 ??_C@_0N@PBPCOGKN@instant?5cast@ 1009d528 spellcast.cpp.obj - 0002:00008538 ??_C@_0L@OAKOENBO@channeling@ 1009d538 spellcast.cpp.obj - 0002:00008544 ??_C@_0BG@HMCDLKNN@?5for?5after?5cast?1gcd?3?5@ 1009d544 spellcast.cpp.obj - 0002:0000855c ??_C@_08INMJLCKL@Queuing?5@ 1009d55c spellcast.cpp.obj - 0002:00008568 ??_C@_0BF@COEDODBD@?5non?5GCD?5params?5for?5@ 1009d568 spellcast.cpp.obj - 0002:00008580 ??_C@_09MNPPNDJM@Updating?5@ 1009d580 spellcast.cpp.obj - 0002:0000858c ??_C@_0BO@BJDBMPFM@?5non?5GCD?5for?5after?5cast?1gcd?3?5@ 1009d58c spellcast.cpp.obj - 0002:000085ac ??_C@_0N@MJFJIIIG@ms?5remaining@ 1009d5ac spellcast.cpp.obj - 0002:000085bc ??_C@_0BG@BELMLGGG@Cast?5or?5delay?5active?5@ 1009d5bc spellcast.cpp.obj - 0002:000085d4 ??_C@_0M@GEFIMPOA@Gcd?5active?5@ 1009d5d4 spellcast.cpp.obj - 0002:000085e0 ??_C@_0DJ@HICJFDGG@?5cast?5still?5waiting?5for?5server?5@ 1009d5e0 spellcast.cpp.obj - 0002:0000861c ??_C@_09CPGKBJMK@Ignoring?5@ 1009d61c spellcast.cpp.obj - 0002:00008628 ??_C@_0DH@KHOFHJBE@?5cast?5recently?5succeeded?5for?5th@ 1009d628 spellcast.cpp.obj - 0002:00008660 ??_C@_0EA@OCEKPMFJ@Canceling?5spell?5cast?5due?5to?5pre@ 1009d660 spellcast.cpp.obj - 0002:000086a0 ??_C@_0CF@LIPBLKIF@Retry?5cast?5after?5cancel?5still?5f@ 1009d6a0 spellcast.cpp.obj - 0002:000086c8 ??_C@_0BF@BEANNNJB@?5spellIsOnCooldown?5?$DN@ 1009d6c8 spellcast.cpp.obj - 0002:000086e0 ??_C@_0BG@JAEPGBDL@?5pendingOnSwingCast?5?$DN@ 1009d6e0 spellcast.cpp.obj - 0002:000086f8 ??_C@_0EF@NBDHPPFO@Initial?5cast?5failed?5but?5not?5can@ 1009d6f8 spellcast.cpp.obj - 0002:00008740 ??_C@_0DE@DGCCEIJD@Ignoring?5cancel?5spell?5cast?5due?5@ 1009d740 spellcast.cpp.obj - 0002:00008774 ??_C@_08NFIDAFLL@?5reason?3@ 1009d774 spellcast.cpp.obj - 0002:00008780 ??_C@_0P@OHLEPHP@?5notifyServer?3@ 1009d780 spellcast.cpp.obj - 0002:00008790 ??_C@_0BK@LBLJOMCE@Cancel?5spell?5cast?5failed?3@ 1009d790 spellcast.cpp.obj - 0002:000087ac ??_C@_0L@DHBENNO@?5duration?5@ 1009d7ac spellchannel.cpp.obj - 0002:000087b8 ??_C@_0BA@PHCPFKHC@Channel?5start?3?5@ 1009d7b8 spellchannel.cpp.obj - 0002:000087c8 ??_C@_0EB@ONHCPBOA@Adding?51?5second?5to?5Arcane?5Missi@ 1009d7c8 spellchannel.cpp.obj - 0002:0000880c ??_C@_05POFHKGEO@?5for?5@ 1009d80c spellchannel.cpp.obj - 0002:00008814 ??_C@_0BN@FEHMJJBM@Invalid?5originalDuration?5of?5@ 1009d814 spellchannel.cpp.obj - 0002:00008834 ??_C@_0BD@BMJLBBMG@?5scaled?5tick?5time?5@ 1009d834 spellchannel.cpp.obj - 0002:00008848 ??_C@_0BE@HNMLIODA@Original?5tick?5time?5@ 1009d848 spellchannel.cpp.obj - 0002:0000885c ??_C@_0BJ@OBCFLFNO@?0?5defaulting?5to?5duration@ 1009d85c spellchannel.cpp.obj - 0002:00008878 ??_C@_0BP@KNLPIMJL@Invalid?5channel?5tick?5time?5for?5@ 1009d878 spellchannel.cpp.obj - 0002:00008898 ??_C@_0CD@PPICPDAH@Ignoring?1resetting?5channeling?5f@ 1009d898 spellchannel.cpp.obj - 0002:000088bc ??_C@_09IMKLHFKG@?5elapsed?5@ 1009d8bc spellchannel.cpp.obj - 0002:000088c8 ??_C@_0P@DILMPNKC@Channel?5done?3?5@ 1009d8c8 spellchannel.cpp.obj - 0002:000088d8 ??_C@_0M@HOBALKP@?5remaining?5@ 1009d8d8 spellchannel.cpp.obj - 0002:000088e4 ??_C@_0BB@IJINAKFI@Channel?5update?3?5@ 1009d8e4 spellchannel.cpp.obj - 0002:000088f8 __real@3f800000 1009d8f8 spellchannel.cpp.obj - 0002:00008900 ??_C@_08KHPECABI@?5result?5@ 1009d900 spellevents.cpp.obj - 0002:0000890c ??_C@_06BFJJLGJH@?5guid?5@ 1009d90c spellevents.cpp.obj - 0002:00008914 ??_C@_0BD@JCCHCLOL@Spell?5target?5unit?5@ 1009d914 spellevents.cpp.obj - 0002:00008928 ??_C@_0BL@DLGFEAGG@?0?5stopping?5disenchant?5loop@ 1009d928 spellevents.cpp.obj - 0002:00008944 ??_C@_0CF@GIAGKMIP@Disenchant?5spell?5failed?5with?5re@ 1009d944 spellevents.cpp.obj - 0002:0000896c ??_C@_0P@LJPLECIE@?5queuing?5retry@ 1009d96c spellevents.cpp.obj - 0002:0000897c ??_C@_0BH@EOGBFMAP@?5is?5still?5on?5cooldown?5@ 1009d97c spellevents.cpp.obj - 0002:00008994 ??_C@_0P@KAMGEGPI@Non?5gcd?5spell?5@ 1009d994 spellevents.cpp.obj - 0002:000089a4 ??_C@_06IPOHHIAK@Spell?5@ 1009d9a4 spellevents.cpp.obj - 0002:000089ac ??_C@_05LDELDIBH@Item?5@ 1009d9ac spellevents.cpp.obj - 0002:000089b4 ??_C@_0DK@JCOGHOGB@?5not?5queuing?5retry?5due?5to?5retry@ 1009d9b4 spellevents.cpp.obj - 0002:000089f0 ??_C@_06FHPAMJEI@?5code?5@ 1009d9f0 spellevents.cpp.obj - 0002:000089f8 ??_C@_0BB@GOHBAIHL@Cast?5failed?5for?5@ 1009d9f8 spellevents.cpp.obj - 0002:00008a0c ??_C@_0CM@MHLCDCAG@?0?5but?5a?5recent?5cast?5succeeded?0?5@ 1009da0c spellevents.cpp.obj - 0002:00008a38 ??_C@_0P@LOMEMCGF@?5non?5gcd?5code?5@ 1009da38 spellevents.cpp.obj - 0002:00008a48 ??_C@_0BC@HJBAKONN@Cast?5failed?5for?5?$CD@ 1009da48 spellevents.cpp.obj - 0002:00008a5c ??_C@_08KEELPODO@?0?5retry?5@ 1009da5c spellevents.cpp.obj - 0002:00008a68 ??_C@_0BK@OMKDJBI@?0?5gcd?5active?5not?5retrying@ 1009da68 spellevents.cpp.obj - 0002:00008a84 ??_C@_0DG@MLJODHHA@?0?5not?5retrying?5as?5it?5has?5alread@ 1009da84 spellevents.cpp.obj - 0002:00008abc ??_C@_0CJ@IJODEHEO@?0?5no?5recent?5cast?5params?5found?5i@ 1009dabc spellevents.cpp.obj - 0002:00008ae8 ??_C@_0BG@FLHHKDJE@Increasing?5buffer?5to?5@ 1009dae8 spellevents.cpp.obj - 0002:00008b00 ??_C@_0BO@GJJBLJHI@?5spell?5queued?5?$CL?5ignored?5code?5@ 1009db00 spellevents.cpp.obj - 0002:00008b20 ??_C@_0P@HGCHGFMH@?5ignored?5code?5@ 1009db20 spellevents.cpp.obj - 0002:00008b30 ??_C@_0L@OAJLDHO@?5cast?5end?5@ 1009db30 spellevents.cpp.obj - 0002:00008b3c ??_C@_0M@IGIIHODJ@?5for?5cast?5?$CD@ 1009db3c spellevents.cpp.obj - 0002:00008b48 ??_C@_0BC@DONHDJOM@Spell?5delayed?5by?5@ 1009db48 spellevents.cpp.obj - 0002:00008b5c ??_C@_0CC@EGDHOKK@Negative?5server?5delay?5using?51?5m@ 1009db5c spellevents.cpp.obj - 0002:00008b80 ??_C@_0BJ@OIOPABDB@?5since?5last?5cast?5result?5@ 1009db80 spellevents.cpp.obj - 0002:00008b9c ??_C@_0P@NNAMHHPH@?5server?5delay?5@ 1009db9c spellevents.cpp.obj - 0002:00008bac ??_C@_09HEBFMKKB@?5latency?5@ 1009dbac spellevents.cpp.obj - 0002:00008bb8 ??_C@_08PBNHDDEM@?5status?5@ 1009dbb8 spellevents.cpp.obj - 0002:00008bc4 ??_C@_0BC@EJFCOIPD@Cast?5result?5for?5?$CD@ 1009dbc4 spellevents.cpp.obj - 0002:00008bd8 ??_C@_0DG@HHHCJMND@Unable?5to?5determine?5spell?5infor@ 1009dbd8 spellevents.cpp.obj - 0002:00008c10 ??_C@_0CK@IFJMEEJK@?5resolved?0?5casting?5queued?5on?5sw@ 1009dc10 spellevents.cpp.obj - 0002:00008c3c ??_C@_0BA@IBBPALEH@On?5swing?5spell?5@ 1009dc3c spellevents.cpp.obj - 0002:00008c4c ??_C@_0BP@KBPEDDDH@ms?4?5?5Updated?5cast?5end?5time?5to?5@ 1009dc4c spellevents.cpp.obj - 0002:00008c6c ??_C@_0P@FFNLEJE@?5increased?5by?5@ 1009dc6c spellevents.cpp.obj - 0002:00008c7c ??_C@_0BG@GOJCDGMO@Server?5cast?5time?5for?5@ 1009dc7c spellevents.cpp.obj - 0002:00008c94 ??_C@_0BD@BGGCHONF@?5using?5gcd?5instead@ 1009dc94 spellevents.cpp.obj - 0002:00008ca8 ??_C@_0BL@FOLCLIGH@?5was?5reduced?5below?5gcd?5of?5@ 1009dca8 spellevents.cpp.obj - 0002:00008cc4 ??_C@_0BC@BIFPIPLA@Server?5cast?5time?5@ 1009dcc4 spellevents.cpp.obj - 0002:00008cd8 ??_C@_0P@FFGOHLGM@?5decreased?5by?5@ 1009dcd8 spellevents.cpp.obj - 0002:00008ce8 ??_C@_01IHBHIGKO@?0@ 1009dce8 spellevents.cpp.obj - 0002:00008cec ??_C@_05FAEMOKCC@0?00?00@ 1009dcec spellevents.cpp.obj - 0002:00008cf4 ??_C@_0DK@CIFAMPDN@ChannelStopCastingNextTick?5acti@ 1009dcf4 misc_scripts.cpp.obj - 0002:00008d30 ??_C@_0BH@ICDGKODB@Trying?5to?5queue?5script@ 1009dd30 misc_scripts.cpp.obj - 0002:00008d48 ??_C@_0BJ@GCMABBOM@Queuing?5script?5priority?5@ 1009dd48 misc_scripts.cpp.obj - 0002:00008d64 ??_C@_0BB@FNONMKDE@Queuing?5script?3?5@ 1009dd64 misc_scripts.cpp.obj - 0002:00008d78 ??_C@_0P@HMLODIOA@Invalid?5script@ 1009dd78 misc_scripts.cpp.obj - 0002:00008d88 ??_C@_0DB@IIJNBKKP@Usage?3?5QueueScript?$CI?$CCscript?$CC?0?5?$CIo@ 1009dd88 misc_scripts.cpp.obj - 0002:00008dbc ??_C@_0DG@CFKCJDMF@Usage?3?5LearnTalentRank?$CItalentPa@ 1009ddbc misc_scripts.cpp.obj - 0002:00008df4 ??_C@_0DB@KHHAPJHC@LearnTalentRank?3?5talentPage?5mus@ 1009ddf4 misc_scripts.cpp.obj - 0002:00008e28 ??_C@_0DD@CEAMLHNG@LearnTalentRank?3?5talentIndex?5mu@ 1009de28 misc_scripts.cpp.obj - 0002:00008e5c ??_C@_0CL@LNIFCCIK@LearnTalentRank?3?5rank?5must?5be?5i@ 1009de5c misc_scripts.cpp.obj - 0002:00008e88 ??_C@_0CN@IIMNGAJO@LearnTalentRank?3?5active?5player?5@ 1009de88 misc_scripts.cpp.obj - 0002:00008eb8 ??_C@_0DB@KAIKGKJP@LearnTalentRank?3?5unable?5to?5read@ 1009deb8 misc_scripts.cpp.obj - 0002:00008eec ??_C@_0DB@EGFHDGCE@LearnTalentRank?3?5talent?5page?1in@ 1009deec misc_scripts.cpp.obj - 0002:00008f20 ??_C@_0DF@PBDCOHKH@LearnTalentRank?3?5unable?5to?5read@ 1009df20 misc_scripts.cpp.obj - 0002:00008f58 ??_C@_0CO@NNINIBAN@LearnTalentRank?3?5talents?5base?5p@ 1009df58 misc_scripts.cpp.obj - 0002:00008f88 ??_C@_0DD@IOILFIIO@LearnTalentRank?3?5unable?5to?5read@ 1009df88 misc_scripts.cpp.obj - 0002:00008fbc ??_C@_0CM@LFMAAGG@LearnTalentRank?3?5talent?5tab?5poi@ 1009dfbc misc_scripts.cpp.obj - 0002:00008fe8 ??_C@_0DE@KGHHPFML@LearnTalentRank?3?5unable?5to?5read@ 1009dfe8 misc_scripts.cpp.obj - 0002:0000901c ??_C@_0CN@NANFJOCM@LearnTalentRank?3?5invalid?5talent@ 1009e01c misc_scripts.cpp.obj - 0002:0000904c ??_C@_0DK@BCIOPPLL@LearnTalentRank?3?5talent?5index?5n@ 1009e04c misc_scripts.cpp.obj - 0002:00009088 ??_C@_0CN@ENLDBILH@LearnTalentRank?3?5unable?5to?5read@ 1009e088 misc_scripts.cpp.obj - 0002:000090b8 ??_C@_0CL@CFACCJMP@LearnTalentRank?3?5resolved?5inval@ 1009e0b8 misc_scripts.cpp.obj - 0002:000090e4 ??_C@_0CA@LIPPIENP@Running?5queued?5script?5priority?5@ 1009e0e4 misc_scripts.cpp.obj - 0002:00009108 ??_C@_0GL@FBDGPFHJ@Usage?3?5GetUnitData?$CIunitToken?0?5?$FL@ 1009e108 misc_scripts.cpp.obj - 0002:00009178 ??_C@_0HH@IDABAAKA@Usage?3?5GetUnitField?$CIunitToken?0?5@ 1009e178 misc_scripts.cpp.obj - 0002:000091f0 ??_C@_0BD@JACGONMB@Unknown?5field?5name@ 1009e1f0 misc_scripts.cpp.obj - 0002:00009204 ??_C@_0CH@POINFHMC@Trying?5disenchant?5with?5quality?5@ 1009e204 misc_scripts.cpp.obj - 0002:0000922c ??_C@_0DC@DMOAEFOF@No?5disenchantable?5item?5found?0?5s@ 1009e22c misc_scripts.cpp.obj - 0002:00009260 ??_C@_0DO@MCLKPIML@DEFAULT_CHAT_FRAME?3AddMessage?$CI?$CC@ 1009e260 misc_scripts.cpp.obj - 0002:000092a0 ??_C@_0CC@JPCIHLOK@Invalid?5item?0?5stopping?5disencha@ 1009e2a0 misc_scripts.cpp.obj - 0002:000092c4 ??_C@_0CE@FKMNNJC@No?5player?5unit?0?5stopping?5disenc@ 1009e2c4 misc_scripts.cpp.obj - 0002:000092e8 ??_C@_0KC@NEILAFDD@local?5itemLink?5?$DN?5GetContainerIt@ 1009e2e8 misc_scripts.cpp.obj - 0002:0000938c ??_C@_0CB@IFDJLBBM@Cast?5failed?0?5stopping?5disenchan@ 1009e38c misc_scripts.cpp.obj - 0002:000093b0 ??_C@_0ED@LGBHLFPD@DEFAULT_CHAT_FRAME?3AddMessage?$CI?$CC@ 1009e3b0 misc_scripts.cpp.obj - 0002:000093f8 ??_C@_0BFF@NPPMOAEC@Usage?3?5DisenchantAll?$CIitemIdOrNa@ 1009e3f8 misc_scripts.cpp.obj - 0002:00009550 ??_C@_0CF@KNHJOLMC@You?5do?5not?5have?5the?5Disenchant?5@ 1009e550 misc_scripts.cpp.obj - 0002:00009578 ??_C@_06HBBJMNDD@greens@ 1009e578 misc_scripts.cpp.obj - 0002:00009580 ??_C@_05EBCMBJBB@blues@ 1009e580 misc_scripts.cpp.obj - 0002:00009588 ??_C@_07MBLGJMK@purples@ 1009e588 misc_scripts.cpp.obj - 0002:00009590 ??_C@_0CJ@IECDANKF@Usage?3?5GetItemIconTexture?$CIdispl@ 1009e590 misc_scripts.cpp.obj - 0002:000095bc ??_C@_0N@HLONNMCP@QuestionMark@ 1009e5bc misc_scripts.cpp.obj - 0002:000095cc ??_C@_0CI@EAELDEKM@Usage?3?5GetSpellIconTexture?$CIspel@ 1009e5cc misc_scripts.cpp.obj - 0002:000095f4 ??_C@_0CH@JKODAONC@Usage?3?5GetPlayerAuraDuration?$CIau@ 1009e5f4 misc_scripts.cpp.obj - 0002:0000961c ??_C@_0CG@MADAJHEF@Usage?3?5CancelPlayerAuraSlot?$CIaur@ 1009e61c misc_scripts.cpp.obj - 0002:00009644 ??_C@_0DJ@CFIPDIAI@Usage?3?5CancelPlayerAuraSpellId?$CI@ 1009e644 misc_scripts.cpp.obj - 0002:00009680 ??_C@_0BO@JKLHDAJO@Usage?3?5GetUnitGUID?$CIunitToken?$CJ@ 1009e680 misc_scripts.cpp.obj - 0002:000096a0 ??_C@_0BN@PLDKKIKI@Usage?3?5IsAuraHidden?$CIspellId?$CJ@ 1009e6a0 misc_scripts.cpp.obj - 0002:000096c0 ??_C@_05HEIBENID@owner@ 1009e6c0 misc_scripts.cpp.obj - 0002:000096c8 ??_C@_06JJLAMBGK@target@ 1009e6c8 misc_scripts.cpp.obj - 0002:000096d0 ??_C@_03LAMLDFEG@pet@ 1009e6d0 misc_scripts.cpp.obj - 0002:000096d4 ??_C@_04KJJCFCK@mark@ 1009e6d4 misc_scripts.cpp.obj - 0002:000096dc ??_C@_0CK@EONLFDPA@Attempt?5to?5find?5?8this?8?5in?5non?9f@ 1009e6dc misc_scripts.cpp.obj - 0002:00009708 ??_C@_0CG@DOJPPKKG@Wrong?5object?5type?5for?5member?5fu@ 1009e708 misc_scripts.cpp.obj - 0002:00009730 ??_C@_0CK@NLEAGDNO@Attempt?5to?5find?5?8this?8?5in?5non?9t@ 1009e730 misc_scripts.cpp.obj - 0002:00009760 __real@0000000000000000 1009e760 misc_scripts.cpp.obj - 0002:00009768 __real@3ff0000000000000 1009e768 misc_scripts.cpp.obj - 0002:00009770 __real@4008000000000000 1009e770 misc_scripts.cpp.obj - 0002:00009778 __real@408f400000000000 1009e778 misc_scripts.cpp.obj - 0002:00009784 ??_C@_0CD@FAFLFIPA@Casting?5next?5spell?5without?5queu@ 1009e784 spell_scripts.cpp.obj - 0002:000097a8 ??_C@_0CO@KOABFNCN@Usage?3?5CastSpellByName?$CIname?5?$FL?0?5@ 1009e7a8 spell_scripts.cpp.obj - 0002:000097d8 ??_C@_0CH@LPICHIHK@Invalid?5spell?5slot?5in?5CastSpell@ 1009e7d8 spell_scripts.cpp.obj - 0002:00009800 ??_C@_0CB@HHBALKEJ@CastSpellNoQueue?5with?5unit?5toke@ 1009e800 spell_scripts.cpp.obj - 0002:00009824 ??_C@_0BO@KHCNJBCM@Force?5queuing?5next?5cast?5spell@ 1009e824 spell_scripts.cpp.obj - 0002:00009844 ??_C@_0BI@HLPDJJIN@SpellStopCasting?5called@ 1009e844 spell_scripts.cpp.obj - 0002:0000985c ??_C@_0BJ@HOOGKLNO@Unable?5to?5parse?5spell?5id@ 1009e85c spell_scripts.cpp.obj - 0002:00009878 ??_C@_0IC@LFNFOIMM@Unable?5to?5determine?5spell?5id?5fr@ 1009e878 spell_scripts.cpp.obj - 0002:000098fc ??_C@_0BA@LCNPPGJD@Spell?5not?5found@ 1009e8fc spell_scripts.cpp.obj - 0002:0000990c ??_C@_0CB@DNBDKHMK@Usage?3?5IsSpellInRange?$CIspellName@ 1009e90c spell_scripts.cpp.obj - 0002:00009930 ??_C@_0IB@NFBGPDMF@Unable?5to?5determine?5spell?5id?5fr@ 1009e930 spell_scripts.cpp.obj - 0002:000099b4 ??_C@_0CA@CKMJHD@Usage?3?5IsSpellUsable?$CIspellName?$CJ@ 1009e9b4 spell_scripts.cpp.obj - 0002:000099d4 ??_C@_0CE@BNAKDPLE@Usage?3?5GetSpellIdForName?$CIspellN@ 1009e9d4 spell_scripts.cpp.obj - 0002:000099f8 ??_C@_0BJ@EJDPBOLF@Spell?5not?5found?5for?5id?3?5@ 1009e9f8 spell_scripts.cpp.obj - 0002:00009a14 ??_C@_0CJ@PPAJFPII@Usage?3?5GetSpellNameAndRankForId@ 1009ea14 spell_scripts.cpp.obj - 0002:00009a40 ??_C@_05LOCENACC@spell@ 1009ea40 spell_scripts.cpp.obj - 0002:00009a48 ??_C@_0CM@BIFAHKMN@Usage?3?5GetSpellSlotTypeIdForNam@ 1009ea48 spell_scripts.cpp.obj - 0002:00009a74 ??_C@_0CE@PGDGANLK@Usage?3?5GetSpellRec?$CIspellId?0?5?$FLco@ 1009ea74 spell_scripts.cpp.obj - 0002:00009a98 ??_C@_04MEMAJGDJ@name@ 1009ea98 spell_scripts.cpp.obj - 0002:00009aa0 ??_C@_04PNBFHPGN@rank@ 1009eaa0 spell_scripts.cpp.obj - 0002:00009aa8 ??_C@_0M@PPJNHBMP@description@ 1009eaa8 spell_scripts.cpp.obj - 0002:00009ab4 ??_C@_07OGDNBKKB@tooltip@ 1009eab4 spell_scripts.cpp.obj - 0002:00009abc ??_C@_0DE@IFOKCNBD@Usage?3?5GetSpellRecField?$CIspellId@ 1009eabc spell_scripts.cpp.obj - 0002:00009af0 ??_C@_0BOB@PPLDFGIB@Usage?3?5GetSpellModifiers?$CIspellI@ 1009eaf0 spell_scripts.cpp.obj - 0002:00009cd4 ??_C@_0DB@LGIDKANG@Invalid?5modifier?5type?4?5Must?5be?5@ 1009ecd4 spell_scripts.cpp.obj - 0002:00009d08 ??_C@_0BB@NBBEIOIN@Invalid?5spell?5id@ 1009ed08 spell_scripts.cpp.obj - 0002:00009d1c ??_C@_08KJJBJMM@spellId?3@ 1009ed1c spell_scripts.cpp.obj - 0002:00009d28 ??_C@_0CH@HJHOCEPB@Unable?5convert?5spell?5id?5to?5spel@ 1009ed28 spell_scripts.cpp.obj - 0002:00009d50 ??_C@_0CP@KGJBOLFG@Unable?5parse?5spell?5id?4?5?5Format?5@ 1009ed50 spell_scripts.cpp.obj - 0002:00009d80 ??_C@_0CK@PDFCMKHC@Unable?5to?5find?5spell?5slot?5for?5s@ 1009ed80 spell_scripts.cpp.obj - 0002:00009dac ??_C@_03NBFOK@net@ 1009edac spell_scripts.cpp.obj - 0002:00009db0 ??_C@_08BAGPHLDB@positive@ 1009edb0 spell_scripts.cpp.obj - 0002:00009dbc ??_C@_08JKGPMEKK@negative@ 1009edbc spell_scripts.cpp.obj - 0002:00009dc8 ??_C@_0DF@IIJFMHED@Usage?3?5GetSpellDuration?$CIspellId@ 1009edc8 spell_scripts.cpp.obj - 0002:00009e00 __real@bff0000000000000 1009ee00 spell_scripts.cpp.obj - 0002:00009e0c ??_C@_0CB@KIFLLFHK@Usage?3?5GetSpellCooldown?$CIspellId@ 1009ee0c cooldown_scripts.cpp.obj - 0002:00009e30 ??_C@_0DM@HPPALOOP@Usage?3?5GetItemCooldown?$CIitemId?$CJ?5@ 1009ee30 cooldown_scripts.cpp.obj - 0002:00009e6c ??_C@_0CF@IPNKEPCD@Item?5name?5lookup?5not?5yet?5implem@ 1009ee6c cooldown_scripts.cpp.obj - 0002:00009e94 ??_C@_0CN@EGAOPKGE@Usage?3?5GetTrinketCooldown?$CIslot?$HM@ 1009ee94 cooldown_scripts.cpp.obj - 0002:00009ec4 ??_C@_0BG@JDLJPL@missing?5item?5at?5slot?5@ 1009eec4 item_scripts.cpp.obj - 0002:00009edc ??_C@_0BM@FGPCGLD@missing?5itemfields?5at?5slot?5@ 1009eedc item_scripts.cpp.obj - 0002:00009ef8 ??_C@_0BK@BKPACGJE@Unable?5to?5get?5player?5unit@ 1009eef8 item_scripts.cpp.obj - 0002:00009f18 ??_C@_0EC@DILDBMOF@Usage?3?5FindPlayerItemSlot?$CIitemN@ 1009ef18 item_scripts.cpp.obj - 0002:00009f5c ??_C@_0CP@MNDKGGNA@Usage?3?5UseItemIdOrName?$CIitemIdOr@ 1009ef5c item_scripts.cpp.obj - 0002:00009f8c ??_C@_0CA@BIHDFGEI@Unable?5to?5determine?5target?5guid@ 1009ef8c item_scripts.cpp.obj - 0002:00009fac ??_C@_0CP@GCLNMKJC@Usage?3?5UseTrinket?$CIslot?$HMitemIdOr@ 1009efac item_scripts.cpp.obj - 0002:00009fdc ??_C@_07NBCGADJA@Unknown@ 1009efdc item_scripts.cpp.obj - 0002:00009fe8 ??_C@_0FB@JKJLJBPE@Usage?3?5GetEquippedItems?$CI?$CJ?5or?5Ge@ 1009efe8 item_scripts.cpp.obj - 0002:0000a03c ??_C@_0BD@LPJJAPAF@Unable?5to?5get?5unit@ 1009f03c item_scripts.cpp.obj - 0002:0000a050 ??_C@_0BE@IENECEIE@Cannot?5inspect?5unit@ 1009f050 item_scripts.cpp.obj - 0002:0000a068 ??_C@_0EF@LNGINBID@Usage?3?5GetEquippedItem?$CIunitStr?0@ 1009f068 item_scripts.cpp.obj - 0002:0000a0b0 ??_C@_0CH@PFFKDIPF@Slot?5must?5be?5a?5number?5between?51@ 1009f0b0 item_scripts.cpp.obj - 0002:0000a0d8 ??_C@_0BO@MMGGBFIG@Slot?5must?5be?5between?51?5and?519@ 1009f0d8 item_scripts.cpp.obj - 0002:0000a0f8 ??_C@_0CC@HHMLLACK@Usage?3?5GetBagItem?$CIbagIndex?0?5slo@ 1009f0f8 item_scripts.cpp.obj - 0002:0000a11c ??_C@_0BL@OJIHPLAE@Bag?5index?5must?5be?5a?5number@ 1009f11c item_scripts.cpp.obj - 0002:0000a138 ??_C@_0BG@GOJBCPAF@Slot?5must?5be?5a?5number@ 1009f138 item_scripts.cpp.obj - 0002:0000a150 ??_C@_0CI@CDBJNJGK@Slot?5must?5be?5between?51?5and?516?5f@ 1009f150 item_scripts.cpp.obj - 0002:0000a178 ??_C@_0BG@DIIBAFFP@Slot?5exceeds?5bag?5size@ 1009f178 item_scripts.cpp.obj - 0002:0000a190 ??_C@_0BB@CNCNDCLG@Bank?5is?5not?5open@ 1009f190 item_scripts.cpp.obj - 0002:0000a1a8 ??_C@_0EI@CGLLNKOK@For?5bag?5?91?0?5slot?5must?5be?51?924?5?$CI@ 1009f1a8 item_scripts.cpp.obj - 0002:0000a1f0 ??_C@_0DI@KFDHOLPD@For?5bag?5?92?5?$CIkeyring?$CJ?0?5slot?5must@ 1009f1f0 item_scripts.cpp.obj - 0002:0000a228 ??_C@_0EH@DPGHDAMK@Invalid?5bag?5index?4?5Valid?5values@ 1009f228 item_scripts.cpp.obj - 0002:0000a270 ??_C@_0FE@NKJKFJGK@Invalid?5bag?5index?4?5Valid?5values@ 1009f270 item_scripts.cpp.obj - 0002:0000a2c4 ??_C@_0BK@BMIHLO@Item?5not?5found?5in?5DBCache@ 1009f2c4 item_scripts.cpp.obj - 0002:0000a2e0 ??_C@_0BM@BBGLOLG@Usage?3?5GetItemLevel?$CIitemId?$CJ@ 1009f2e0 item_scripts.cpp.obj - 0002:0000a2fc ??_C@_0CE@NEDOMOFN@Usage?3?5GetItemStats?$CIitemId?0?5?$FLco@ 1009f2fc item_scripts.cpp.obj - 0002:0000a320 ??_C@_0M@NDEOCEGH@displayName@ 1009f320 item_scripts.cpp.obj - 0002:0000a32c ??_C@_0DE@DAMKFGHF@Usage?3?5GetItemStatsField?$CIitemId@ 1009f32c item_scripts.cpp.obj - 0002:0000a364 ??_C@_0O@LOMMFJIH@Added?5itemId?5@ 1009f364 items.cpp.obj - 0002:0000a374 ??_C@_0P@FANPLMKM@Still?5missing?5@ 1009f374 items.cpp.obj - 0002:0000a384 ??_C@_02KEGNLNML@?0?5@ 1009f384 items.cpp.obj - 0002:0000a388 ?itemStatsFields@Nampower@@3QBUFieldDescriptor@1@B 1009f388 dbc_fields.cpp.obj - 0002:0000a574 ?itemStatsFieldsCount@Nampower@@3IB 1009f574 dbc_fields.cpp.obj - 0002:0000a578 ?itemStatsArrayFields@Nampower@@3QBUArrayFieldDescriptor@1@B 1009f578 dbc_fields.cpp.obj - 0002:0000a638 ?itemStatsArrayFieldsCount@Nampower@@3IB 1009f638 dbc_fields.cpp.obj - 0002:0000a640 ?spellRecFields@Nampower@@3QBUFieldDescriptor@1@B 1009f640 dbc_fields.cpp.obj - 0002:0000a91c ?spellRecFieldsCount@Nampower@@3IB 1009f91c dbc_fields.cpp.obj - 0002:0000a920 ?spellRecArrayFields@Nampower@@3QBUArrayFieldDescriptor@1@B 1009f920 dbc_fields.cpp.obj - 0002:0000aa80 ?spellRecArrayFieldsCount@Nampower@@3IB 1009fa80 dbc_fields.cpp.obj - 0002:0000aa84 ??_C@_05ENKANFLO@class@ 1009fa84 dbc_fields.cpp.obj - 0002:0000aa8c ??_C@_08CLNMFNJL@subclass@ 1009fa8c dbc_fields.cpp.obj - 0002:0000aa98 ??_C@_0O@NBHNKLJP@displayInfoID@ 1009fa98 dbc_fields.cpp.obj - 0002:0000aaa8 ??_C@_07DADGLCBN@quality@ 1009faa8 dbc_fields.cpp.obj - 0002:0000aab0 ??_C@_05GECEPKB@flags@ 1009fab0 dbc_fields.cpp.obj - 0002:0000aab8 ??_C@_08GNIKKBDF@buyPrice@ 1009fab8 dbc_fields.cpp.obj - 0002:0000aac4 ??_C@_09EHAEBHNG@sellPrice@ 1009fac4 dbc_fields.cpp.obj - 0002:0000aad0 ??_C@_0O@LJIBMGHI@inventoryType@ 1009fad0 dbc_fields.cpp.obj - 0002:0000aae0 ??_C@_0P@HKBMDFLF@allowableClass@ 1009fae0 dbc_fields.cpp.obj - 0002:0000aaf0 ??_C@_0O@PJFDKFL@allowableRace@ 1009faf0 dbc_fields.cpp.obj - 0002:0000ab00 ??_C@_09OOKEJBK@itemLevel@ 1009fb00 dbc_fields.cpp.obj - 0002:0000ab0c ??_C@_0O@PCBOEJHN@requiredLevel@ 1009fb0c dbc_fields.cpp.obj - 0002:0000ab1c ??_C@_0O@LIAFDLBE@requiredSkill@ 1009fb1c dbc_fields.cpp.obj - 0002:0000ab2c ??_C@_0BC@EKIBFNMJ@requiredSkillRank@ 1009fb2c dbc_fields.cpp.obj - 0002:0000ab40 ??_C@_0O@OFODCCDP@requiredSpell@ 1009fb40 dbc_fields.cpp.obj - 0002:0000ab50 ??_C@_0BC@MKNCAGLF@requiredHonorRank@ 1009fb50 dbc_fields.cpp.obj - 0002:0000ab64 ??_C@_0BB@LFMLPJEO@requiredCityRank@ 1009fb64 dbc_fields.cpp.obj - 0002:0000ab78 ??_C@_0M@EOJIPGFP@requiredRep@ 1009fb78 dbc_fields.cpp.obj - 0002:0000ab84 ??_C@_0BA@PNCCEJI@requiredRepRank@ 1009fb84 dbc_fields.cpp.obj - 0002:0000ab94 ??_C@_08LAEJCBOD@maxCount@ 1009fb94 dbc_fields.cpp.obj - 0002:0000aba0 ??_C@_09EFCPONM@stackable@ 1009fba0 dbc_fields.cpp.obj - 0002:0000abac ??_C@_0P@FLPNDKGI@containerSlots@ 1009fbac dbc_fields.cpp.obj - 0002:0000abbc ??_C@_05EKJCMADO@delay@ 1009fbbc dbc_fields.cpp.obj - 0002:0000abc4 ??_C@_08JNBMCKNJ@ammoType@ 1009fbc4 dbc_fields.cpp.obj - 0002:0000abd0 ??_C@_0P@PEGEDPKE@rangedModRange@ 1009fbd0 dbc_fields.cpp.obj - 0002:0000abe0 ??_C@_07FHKKHDI@bonding@ 1009fbe0 dbc_fields.cpp.obj - 0002:0000abe8 ??_C@_08DDOGIPAD@pageText@ 1009fbe8 dbc_fields.cpp.obj - 0002:0000abf4 ??_C@_0L@PFAGFGH@languageID@ 1009fbf4 dbc_fields.cpp.obj - 0002:0000ac00 ??_C@_0N@IBEKAJCP@pageMaterial@ 1009fc00 dbc_fields.cpp.obj - 0002:0000ac10 ??_C@_0N@NAMEJOJP@startQuestID@ 1009fc10 dbc_fields.cpp.obj - 0002:0000ac20 ??_C@_06OMMPKEO@lockID@ 1009fc20 dbc_fields.cpp.obj - 0002:0000ac28 ??_C@_08KNOEMJMM@material@ 1009fc28 dbc_fields.cpp.obj - 0002:0000ac34 ??_C@_0M@BOJKDFJE@sheatheType@ 1009fc34 dbc_fields.cpp.obj - 0002:0000ac40 ??_C@_0P@HIEKOBJC@randomProperty@ 1009fc40 dbc_fields.cpp.obj - 0002:0000ac50 ??_C@_05PIBOEKAB@block@ 1009fc50 dbc_fields.cpp.obj - 0002:0000ac58 ??_C@_07KIDCFHFO@itemSet@ 1009fc58 dbc_fields.cpp.obj - 0002:0000ac60 ??_C@_0O@NEJOMBPE@maxDurability@ 1009fc60 dbc_fields.cpp.obj - 0002:0000ac70 ??_C@_04GOEDGNCF@area@ 1009fc70 dbc_fields.cpp.obj - 0002:0000ac78 ??_C@_03HBNNNHNM@map@ 1009fc78 dbc_fields.cpp.obj - 0002:0000ac7c ??_C@_08LGBPINEC@duration@ 1009fc7c dbc_fields.cpp.obj - 0002:0000ac88 ??_C@_09CEJOBILD@bagFamily@ 1009fc88 dbc_fields.cpp.obj - 0002:0000ac94 ??_C@_09CFJCKAOO@bonusStat@ 1009fc94 dbc_fields.cpp.obj - 0002:0000aca0 ??_C@_0M@MMCFAFHA@bonusAmount@ 1009fca0 dbc_fields.cpp.obj - 0002:0000acac ??_C@_09MJALHBHH@minDamage@ 1009fcac dbc_fields.cpp.obj - 0002:0000acb8 ??_C@_09MIAHOLMD@maxDamage@ 1009fcb8 dbc_fields.cpp.obj - 0002:0000acc4 ??_C@_0L@HKMKJPBM@damageType@ 1009fcc4 dbc_fields.cpp.obj - 0002:0000acd0 ??_C@_0M@DMKJBJGO@resistances@ 1009fcd0 dbc_fields.cpp.obj - 0002:0000acdc ??_C@_07MKDPBGJO@spellID@ 1009fcdc dbc_fields.cpp.obj - 0002:0000ace4 ??_C@_0N@NIGGJAAD@spellTrigger@ 1009fce4 dbc_fields.cpp.obj - 0002:0000acf4 ??_C@_0N@DAPOMAGP@spellCharges@ 1009fcf4 dbc_fields.cpp.obj - 0002:0000ad04 ??_C@_0O@GKHBOHOH@spellCooldown@ 1009fd04 dbc_fields.cpp.obj - 0002:0000ad14 ??_C@_0O@HJMFFAIE@spellCategory@ 1009fd14 dbc_fields.cpp.obj - 0002:0000ad24 ??_C@_0BG@IGIBPPC@spellCategoryCooldown@ 1009fd24 dbc_fields.cpp.obj - 0002:0000ad3c ??_C@_02EGCJHIOB@id@ 1009fd3c dbc_fields.cpp.obj - 0002:0000ad40 ??_C@_06HBLHOEKM@school@ 1009fd40 dbc_fields.cpp.obj - 0002:0000ad48 ??_C@_08MBJIKOEN@category@ 1009fd48 dbc_fields.cpp.obj - 0002:0000ad54 ??_C@_06KIGBPMF@castUI@ 1009fd54 dbc_fields.cpp.obj - 0002:0000ad5c ??_C@_06GAIIABAG@dispel@ 1009fd5c dbc_fields.cpp.obj - 0002:0000ad64 ??_C@_08EFFOODE@mechanic@ 1009fd64 dbc_fields.cpp.obj - 0002:0000ad70 ??_C@_0L@HNMJPKNA@attributes@ 1009fd70 dbc_fields.cpp.obj - 0002:0000ad7c ??_C@_0N@ENOHBPAB@attributesEx@ 1009fd7c dbc_fields.cpp.obj - 0002:0000ad8c ??_C@_0O@JKDKIDPI@attributesEx2@ 1009fd8c dbc_fields.cpp.obj - 0002:0000ad9c ??_C@_0O@IDCBLCLJ@attributesEx3@ 1009fd9c dbc_fields.cpp.obj - 0002:0000adac ??_C@_0O@MMGACEHO@attributesEx4@ 1009fdac dbc_fields.cpp.obj - 0002:0000adbc ??_C@_07CGBCCMBN@stances@ 1009fdbc dbc_fields.cpp.obj - 0002:0000adc4 ??_C@_0L@KNGFDFAC@stancesNot@ 1009fdc4 dbc_fields.cpp.obj - 0002:0000add0 ??_C@_07KJOMBCLC@targets@ 1009fdd0 dbc_fields.cpp.obj - 0002:0000add8 ??_C@_0BD@GAPMJMNG@targetCreatureType@ 1009fdd8 dbc_fields.cpp.obj - 0002:0000adec ??_C@_0BD@GELPPEEP@requiresSpellFocus@ 1009fdec dbc_fields.cpp.obj - 0002:0000ae00 ??_C@_0BA@EEKMKLJE@casterAuraState@ 1009fe00 dbc_fields.cpp.obj - 0002:0000ae10 ??_C@_0BA@CDAFIMFO@targetAuraState@ 1009fe10 dbc_fields.cpp.obj - 0002:0000ae20 ??_C@_0BB@JFPKLBEC@castingTimeIndex@ 1009fe20 dbc_fields.cpp.obj - 0002:0000ae34 ??_C@_0N@OMFIFLPG@recoveryTime@ 1009fe34 dbc_fields.cpp.obj - 0002:0000ae44 ??_C@_0BF@NPKKFBDI@categoryRecoveryTime@ 1009fe44 dbc_fields.cpp.obj - 0002:0000ae5c ??_C@_0P@IEPIDAFJ@interruptFlags@ 1009fe5c dbc_fields.cpp.obj - 0002:0000ae6c ??_C@_0BD@LHLLGJCG@auraInterruptFlags@ 1009fe6c dbc_fields.cpp.obj - 0002:0000ae80 ??_C@_0BG@BMOJLJDO@channelInterruptFlags@ 1009fe80 dbc_fields.cpp.obj - 0002:0000ae98 ??_C@_09MICPAJOG@procFlags@ 1009fe98 dbc_fields.cpp.obj - 0002:0000aea4 ??_C@_0L@PJKMHGON@procChance@ 1009fea4 dbc_fields.cpp.obj - 0002:0000aeb0 ??_C@_0M@PACCPFFC@procCharges@ 1009feb0 dbc_fields.cpp.obj - 0002:0000aebc ??_C@_08JHFEFDMB@maxLevel@ 1009febc dbc_fields.cpp.obj - 0002:0000aec8 ??_C@_09JJGGMDBI@baseLevel@ 1009fec8 dbc_fields.cpp.obj - 0002:0000aed4 ??_C@_0L@DIBPEIPN@spellLevel@ 1009fed4 dbc_fields.cpp.obj - 0002:0000aee0 ??_C@_0O@ILAOIAFF@durationIndex@ 1009fee0 dbc_fields.cpp.obj - 0002:0000aef0 ??_C@_09MHMIHKMK@powerType@ 1009fef0 dbc_fields.cpp.obj - 0002:0000aefc ??_C@_08NBEIGJPH@manaCost@ 1009fefc dbc_fields.cpp.obj - 0002:0000af08 ??_C@_0BB@MKFEABBK@manaCostPerlevel@ 1009ff08 dbc_fields.cpp.obj - 0002:0000af1c ??_C@_0O@GDKBJHLD@manaPerSecond@ 1009ff1c dbc_fields.cpp.obj - 0002:0000af2c ??_C@_0BG@PCCJIIB@manaPerSecondPerLevel@ 1009ff2c dbc_fields.cpp.obj - 0002:0000af44 ??_C@_0L@IIPJFCFA@rangeIndex@ 1009ff44 dbc_fields.cpp.obj - 0002:0000af50 ??_C@_05HJCMGBKF@speed@ 1009ff50 dbc_fields.cpp.obj - 0002:0000af58 ??_C@_0P@GNIGGCNF@modalNextSpell@ 1009ff58 dbc_fields.cpp.obj - 0002:0000af68 ??_C@_0M@FHMAKNIE@stackAmount@ 1009ff68 dbc_fields.cpp.obj - 0002:0000af74 ??_C@_0BC@FAGICCEI@equippedItemClass@ 1009ff74 dbc_fields.cpp.obj - 0002:0000af88 ??_C@_0BJ@EHCBMJCE@equippedItemSubClassMask@ 1009ff88 dbc_fields.cpp.obj - 0002:0000afa4 ??_C@_0BO@GFGEHKDA@equippedItemInventoryTypeMask@ 1009ffa4 dbc_fields.cpp.obj - 0002:0000afc4 ??_C@_0M@CODBPNAF@spellVisual@ 1009ffc4 dbc_fields.cpp.obj - 0002:0000afd0 ??_C@_0N@JNDEJBAD@spellVisual2@ 1009ffd0 dbc_fields.cpp.obj - 0002:0000afe0 ??_C@_0M@FHDHCBKL@spellIconID@ 1009ffe0 dbc_fields.cpp.obj - 0002:0000afec ??_C@_0N@HAKPAPKJ@activeIconID@ 1009ffec dbc_fields.cpp.obj - 0002:0000affc ??_C@_0O@DAMIPNAM@spellPriority@ 1009fffc dbc_fields.cpp.obj - 0002:0000b00c ??_C@_0BD@LHHLGOL@manaCostPercentage@ 100a000c dbc_fields.cpp.obj - 0002:0000b020 ??_C@_0BG@DDDBFLLC@startRecoveryCategory@ 100a0020 dbc_fields.cpp.obj - 0002:0000b038 ??_C@_0BC@MJCLHCCP@startRecoveryTime@ 100a0038 dbc_fields.cpp.obj - 0002:0000b04c ??_C@_0P@GDMECBOP@maxTargetLevel@ 100a004c dbc_fields.cpp.obj - 0002:0000b05c ??_C@_0BA@GMGOGAED@spellFamilyName@ 100a005c dbc_fields.cpp.obj - 0002:0000b06c ??_C@_0BB@LGDKHJHF@spellFamilyFlags@ 100a006c dbc_fields.cpp.obj - 0002:0000b080 ??_C@_0BD@JJENEIAA@maxAffectedTargets@ 100a0080 dbc_fields.cpp.obj - 0002:0000b094 ??_C@_08BJLHHCCM@dmgClass@ 100a0094 dbc_fields.cpp.obj - 0002:0000b0a0 ??_C@_0P@KJEDBIHM@preventionType@ 100a00a0 dbc_fields.cpp.obj - 0002:0000b0b0 ??_C@_0P@CNKPMAAI@stanceBarOrder@ 100a00b0 dbc_fields.cpp.obj - 0002:0000b0c0 ??_C@_0N@BEIHPEI@minFactionId@ 100a00c0 dbc_fields.cpp.obj - 0002:0000b0d0 ??_C@_0O@HHGPPNGP@minReputation@ 100a00d0 dbc_fields.cpp.obj - 0002:0000b0e0 ??_C@_0BD@IBLBOBLJ@requiredAuraVision@ 100a00e0 dbc_fields.cpp.obj - 0002:0000b0f4 ??_C@_05LPPONKPN@totem@ 100a00f4 dbc_fields.cpp.obj - 0002:0000b0fc ??_C@_07EAHOPPHC@reagent@ 100a00fc dbc_fields.cpp.obj - 0002:0000b104 ??_C@_0N@DEFECNCJ@reagentCount@ 100a0104 dbc_fields.cpp.obj - 0002:0000b114 ??_C@_06HOPIODND@effect@ 100a0114 dbc_fields.cpp.obj - 0002:0000b11c ??_C@_0P@HANPKOLJ@effectDieSides@ 100a011c dbc_fields.cpp.obj - 0002:0000b12c ??_C@_0P@NFCDHLMP@effectBaseDice@ 100a012c dbc_fields.cpp.obj - 0002:0000b13c ??_C@_0BD@OJNOKKJI@effectDicePerLevel@ 100a013c dbc_fields.cpp.obj - 0002:0000b150 ??_C@_0BJ@CMMOAIOC@effectRealPointsPerLevel@ 100a0150 dbc_fields.cpp.obj - 0002:0000b16c ??_C@_0BB@ECGJIMP@effectBasePoints@ 100a016c dbc_fields.cpp.obj - 0002:0000b180 ??_C@_0P@JKKLIPGJ@effectMechanic@ 100a0180 dbc_fields.cpp.obj - 0002:0000b190 ??_C@_0BG@MHBOODBP@effectImplicitTargetA@ 100a0190 dbc_fields.cpp.obj - 0002:0000b1a8 ??_C@_0BG@OMDDLANM@effectImplicitTargetB@ 100a01a8 dbc_fields.cpp.obj - 0002:0000b1c0 ??_C@_0BC@JNJBJJNN@effectRadiusIndex@ 100a01c0 dbc_fields.cpp.obj - 0002:0000b1d4 ??_C@_0BE@ELOBPJHK@effectApplyAuraName@ 100a01d4 dbc_fields.cpp.obj - 0002:0000b1e8 ??_C@_0BA@FCGCEODA@effectAmplitude@ 100a01e8 dbc_fields.cpp.obj - 0002:0000b1f8 ??_C@_0BE@EMECGFL@effectMultipleValue@ 100a01f8 dbc_fields.cpp.obj - 0002:0000b20c ??_C@_0BC@EMGMPKNK@effectChainTarget@ 100a020c dbc_fields.cpp.obj - 0002:0000b220 ??_C@_0P@KFOJCMPA@effectItemType@ 100a0220 dbc_fields.cpp.obj - 0002:0000b230 ??_C@_0BA@KMPEGA@effectMiscValue@ 100a0230 dbc_fields.cpp.obj - 0002:0000b240 ??_C@_0BD@JLKEALFA@effectTriggerSpell@ 100a0240 dbc_fields.cpp.obj - 0002:0000b254 ??_C@_0BK@EGJBCINL@effectPointsPerComboPoint@ 100a0254 dbc_fields.cpp.obj - 0002:0000b270 ??_C@_0O@GNCEHKMO@dmgMultiplier@ 100a0270 dbc_fields.cpp.obj - 0002:0000b280 ?unitFieldsFields@Nampower@@3QBUFieldDescriptor@1@B 100a0280 unit_fields.cpp.obj - 0002:0000b58c ?unitFieldsFieldsCount@Nampower@@3IB 100a058c unit_fields.cpp.obj - 0002:0000b590 ?unitFieldsArrayFields@Nampower@@3QBUArrayFieldDescriptor@1@B 100a0590 unit_fields.cpp.obj - 0002:0000b620 ?unitFieldsArrayFieldsCount@Nampower@@3IB 100a0620 unit_fields.cpp.obj - 0002:0000b628 ??_C@_05GNKDCGJG@charm@ 100a0628 unit_fields.cpp.obj - 0002:0000b630 ??_C@_06PEOHCAFD@summon@ 100a0630 unit_fields.cpp.obj - 0002:0000b638 ??_C@_09HKLHHFJN@charmedBy@ 100a0638 unit_fields.cpp.obj - 0002:0000b644 ??_C@_0L@CCGPLGPK@summonedBy@ 100a0644 unit_fields.cpp.obj - 0002:0000b650 ??_C@_09LFPMGGII@createdBy@ 100a0650 unit_fields.cpp.obj - 0002:0000b65c ??_C@_09MLEJIPBC@persuaded@ 100a065c unit_fields.cpp.obj - 0002:0000b668 ??_C@_0O@EMAEPHOL@channelObject@ 100a0668 unit_fields.cpp.obj - 0002:0000b678 ??_C@_06KJINILIP@health@ 100a0678 unit_fields.cpp.obj - 0002:0000b680 ??_C@_06KBHLMNEH@power1@ 100a0680 unit_fields.cpp.obj - 0002:0000b688 ??_C@_06IKFGJOIE@power2@ 100a0688 unit_fields.cpp.obj - 0002:0000b690 ??_C@_06JDENKPMF@power3@ 100a0690 unit_fields.cpp.obj - 0002:0000b698 ??_C@_06NMAMDJAC@power4@ 100a0698 unit_fields.cpp.obj - 0002:0000b6a0 ??_C@_06MFBHAIED@power5@ 100a06a0 unit_fields.cpp.obj - 0002:0000b6a8 ??_C@_09IGCJFBJ@maxHealth@ 100a06a8 unit_fields.cpp.obj - 0002:0000b6b4 ??_C@_09JENDNB@maxPower1@ 100a06b4 unit_fields.cpp.obj - 0002:0000b6c0 ??_C@_09CLLJIABC@maxPower2@ 100a06c0 unit_fields.cpp.obj - 0002:0000b6cc ??_C@_09DCKCLBFD@maxPower3@ 100a06cc unit_fields.cpp.obj - 0002:0000b6d8 ??_C@_09HNODCHJE@maxPower4@ 100a06d8 unit_fields.cpp.obj - 0002:0000b6e4 ??_C@_09GEPIBGNF@maxPower5@ 100a06e4 unit_fields.cpp.obj - 0002:0000b6f0 ??_C@_05KJNJLLGA@level@ 100a06f0 unit_fields.cpp.obj - 0002:0000b6f8 ??_C@_0BA@HDIFLJID@factionTemplate@ 100a06f8 unit_fields.cpp.obj - 0002:0000b708 ??_C@_06NLMMIAIA@bytes0@ 100a0708 unit_fields.cpp.obj - 0002:0000b710 ??_C@_09BFHAFMLP@auraState@ 100a0710 unit_fields.cpp.obj - 0002:0000b71c ??_C@_0P@DGLGADKE@baseAttackTime@ 100a071c unit_fields.cpp.obj - 0002:0000b72c ??_C@_0BC@CGEKFAIO@offhandAttackTime@ 100a072c unit_fields.cpp.obj - 0002:0000b740 ??_C@_0BB@DNFLGEGG@rangedAttackTime@ 100a0740 unit_fields.cpp.obj - 0002:0000b754 ??_C@_0P@PGEDLHEL@boundingRadius@ 100a0754 unit_fields.cpp.obj - 0002:0000b764 ??_C@_0M@DOJLMCBI@combatReach@ 100a0764 unit_fields.cpp.obj - 0002:0000b770 ??_C@_09EJIHCEAC@displayId@ 100a0770 unit_fields.cpp.obj - 0002:0000b77c ??_C@_0BA@HLLMBDFA@nativeDisplayId@ 100a077c unit_fields.cpp.obj - 0002:0000b78c ??_C@_0P@HOLJBBID@mountDisplayId@ 100a078c unit_fields.cpp.obj - 0002:0000b79c ??_C@_0BB@LCJMKLPB@minOffhandDamage@ 100a079c unit_fields.cpp.obj - 0002:0000b7b0 ??_C@_0BB@KHBHHPAD@maxOffhandDamage@ 100a07b0 unit_fields.cpp.obj - 0002:0000b7c4 ??_C@_06MCNHLBMB@bytes1@ 100a07c4 unit_fields.cpp.obj - 0002:0000b7cc ??_C@_09DIJBEFAN@petNumber@ 100a07cc unit_fields.cpp.obj - 0002:0000b7d8 ??_C@_0BB@OMLEJGDP@petNameTimestamp@ 100a07d8 unit_fields.cpp.obj - 0002:0000b7ec ??_C@_0O@FGKOPGHG@petExperience@ 100a07ec unit_fields.cpp.obj - 0002:0000b7fc ??_C@_0BA@PAHIIHLL@petNextLevelExp@ 100a07fc unit_fields.cpp.obj - 0002:0000b80c ??_C@_0N@CMKAPPHA@dynamicFlags@ 100a080c unit_fields.cpp.obj - 0002:0000b81c ??_C@_0N@IEJBDBBA@channelSpell@ 100a081c unit_fields.cpp.obj - 0002:0000b82c ??_C@_0N@DHEPGEFO@modCastSpeed@ 100a082c unit_fields.cpp.obj - 0002:0000b83c ??_C@_0P@ENACAIIN@createdBySpell@ 100a083c unit_fields.cpp.obj - 0002:0000b84c ??_C@_08NEIKGCEE@npcFlags@ 100a084c unit_fields.cpp.obj - 0002:0000b858 ??_C@_0O@DDNCOFID@npcEmoteState@ 100a0858 unit_fields.cpp.obj - 0002:0000b868 ??_C@_0P@GKAKCLOA@trainingPoints@ 100a0868 unit_fields.cpp.obj - 0002:0000b878 ??_C@_05MAPNABCF@stat0@ 100a0878 unit_fields.cpp.obj - 0002:0000b880 ??_C@_05NJOGDAGE@stat1@ 100a0880 unit_fields.cpp.obj - 0002:0000b888 ??_C@_05PCMLGDKH@stat2@ 100a0888 unit_fields.cpp.obj - 0002:0000b890 ??_C@_05OLNAFCOG@stat3@ 100a0890 unit_fields.cpp.obj - 0002:0000b898 ??_C@_05KEJBMECB@stat4@ 100a0898 unit_fields.cpp.obj - 0002:0000b8a0 ??_C@_08OPMNAGFL@baseMana@ 100a08a0 unit_fields.cpp.obj - 0002:0000b8ac ??_C@_0L@PHGDMNPJ@baseHealth@ 100a08ac unit_fields.cpp.obj - 0002:0000b8b8 ??_C@_06OJPKOCAC@bytes2@ 100a08b8 unit_fields.cpp.obj - 0002:0000b8c0 ??_C@_0M@KIFIFFDF@attackPower@ 100a08c0 unit_fields.cpp.obj - 0002:0000b8cc ??_C@_0BA@IPAHCKCK@attackPowerMods@ 100a08cc unit_fields.cpp.obj - 0002:0000b8dc ??_C@_0BG@IHJMPLFM@attackPowerMultiplier@ 100a08dc unit_fields.cpp.obj - 0002:0000b8f4 ??_C@_0BC@JCJAIEDA@rangedAttackPower@ 100a08f4 unit_fields.cpp.obj - 0002:0000b908 ??_C@_0BG@PBLNABOL@rangedAttackPowerMods@ 100a0908 unit_fields.cpp.obj - 0002:0000b920 ??_C@_0BM@MHJJMDPM@rangedAttackPowerMultiplier@ 100a0920 unit_fields.cpp.obj - 0002:0000b93c ??_C@_0BA@DNGOHFNJ@minRangedDamage@ 100a093c unit_fields.cpp.obj - 0002:0000b94c ??_C@_0BA@GMJHMOIE@maxRangedDamage@ 100a094c unit_fields.cpp.obj - 0002:0000b95c ??_C@_0BD@KMOEPALK@virtualItemDisplay@ 100a095c unit_fields.cpp.obj - 0002:0000b970 ??_C@_0BA@CLDBCJMB@virtualItemInfo@ 100a0970 unit_fields.cpp.obj - 0002:0000b980 ??_C@_04OKPNOAGJ@aura@ 100a0980 unit_fields.cpp.obj - 0002:0000b988 ??_C@_09BEADLLCK@auraFlags@ 100a0988 unit_fields.cpp.obj - 0002:0000b994 ??_C@_0L@DDHBIJIK@auraLevels@ 100a0994 unit_fields.cpp.obj - 0002:0000b9a0 ??_C@_0BB@LCGCAOC@auraApplications@ 100a09a0 unit_fields.cpp.obj - 0002:0000b9b4 ??_C@_0BC@LHCFADJ@powerCostModifier@ 100a09b4 unit_fields.cpp.obj - 0002:0000b9c8 ??_C@_0BE@CIJMDBF@powerCostMultiplier@ 100a09c8 unit_fields.cpp.obj - 0002:0000b9e0 ??_C@_0CC@DBGAMKLH@Clearing?5all?5LUA?5table?5referenc@ 100a09e0 lua_refs.cpp.obj - 0002:0000ba08 ??_C@_01JLIPDDHJ@?3@ 100a0a08 pet.cpp.obj - 0002:0000ba0c ??_C@_09CLAEBCNP@SetCVar?$CI?$CC@ 100a0a0c pet.cpp.obj - 0002:0000ba18 ??_C@_03ECGFLOPC@?$CC?0?$CC@ 100a0a18 pet.cpp.obj - 0002:0000ba1c ??_C@_02HPDBCLII@?$CC?$CJ@ 100a0a1c pet.cpp.obj - 0002:0000ba20 ??_C@_09BDDDPAI@?0?5type?$DN0x@ 100a0a20 pet.cpp.obj - 0002:0000ba2c ??_C@_0M@GOPICMBL@?0?5actionId?$DN@ 100a0a2c pet.cpp.obj - 0002:0000ba38 ??_C@_0O@CKHBKLDB@?0?5actionData?$DN@ 100a0a38 pet.cpp.obj - 0002:0000ba48 ??_C@_07BENILPHP@?5?$CIslot?$DN@ 100a0a48 pet.cpp.obj - 0002:0000ba50 ??_C@_01NEMOKFLO@?$DN@ 100a0a50 pet.cpp.obj - 0002:0000ba54 ??_C@_06BDDGFKFE@Saved?5@ 100a0a54 pet.cpp.obj - 0002:0000ba5c ??_C@_0N@INIFLFEN@?5using?5cvar?5@ 100a0a5c pet.cpp.obj - 0002:0000ba6c ??_C@_0DA@MDLCCLEJ@Restoring?5greater?5demon?5autocas@ 100a0a6c pet.cpp.obj - 0002:0000ba9c ??_C@_0O@NAFNLGOM@?5packetsSent?$DN@ 100a0a9c pet.cpp.obj - 0002:0000baac ??_C@_06OLNLBFGA@?5cvar?$DN@ 100a0aac pet.cpp.obj - 0002:0000bab4 ??_C@_09GDNAMLML@?5petGuid?$DN@ 100a0ab4 pet.cpp.obj - 0002:0000bac0 ??_C@_0CP@BMGMGPMF@Restored?5greater?5demon?5autocast@ 100a0ac0 pet.cpp.obj - 0002:0000baf0 ??_C@_0BO@ELNPEJDB@Active?5pet?5guid?5changed?5from?5@ 100a0af0 pet.cpp.obj - 0002:0000bb10 ??_C@_0DE@FOBNBOMJ@Saving?5greater?5demon?5autocast?5p@ 100a0b10 pet.cpp.obj - 0002:0000bcc0 ??_C@_03BPGDPAOH@npc@ 100a0cc0 unit.cpp.obj - 0002:0000bcc4 ??_C@_09NMJMJAPE@mouseover@ 100a0cc4 unit.cpp.obj - 0002:0000bcd0 ??_C@_06LHGBPMFM@party1@ 100a0cd0 unit.cpp.obj - 0002:0000bcd8 ??_C@_06JMEMKPJP@party2@ 100a0cd8 unit.cpp.obj - 0002:0000bce0 ??_C@_06IFFHJONO@party3@ 100a0ce0 unit.cpp.obj - 0002:0000bce8 ??_C@_06MKBGAIBJ@party4@ 100a0ce8 unit.cpp.obj - 0002:0000bcf0 ??_C@_09BLNEJJOK@partypet1@ 100a0cf0 unit.cpp.obj - 0002:0000bcfc ??_C@_09DAPJMKCJ@partypet2@ 100a0cfc unit.cpp.obj - 0002:0000bd08 ??_C@_09CJOCPLGI@partypet3@ 100a0d08 unit.cpp.obj - 0002:0000bd14 ??_C@_09GGKDGNKP@partypet4@ 100a0d14 unit.cpp.obj - 0002:0000bd20 ??_C@_05GDCIHAKM@raid1@ 100a0d20 unit.cpp.obj - 0002:0000bd28 ??_C@_05EIAFCDGP@raid2@ 100a0d28 unit.cpp.obj - 0002:0000bd30 ??_C@_05FBBOBCCO@raid3@ 100a0d30 unit.cpp.obj - 0002:0000bd38 ??_C@_05BOFPIEOJ@raid4@ 100a0d38 unit.cpp.obj - 0002:0000bd40 ??_C@_05HEELFKI@raid5@ 100a0d40 unit.cpp.obj - 0002:0000bd48 ??_C@_05CMGJOGGL@raid6@ 100a0d48 unit.cpp.obj - 0002:0000bd50 ??_C@_05DFHCNHCK@raid7@ 100a0d50 unit.cpp.obj - 0002:0000bd58 ??_C@_05LCOKMLOF@raid8@ 100a0d58 unit.cpp.obj - 0002:0000bd60 ??_C@_05KLPBPKKE@raid9@ 100a0d60 unit.cpp.obj - 0002:0000bd68 ??_C@_06EFPBEA@raid10@ 100a0d68 unit.cpp.obj - 0002:0000bd70 ??_C@_06BJFOMAAB@raid11@ 100a0d70 unit.cpp.obj - 0002:0000bd78 ??_C@_06DCHDJDMC@raid12@ 100a0d78 unit.cpp.obj - 0002:0000bd80 ??_C@_06CLGIKCID@raid13@ 100a0d80 unit.cpp.obj - 0002:0000bd88 ??_C@_06GECJDEEE@raid14@ 100a0d88 unit.cpp.obj - 0002:0000bd90 ??_C@_06HNDCAFAF@raid15@ 100a0d90 unit.cpp.obj - 0002:0000bd98 ??_C@_06FGBPFGMG@raid16@ 100a0d98 unit.cpp.obj - 0002:0000bda0 ??_C@_06EPAEGHIH@raid17@ 100a0da0 unit.cpp.obj - 0002:0000bda8 ??_C@_06MIJMHLEI@raid18@ 100a0da8 unit.cpp.obj - 0002:0000bdb0 ??_C@_06NBIHEKAJ@raid19@ 100a0db0 unit.cpp.obj - 0002:0000bdb8 ??_C@_06CADEPBJ@raid20@ 100a0db8 unit.cpp.obj - 0002:0000bdc0 ??_C@_06BLBIHOFI@raid21@ 100a0dc0 unit.cpp.obj - 0002:0000bdc8 ??_C@_06DADFCNJL@raid22@ 100a0dc8 unit.cpp.obj - 0002:0000bdd0 ??_C@_06CJCOBMNK@raid23@ 100a0dd0 unit.cpp.obj - 0002:0000bdd8 ??_C@_06GGGPIKBN@raid24@ 100a0dd8 unit.cpp.obj - 0002:0000bde0 ??_C@_06HPHELLFM@raid25@ 100a0de0 unit.cpp.obj - 0002:0000bde8 ??_C@_06FEFJOIJP@raid26@ 100a0de8 unit.cpp.obj - 0002:0000bdf0 ??_C@_06ENECNJNO@raid27@ 100a0df0 unit.cpp.obj - 0002:0000bdf8 ??_C@_06MKNKMFBB@raid28@ 100a0df8 unit.cpp.obj - 0002:0000be00 ??_C@_06NDMBPEFA@raid29@ 100a0e00 unit.cpp.obj - 0002:0000be08 ??_C@_06DMBCFCO@raid30@ 100a0e08 unit.cpp.obj - 0002:0000be10 ??_C@_06BKNKBEGP@raid31@ 100a0e10 unit.cpp.obj - 0002:0000be18 ??_C@_06DBPHEHKM@raid32@ 100a0e18 unit.cpp.obj - 0002:0000be20 ??_C@_06CIOMHGON@raid33@ 100a0e20 unit.cpp.obj - 0002:0000be28 ??_C@_06GHKNOACK@raid34@ 100a0e28 unit.cpp.obj - 0002:0000be30 ??_C@_06HOLGNBGL@raid35@ 100a0e30 unit.cpp.obj - 0002:0000be38 ??_C@_06FFJLICKI@raid36@ 100a0e38 unit.cpp.obj - 0002:0000be40 ??_C@_06EMIALDOJ@raid37@ 100a0e40 unit.cpp.obj - 0002:0000be48 ??_C@_06MLBIKPCG@raid38@ 100a0e48 unit.cpp.obj - 0002:0000be50 ??_C@_06NCADJOGH@raid39@ 100a0e50 unit.cpp.obj - 0002:0000be58 ??_C@_06GIODDKL@raid40@ 100a0e58 unit.cpp.obj - 0002:0000be60 ??_C@_08DGCGMEJN@raidpet1@ 100a0e60 unit.cpp.obj - 0002:0000be6c ??_C@_08BNALJHFO@raidpet2@ 100a0e6c unit.cpp.obj - 0002:0000be78 ??_C@_08EBAKGBP@raidpet3@ 100a0e78 unit.cpp.obj - 0002:0000be84 ??_C@_08ELFBDANI@raidpet4@ 100a0e84 unit.cpp.obj - 0002:0000be90 ??_C@_08FCEKABJJ@raidpet5@ 100a0e90 unit.cpp.obj - 0002:0000be9c ??_C@_08HJGHFCFK@raidpet6@ 100a0e9c unit.cpp.obj - 0002:0000bea8 ??_C@_08GAHMGDBL@raidpet7@ 100a0ea8 unit.cpp.obj - 0002:0000beb4 ??_C@_08OHOEHPNE@raidpet8@ 100a0eb4 unit.cpp.obj - 0002:0000bec0 ??_C@_08POPPEOJF@raidpet9@ 100a0ec0 unit.cpp.obj - 0002:0000becc ??_C@_09FBMOPPMO@raidpet10@ 100a0ecc unit.cpp.obj - 0002:0000bed8 ??_C@_09EINFMOIP@raidpet11@ 100a0ed8 unit.cpp.obj - 0002:0000bee4 ??_C@_09GDPIJNEM@raidpet12@ 100a0ee4 unit.cpp.obj - 0002:0000bef0 ??_C@_09HKODKMAN@raidpet13@ 100a0ef0 unit.cpp.obj - 0002:0000befc ??_C@_09DFKCDKMK@raidpet14@ 100a0efc unit.cpp.obj - 0002:0000bf08 ??_C@_09CMLJALIL@raidpet15@ 100a0f08 unit.cpp.obj - 0002:0000bf14 ??_C@_09HJEFIEI@raidpet16@ 100a0f14 unit.cpp.obj - 0002:0000bf20 ??_C@_09BOIPGJAJ@raidpet17@ 100a0f20 unit.cpp.obj - 0002:0000bf2c ??_C@_09JJBHHFMG@raidpet18@ 100a0f2c unit.cpp.obj - 0002:0000bf38 ??_C@_09IAAMEEIH@raidpet19@ 100a0f38 unit.cpp.obj - 0002:0000bf44 ??_C@_09FDIIEBJH@raidpet20@ 100a0f44 unit.cpp.obj - 0002:0000bf50 ??_C@_09EKJDHANG@raidpet21@ 100a0f50 unit.cpp.obj - 0002:0000bf5c ??_C@_09GBLOCDBF@raidpet22@ 100a0f5c unit.cpp.obj - 0002:0000bf68 ??_C@_09HIKFBCFE@raidpet23@ 100a0f68 unit.cpp.obj - 0002:0000bf74 ??_C@_09DHOEIEJD@raidpet24@ 100a0f74 unit.cpp.obj - 0002:0000bf80 ??_C@_09COPPLFNC@raidpet25@ 100a0f80 unit.cpp.obj - 0002:0000bf8c ??_C@_09FNCOGBB@raidpet26@ 100a0f8c unit.cpp.obj - 0002:0000bf98 ??_C@_09BMMJNHFA@raidpet27@ 100a0f98 unit.cpp.obj - 0002:0000bfa4 ??_C@_09JLFBMLJP@raidpet28@ 100a0fa4 unit.cpp.obj - 0002:0000bfb0 ??_C@_09ICEKPKNO@raidpet29@ 100a0fb0 unit.cpp.obj - 0002:0000bfbc ??_C@_09FCEKCLKA@raidpet30@ 100a0fbc unit.cpp.obj - 0002:0000bfc8 ??_C@_09ELFBBKOB@raidpet31@ 100a0fc8 unit.cpp.obj - 0002:0000bfd4 ??_C@_09GAHMEJCC@raidpet32@ 100a0fd4 unit.cpp.obj - 0002:0000bfe0 ??_C@_09HJGHHIGD@raidpet33@ 100a0fe0 unit.cpp.obj - 0002:0000bfec ??_C@_09DGCGOOKE@raidpet34@ 100a0fec unit.cpp.obj - 0002:0000bff8 ??_C@_09CPDNNPOF@raidpet35@ 100a0ff8 unit.cpp.obj - 0002:0000c004 ??_C@_09EBAIMCG@raidpet36@ 100a1004 unit.cpp.obj - 0002:0000c010 ??_C@_09BNALLNGH@raidpet37@ 100a1010 unit.cpp.obj - 0002:0000c01c ??_C@_09JKJDKBKI@raidpet38@ 100a101c unit.cpp.obj - 0002:0000c028 ??_C@_09IDIIJAOJ@raidpet39@ 100a1028 unit.cpp.obj - 0002:0000c034 ??_C@_09FHAFDNCF@raidpet40@ 100a1034 unit.cpp.obj - 0002:0000c064 ??_C@_08FOLAHAHG@CRITICAL@ 100a1064 unit.cpp.obj - 0002:0000c070 ??_C@_08DGGKALMK@GLANCING@ 100a1070 unit.cpp.obj - 0002:0000c07c ??_C@_08FJLOOBFG@CRUSHING@ 100a107c unit.cpp.obj - 0002:0000c088 ??_C@_06NDMMNPAC@ABSORB@ 100a1088 unit.cpp.obj - 0002:0000c090 ??_C@_05DDIIKNEP@BLOCK@ 100a1090 unit.cpp.obj - 0002:0000c098 ??_C@_06KAMOOJNF@RESIST@ 100a1098 unit.cpp.obj - 0002:0000c0a0 __pDestructExceptionObject 100a10a0 libvcruntime:ehhelpers.obj - 0002:0000c0a8 ??_7bad_typeid@std@@6B@ 100a10a8 libvcruntime:rtti.obj - 0002:0000c0b4 ??_7__non_rtti_object@std@@6B@ 100a10b4 libvcruntime:rtti.obj - 0002:0000c0bc ??_C@_0CB@CGKGGDFI@Access?5violation?5?9?5no?5RTTI?5data@ 100a10bc libvcruntime:rtti.obj - 0002:0000c0e0 ??_C@_0CH@OLLMPELC@Attempted?5a?5typeid?5of?5nullptr?5p@ 100a10e0 libvcruntime:rtti.obj - 0002:0000c108 ??_C@_0CB@EEENAAHH@Bad?5read?5pointer?5?9?5no?5RTTI?5data@ 100a1108 libvcruntime:rtti.obj - 0002:0000c12c ??_C@_0BC@JNJNLHBP@Bad?5dynamic_cast?$CB@ 100a112c libvcruntime:rtti.obj - 0002:0000c4c8 ??_C@_08EHJDFFNH@__based?$CI@ 100a14c8 libvcruntime:undname.obj - 0002:0000c4d4 ??_C@_07KOLFKCDI@__cdecl@ 100a14d4 libvcruntime:undname.obj - 0002:0000c4dc ??_C@_08GHMPAG@__pascal@ 100a14dc libvcruntime:undname.obj - 0002:0000c4e8 ??_C@_09IFJBGAPI@__stdcall@ 100a14e8 libvcruntime:undname.obj - 0002:0000c4f4 ??_C@_0L@NPHFGOKO@__thiscall@ 100a14f4 libvcruntime:undname.obj - 0002:0000c500 ??_C@_0L@JMKHOMEK@__fastcall@ 100a1500 libvcruntime:undname.obj - 0002:0000c50c ??_C@_0N@BCKKPABJ@__vectorcall@ 100a150c libvcruntime:undname.obj - 0002:0000c51c ??_C@_09HIJEGCPM@__clrcall@ 100a151c libvcruntime:undname.obj - 0002:0000c528 ??_C@_06GHPCKEAG@__eabi@ 100a1528 libvcruntime:undname.obj - 0002:0000c530 ??_C@_09IOPIDJLG@__swift_1@ 100a1530 libvcruntime:undname.obj - 0002:0000c53c ??_C@_09KFNFGKHF@__swift_2@ 100a153c libvcruntime:undname.obj - 0002:0000c548 ??_C@_09LMMOFLDE@__swift_3@ 100a1548 libvcruntime:undname.obj - 0002:0000c554 ??_C@_07JOMMBBKO@__ptr64@ 100a1554 libvcruntime:undname.obj - 0002:0000c55c ??_C@_0L@PILCLIHE@__restrict@ 100a155c libvcruntime:undname.obj - 0002:0000c568 ??_C@_0M@GFIIJFMG@__unaligned@ 100a1568 libvcruntime:undname.obj - 0002:0000c574 ??_C@_09DHDLOLLB@restrict?$CI@ 100a1574 libvcruntime:undname.obj - 0002:0000c580 ??_C@_04NIHEBCM@?5new@ 100a1580 libvcruntime:undname.obj - 0002:0000c588 ??_C@_07FPCDHGMM@?5delete@ 100a1588 libvcruntime:undname.obj - 0002:0000c590 ??_C@_02GPIOPFAK@?$DO?$DO@ 100a1590 libvcruntime:undname.obj - 0002:0000c594 ??_C@_02FODMEDOG@?$DM?$DM@ 100a1594 libvcruntime:undname.obj - 0002:0000c598 ??_C@_01DCLJPIOD@?$CB@ 100a1598 libvcruntime:undname.obj - 0002:0000c59c ??_C@_02EGOFBIJA@?$DN?$DN@ 100a159c libvcruntime:undname.obj - 0002:0000c5a0 ??_C@_02FDNJECIE@?$CB?$DN@ 100a15a0 libvcruntime:undname.obj - 0002:0000c5a4 ??_C@_02GPECMEKF@?$FL?$FN@ 100a15a4 libvcruntime:undname.obj - 0002:0000c5a8 ??_C@_08LHJFAFGD@operator@ 100a15a8 libvcruntime:undname.obj - 0002:0000c5b4 ??_C@_02HBOOOICD@?9?$DO@ 100a15b4 libvcruntime:undname.obj - 0002:0000c5b8 ??_C@_01NBENCBCI@?$CK@ 100a15b8 libvcruntime:undname.obj - 0002:0000c5bc ??_C@_02ECNGHCIF@?$CL?$CL@ 100a15bc libvcruntime:undname.obj - 0002:0000c5c0 ??_C@_02BAABKJLB@?9?9@ 100a15c0 libvcruntime:undname.obj - 0002:0000c5c4 ??_C@_01JOAMLHOP@?9@ 100a15c4 libvcruntime:undname.obj - 0002:0000c5c8 ??_C@_01MIFGBAGJ@?$CL@ 100a15c8 libvcruntime:undname.obj - 0002:0000c5cc ??_C@_01HNPIGOCE@?$CG@ 100a15cc libvcruntime:undname.obj - 0002:0000c5d0 ??_C@_03MNHNFDLC@?9?$DO?$CK@ 100a15d0 libvcruntime:undname.obj - 0002:0000c5d4 ??_C@_01KMDKNFGN@?1@ 100a15d4 libvcruntime:undname.obj - 0002:0000c5d8 ??_C@_01FGNFDNOH@?$CF@ 100a15d8 libvcruntime:undname.obj - 0002:0000c5dc ??_C@_01MNNFJEPP@?$DM@ 100a15dc libvcruntime:undname.obj - 0002:0000c5e0 ??_C@_02EHCHHCKH@?$DM?$DN@ 100a15e0 libvcruntime:undname.obj - 0002:0000c5e4 ??_C@_01PPODPGHN@?$DO@ 100a15e4 libvcruntime:undname.obj - 0002:0000c5e8 ??_C@_02EEKDKGMJ@?$DO?$DN@ 100a15e8 libvcruntime:undname.obj - 0002:0000c5ec ??_C@_02HCKGKOFO@?$CI?$CJ@ 100a15ec libvcruntime:undname.obj - 0002:0000c5f0 ??_C@_01PJKLJHI@?$HO@ 100a15f0 libvcruntime:undname.obj - 0002:0000c5f4 ??_C@_01JKBOJNNK@?$FO@ 100a15f4 libvcruntime:undname.obj - 0002:0000c5f8 ??_C@_01DNKMNLPK@?$HM@ 100a15f8 libvcruntime:undname.obj - 0002:0000c5fc ??_C@_02PPKAJPJL@?$CG?$CG@ 100a15fc libvcruntime:undname.obj - 0002:0000c600 ??_C@_02NONPIBCD@?$HM?$HM@ 100a1600 libvcruntime:undname.obj - 0002:0000c604 ??_C@_02FPIMKNGF@?$CK?$DN@ 100a1604 libvcruntime:undname.obj - 0002:0000c608 ??_C@_02FOEOMHFC@?$CL?$DN@ 100a1608 libvcruntime:undname.obj - 0002:0000c60c ??_C@_02FKMDLLOA@?9?$DN@ 100a160c libvcruntime:undname.obj - 0002:0000c610 ??_C@_02FJEHGPIO@?1?$DN@ 100a1610 libvcruntime:undname.obj - 0002:0000c614 ??_C@_02FENAOKFI@?$CF?$DN@ 100a1614 libvcruntime:undname.obj - 0002:0000c618 ??_C@_03IKFCCPFF@?$DO?$DO?$DN@ 100a1618 libvcruntime:undname.obj - 0002:0000c61c ??_C@_03CDNPDDLA@?$DM?$DM?$DN@ 100a161c libvcruntime:undname.obj - 0002:0000c620 ??_C@_02FGJGFEAB@?$CG?$DN@ 100a1620 libvcruntime:undname.obj - 0002:0000c624 ??_C@_02DHLNPPGH@?$HM?$DN@ 100a1624 libvcruntime:undname.obj - 0002:0000c628 ??_C@_02MHEGNOJ@?$FO?$DN@ 100a1628 libvcruntime:undname.obj - 0002:0000c62c ??_C@_09IFPLHPGF@?$GAvftable?8@ 100a162c libvcruntime:undname.obj - 0002:0000c638 ??_C@_09BLBHBJP@?$GAvbtable?8@ 100a1638 libvcruntime:undname.obj - 0002:0000c644 ??_C@_07FEEIOKP@?$GAvcall?8@ 100a1644 libvcruntime:undname.obj - 0002:0000c64c ??_C@_08LLFFHHDJ@?$GAtypeof?8@ 100a164c libvcruntime:undname.obj - 0002:0000c658 ??_C@_0BF@KDPPACIK@?$GAlocal?5static?5guard?8@ 100a1658 libvcruntime:undname.obj - 0002:0000c670 ??_C@_08OBABFOLI@?$GAstring?8@ 100a1670 libvcruntime:undname.obj - 0002:0000c67c ??_C@_0BD@JDLKDPAB@?$GAvbase?5destructor?8@ 100a167c libvcruntime:undname.obj - 0002:0000c690 ??_C@_0BN@DEGPLNFK@?$GAvector?5deleting?5destructor?8@ 100a1690 libvcruntime:undname.obj - 0002:0000c6b0 ??_C@_0BO@OBMKPJIG@?$GAdefault?5constructor?5closure?8@ 100a16b0 libvcruntime:undname.obj - 0002:0000c6d0 ??_C@_0BN@IMDCHIKM@?$GAscalar?5deleting?5destructor?8@ 100a16d0 libvcruntime:undname.obj - 0002:0000c6f0 ??_C@_0BO@PFGOCPJJ@?$GAvector?5constructor?5iterator?8@ 100a16f0 libvcruntime:undname.obj - 0002:0000c710 ??_C@_0BN@LFPFMEDL@?$GAvector?5destructor?5iterator?8@ 100a1710 libvcruntime:undname.obj - 0002:0000c730 ??_C@_0CE@IKBNEHA@?$GAvector?5vbase?5constructor?5itera@ 100a1730 libvcruntime:undname.obj - 0002:0000c754 ??_C@_0BL@NILFHHPC@?$GAvirtual?5displacement?5map?8@ 100a1754 libvcruntime:undname.obj - 0002:0000c770 ??_C@_0CB@JONCMFFK@?$GAeh?5vector?5constructor?5iterator@ 100a1770 libvcruntime:undname.obj - 0002:0000c794 ??_C@_0CA@GCEOPDGL@?$GAeh?5vector?5destructor?5iterator?8@ 100a1794 libvcruntime:undname.obj - 0002:0000c7b4 ??_C@_0CH@OOJPLCPH@?$GAeh?5vector?5vbase?5constructor?5it@ 100a17b4 libvcruntime:undname.obj - 0002:0000c7dc ??_C@_0BL@LLKPOHJI@?$GAcopy?5constructor?5closure?8@ 100a17dc libvcruntime:undname.obj - 0002:0000c7f8 ??_C@_0BA@KBCDOMBN@?$GAudt?5returning?8@ 100a17f8 libvcruntime:undname.obj - 0002:0000c808 ??_C@_03KLGMFNMG@?$GAEH@ 100a1808 libvcruntime:undname.obj - 0002:0000c80c ??_C@_05KHLCHHI@?$GARTTI@ 100a180c libvcruntime:undname.obj - 0002:0000c814 ??_C@_0BA@KKLDJDLB@?$GAlocal?5vftable?8@ 100a1814 libvcruntime:undname.obj - 0002:0000c824 ??_C@_0CE@IIHCMGGL@?$GAlocal?5vftable?5constructor?5clos@ 100a1824 libvcruntime:undname.obj - 0002:0000c848 ??_C@_06FHBGPFGH@?5new?$FL?$FN@ 100a1848 libvcruntime:undname.obj - 0002:0000c850 ??_C@_09LBNFPBCA@?5delete?$FL?$FN@ 100a1850 libvcruntime:undname.obj - 0002:0000c85c ??_C@_0P@HJKNJFNN@?$GAomni?5callsig?8@ 100a185c libvcruntime:undname.obj - 0002:0000c86c ??_C@_0BL@CNOONJFP@?$GAplacement?5delete?5closure?8@ 100a186c libvcruntime:undname.obj - 0002:0000c888 ??_C@_0BN@CKNJLHMB@?$GAplacement?5delete?$FL?$FN?5closure?8@ 100a1888 libvcruntime:undname.obj - 0002:0000c8a8 ??_C@_0CG@CFDHKGGD@?$GAmanaged?5vector?5constructor?5ite@ 100a18a8 libvcruntime:undname.obj - 0002:0000c8d0 ??_C@_0CF@IMGKMJNO@?$GAmanaged?5vector?5destructor?5iter@ 100a18d0 libvcruntime:undname.obj - 0002:0000c8f8 ??_C@_0CG@HLDDJMAG@?$GAeh?5vector?5copy?5constructor?5ite@ 100a18f8 libvcruntime:undname.obj - 0002:0000c920 ??_C@_0CM@FCBBDIGB@?$GAeh?5vector?5vbase?5copy?5construct@ 100a1920 libvcruntime:undname.obj - 0002:0000c94c ??_C@_0BL@CLIPGLGB@?$GAdynamic?5initializer?5for?5?8@ 100a194c libvcruntime:undname.obj - 0002:0000c968 ??_C@_0CB@PDBIFEP@?$GAdynamic?5atexit?5destructor?5for?5@ 100a1968 libvcruntime:undname.obj - 0002:0000c98c ??_C@_0CD@CGAJBKEJ@?$GAvector?5copy?5constructor?5iterat@ 100a198c libvcruntime:undname.obj - 0002:0000c9b0 ??_C@_0CJ@GJELGAMM@?$GAvector?5vbase?5copy?5constructor?5@ 100a19b0 libvcruntime:undname.obj - 0002:0000c9dc ??_C@_0CL@FGIJHLCE@?$GAmanaged?5vector?5copy?5constructo@ 100a19dc libvcruntime:undname.obj - 0002:0000ca08 ??_C@_0BM@PMGGMLDN@?$GAlocal?5static?5thread?5guard?8@ 100a1a08 libvcruntime:undname.obj - 0002:0000ca24 ??_C@_0N@BDNMDMOL@operator?5?$CC?$CC?5@ 100a1a24 libvcruntime:undname.obj - 0002:0000ca34 ??_C@_0BC@GGEBGALA@operator?5co_await@ 100a1a34 libvcruntime:undname.obj - 0002:0000ca48 ??_C@_0M@GAAIMMOH@operator?$DM?$DN?$DO@ 100a1a48 libvcruntime:undname.obj - 0002:0000ca54 ??_C@_0BC@DAFEJGAK@?5Type?5Descriptor?8@ 100a1a54 libvcruntime:undname.obj - 0002:0000ca68 ??_C@_0BM@LDKODKLH@?5Base?5Class?5Descriptor?5at?5?$CI@ 100a1a68 libvcruntime:undname.obj - 0002:0000ca84 ??_C@_0BD@LGICGFMM@?5Base?5Class?5Array?8@ 100a1a84 libvcruntime:undname.obj - 0002:0000ca98 ??_C@_0BN@MECKDCOJ@?5Class?5Hierarchy?5Descriptor?8@ 100a1a98 libvcruntime:undname.obj - 0002:0000cab8 ??_C@_0BK@CFCOFLF@?5Complete?5Object?5Locator?8@ 100a1ab8 libvcruntime:undname.obj - 0002:0000cad4 ??_C@_0BG@JNJLAMPM@?$GAanonymous?5namespace?8@ 100a1ad4 libvcruntime:undname.obj - 0002:0000caec ??_C@_04HEJADOOB@CV?3?5@ 100a1aec libvcruntime:undname.obj - 0002:0000caf4 ??_C@_02MOLJINC@?3?3@ 100a1af4 libvcruntime:undname.obj - 0002:0000caf8 ??_C@_0BE@JAEOCHPE@template?9parameter?9@ 100a1af8 libvcruntime:undname.obj - 0002:0000cb0c ??_C@_0BF@LNLGBBNL@?$GAtemplate?9parameter?9@ 100a1b0c libvcruntime:undname.obj - 0002:0000cb24 ??_C@_0O@KHGCOMHP@generic?9type?9@ 100a1b24 libvcruntime:undname.obj - 0002:0000cb34 ??_C@_0P@ODDENDLM@?$GAgeneric?9type?9@ 100a1b34 libvcruntime:undname.obj - 0002:0000cb44 ??_C@_02OHHJMEON@?8?8@ 100a1b44 libvcruntime:undname.obj - 0002:0000cb48 ??_C@_0BN@IBLMMFAP@?$GAnon?9type?9template?9parameter@ 100a1b48 libvcruntime:undname.obj - 0002:0000cb68 ??_C@_03DLDNIBIK@?$CFlf@ 100a1b68 libvcruntime:undname.obj - 0002:0000cb6c ??_C@_04OFALKAJ@?$DP?$DP_C@ 100a1b6c libvcruntime:undname.obj - 0002:0000cb74 ??_C@_03KHICJKCI@?4?4?4@ 100a1b74 libvcruntime:undname.obj - 0002:0000cb78 ??_C@_04HIBGFPH@NULL@ 100a1b78 libvcruntime:undname.obj - 0002:0000cb80 ??_C@_02DPKJAMEF@?$CFd@ 100a1b80 libvcruntime:undname.obj - 0002:0000cb84 ??_C@_0BK@IHCCFNEL@?$GAtemplate?9type?9parameter?9@ 100a1b84 libvcruntime:undname.obj - 0002:0000cba0 ??_C@_0BK@OFCNNNKO@?$GAgeneric?9class?9parameter?9@ 100a1ba0 libvcruntime:undname.obj - 0002:0000cbbc ??_C@_0BL@NGJBLFIL@?$GAgeneric?9method?9parameter?9@ 100a1bbc libvcruntime:undname.obj - 0002:0000cbd8 ??_C@_07OHNGEDJK@nullptr@ 100a1bd8 libvcruntime:undname.obj - 0002:0000cbe0 ??_C@_06COJIGPIB@lambda@ 100a1be0 libvcruntime:undname.obj - 0002:0000cbe8 ??_C@_04GKJNKENE@void@ 100a1be8 libvcruntime:undname.obj - 0002:0000cbf0 ??_C@_0BE@EODMJLIF@?$GAtemplate?9parameter@ 100a1bf0 libvcruntime:undname.obj - 0002:0000cc04 ??_C@_03OPGICMGF@?$HN?8?5@ 100a1c04 libvcruntime:undname.obj - 0002:0000cc08 ??_C@_02IGFCGPIL@?$HN?8@ 100a1c08 libvcruntime:undname.obj - 0002:0000cc0c ??_C@_0N@CBHHHENL@?$GAvtordispex?$HL@ 100a1c0c libvcruntime:undname.obj - 0002:0000cc1c ??_C@_0L@GHPFDFH@?$GAvtordisp?$HL@ 100a1c1c libvcruntime:undname.obj - 0002:0000cc28 ??_C@_0L@HNGCOGAE@?$GAadjustor?$HL@ 100a1c28 libvcruntime:undname.obj - 0002:0000cc34 ??_C@_0CB@KJDOOODE@?$GAlocal?5static?5destructor?5helper@ 100a1c34 libvcruntime:undname.obj - 0002:0000cc58 ??_C@_0DB@ILEFOCIJ@?$GAtemplate?5static?5data?5member?5co@ 100a1c58 libvcruntime:undname.obj - 0002:0000cc8c ??_C@_0DA@HGFJFBBE@?$GAtemplate?5static?5data?5member?5de@ 100a1c8c libvcruntime:undname.obj - 0002:0000ccbc ??_C@_07PGOEDBHP@static?5@ 100a1cbc libvcruntime:undname.obj - 0002:0000ccc4 ??_C@_08NIEOINHE@virtual?5@ 100a1cc4 libvcruntime:undname.obj - 0002:0000ccd0 ??_C@_09LAPHOOG@private?3?5@ 100a1cd0 libvcruntime:undname.obj - 0002:0000ccdc ??_C@_0M@GAIFPFIP@protected?3?5@ 100a1cdc libvcruntime:undname.obj - 0002:0000cce8 ??_C@_08GPDDCMKI@public?3?5@ 100a1ce8 libvcruntime:undname.obj - 0002:0000ccf4 ??_C@_08KJLFOPNE@?$FLthunk?$FN?3@ 100a1cf4 libvcruntime:undname.obj - 0002:0000cd00 ??_C@_0M@DHNBOJMP@extern?5?$CCC?$CC?5@ 100a1d00 libvcruntime:undname.obj - 0002:0000cd0c ??_C@_02KCKGHPCA@?$CJ?5@ 100a1d0c libvcruntime:undname.obj - 0002:0000cd10 ??_C@_05CIHEBHNO@char?5@ 100a1d10 libvcruntime:undname.obj - 0002:0000cd18 ??_C@_06EHJMALKF@short?5@ 100a1d18 libvcruntime:undname.obj - 0002:0000cd20 ??_C@_04LAHKHJMA@int?5@ 100a1d20 libvcruntime:undname.obj - 0002:0000cd28 ??_C@_05CJIMAING@long?5@ 100a1d28 libvcruntime:undname.obj - 0002:0000cd30 ??_C@_09EBBEKKIH@unsigned?5@ 100a1d30 libvcruntime:undname.obj - 0002:0000cd3c ??_C@_05BEFAKPML@void?5@ 100a1d3c libvcruntime:undname.obj - 0002:0000cd44 ??_C@_09GAIEOBLP@volatile?5@ 100a1d44 libvcruntime:undname.obj - 0002:0000cd50 ??_C@_08PABEKFH@volatile@ 100a1d50 libvcruntime:undname.obj - 0002:0000cd5c ??_C@_0BA@LKIJLKPP@std?3?3nullptr_t?5@ 100a1d5c libvcruntime:undname.obj - 0002:0000cd6c ??_C@_0P@GCOCNKDM@std?3?3nullptr_t@ 100a1d6c libvcruntime:undname.obj - 0002:0000cd7c ??_C@_0L@EGPHHEKN@?$DMellipsis?$DO@ 100a1d7c libvcruntime:undname.obj - 0002:0000cd88 ??_C@_04EENFHACM@?0?4?4?4@ 100a1d88 libvcruntime:undname.obj - 0002:0000cd90 ??_C@_0M@ELJOJFFH@?0?$DMellipsis?$DO@ 100a1d90 libvcruntime:undname.obj - 0002:0000cd9c ??_C@_09DNHFEOJI@?5noexcept@ 100a1d9c libvcruntime:undname.obj - 0002:0000cda8 ??_C@_03PBJBJNON@cpu@ 100a1da8 libvcruntime:undname.obj - 0002:0000cdac ??_C@_03DCBBJBAA@amp@ 100a1dac libvcruntime:undname.obj - 0002:0000cdb0 ??_C@_04ENMBGAPA@char@ 100a1db0 libvcruntime:undname.obj - 0002:0000cdb8 ??_C@_05BFKKPKCG@short@ 100a1db8 libvcruntime:undname.obj - 0002:0000cdc0 ??_C@_03JBIPMCLC@int@ 100a1dc0 libvcruntime:undname.obj - 0002:0000cdc4 ??_C@_04GOKPGOLB@long@ 100a1dc4 libvcruntime:undname.obj - 0002:0000cdcc ??_C@_05KNFBNCOH@float@ 100a1dcc libvcruntime:undname.obj - 0002:0000cdd4 ??_C@_06BNJCAIGJ@double@ 100a1dd4 libvcruntime:undname.obj - 0002:0000cddc ??_C@_04DDKJGDCM@bool@ 100a1ddc libvcruntime:undname.obj - 0002:0000cde4 ??_C@_06EBGKOKIG@__int8@ 100a1de4 libvcruntime:undname.obj - 0002:0000cdec ??_C@_07ICFHOGAF@__int16@ 100a1dec libvcruntime:undname.obj - 0002:0000cdf4 ??_C@_07OFLPPHGP@__int32@ 100a1df4 libvcruntime:undname.obj - 0002:0000cdfc ??_C@_07LFCOJCAC@__int64@ 100a1dfc libvcruntime:undname.obj - 0002:0000ce04 ??_C@_08GAHOLHEO@__int128@ 100a1e04 libvcruntime:undname.obj - 0002:0000ce10 ??_C@_09EEKGDCPH@?$DMunknown?$DO@ 100a1e10 libvcruntime:undname.obj - 0002:0000ce1c ??_C@_07CFHGOPCN@char8_t@ 100a1e1c libvcruntime:undname.obj - 0002:0000ce24 ??_C@_08HBIPOFJB@char16_t@ 100a1e24 libvcruntime:undname.obj - 0002:0000ce30 ??_C@_08IECNCBKG@char32_t@ 100a1e30 libvcruntime:undname.obj - 0002:0000ce3c ??_C@_07CLGGIAMF@wchar_t@ 100a1e3c libvcruntime:undname.obj - 0002:0000ce44 ??_C@_04HAPDLBFF@auto@ 100a1e44 libvcruntime:undname.obj - 0002:0000ce4c ??_C@_0P@LHCGKIGK@decltype?$CIauto?$CJ@ 100a1e4c libvcruntime:undname.obj - 0002:0000ce5c ??_C@_05PCNBGHCF@this?5@ 100a1e5c libvcruntime:undname.obj - 0002:0000ce64 ??_C@_06GCICPBLB@__w64?5@ 100a1e64 libvcruntime:undname.obj - 0002:0000ce6c ??_C@_07NFANNNEC@UNKNOWN@ 100a1e6c libvcruntime:undname.obj - 0002:0000ce74 ??_C@_07EDHNAJHC@signed?5@ 100a1e74 libvcruntime:undname.obj - 0002:0000ce7c ??_C@_05BNCCCJPP@const@ 100a1e7c libvcruntime:undname.obj - 0002:0000ce84 ??_C@_09EFNPDFFP@?5volatile@ 100a1e84 libvcruntime:undname.obj - 0002:0000ce90 ??_C@_0P@GCIFDJCJ@?$GAunknown?5ecsu?8@ 100a1e90 libvcruntime:undname.obj - 0002:0000cea0 ??_C@_06MOJHIBMG@union?5@ 100a1ea0 libvcruntime:undname.obj - 0002:0000cea8 ??_C@_07DIBCDNGL@struct?5@ 100a1ea8 libvcruntime:undname.obj - 0002:0000ceb0 ??_C@_06LJBABKPM@class?5@ 100a1eb0 libvcruntime:undname.obj - 0002:0000ceb8 ??_C@_08KOFANOFK@coclass?5@ 100a1eb8 libvcruntime:undname.obj - 0002:0000cec4 ??_C@_0N@DLIEFKNA@cointerface?5@ 100a1ec4 libvcruntime:undname.obj - 0002:0000ced4 ??_C@_05LJGMCFOG@enum?5@ 100a1ed4 libvcruntime:undname.obj - 0002:0000cedc ??_C@_06LIJLOJAG@const?5@ 100a1edc libvcruntime:undname.obj - 0002:0000cee4 ??_C@_02KJPKDIBN@?$CG?5@ 100a1ee4 libvcruntime:undname.obj - 0002:0000cee8 ??_C@_03PCKGMOPB@?$CG?$CG?5@ 100a1ee8 libvcruntime:undname.obj - 0002:0000ceec ??_C@_0M@EALIELKG@cli?3?3array?$DM@ 100a1eec libvcruntime:undname.obj - 0002:0000cef8 ??_C@_0O@GKABPPIF@cli?3?3pin_ptr?$DM@ 100a1ef8 libvcruntime:undname.obj - 0002:0000cf08 ??_C@_02GOGNNPBN@?$CJ?$FL@ 100a1f08 libvcruntime:undname.obj - 0002:0000cf0c ??_C@_06EEGAIFAK@?$HLflat?$HN@ 100a1f0c libvcruntime:undname.obj - 0002:0000cf14 ??_C@_05JIBOFOHK@?$HLfor?5@ 100a1f14 libvcruntime:undname.obj - 0002:0000cf1c ??_C@_02MDINNEEG@s?5@ 100a1f1c libvcruntime:undname.obj - 0002:0000cf24 ??_7DNameNode@@6B@ 100a1f24 libvcruntime:undname.obj - 0002:0000cf38 ??_7charNode@@6B@ 100a1f38 libvcruntime:undname.obj - 0002:0000cf4c ??_7pcharNode@@6B@ 100a1f4c libvcruntime:undname.obj - 0002:0000cf60 ??_7pDNameNode@@6B@ 100a1f60 libvcruntime:undname.obj - 0002:0000cf74 ??_7DNameStatusNode@@6B@ 100a1f74 libvcruntime:undname.obj - 0002:0000cf88 ??_7pairNode@@6B@ 100a1f88 libvcruntime:undname.obj - 0002:0000d098 ??_C@_04OKOHEJBO@?5?$DP?$DP?5@ 100a2098 libvcruntime:undname.obj - 0002:0000d0a0 ?nodes@?1??make@DNameStatusNode@@SAPBV2@W4DNameStatus@@@Z@4QBV2@B 100a20a0 libvcruntime:undname.obj - 0002:0000d0dc ??_C@_1DM@KHCHBNEB@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a20dc libvcruntime:winapi_downlevel.obj - 0002:0000d118 ??_C@_1DK@LPPGFMPP@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a2118 libvcruntime:winapi_downlevel.obj - 0002:0000d154 ??_C@_1BC@GDMECMAK@?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AA3?$AA2@ 100a2154 libvcruntime:winapi_downlevel.obj - 0002:0000d168 ??_C@_1BA@PFFKHIOG@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9@ 100a2168 libvcruntime:winapi_downlevel.obj - 0002:0000d180 ??_C@_08KNHFBNJ@FlsAlloc@ 100a2180 libvcruntime:winapi_downlevel.obj - 0002:0000d194 ??_C@_07PEJMOBNF@FlsFree@ 100a2194 libvcruntime:winapi_downlevel.obj - 0002:0000d1a4 ??_C@_0M@GDNOONDI@FlsGetValue@ 100a21a4 libvcruntime:winapi_downlevel.obj - 0002:0000d1b8 ??_C@_0M@JCPCPOEF@FlsSetValue@ 100a21b8 libvcruntime:winapi_downlevel.obj - 0002:0000d1cc ??_C@_0BM@HCFOFFN@InitializeCriticalSectionEx@ 100a21cc libvcruntime:winapi_downlevel.obj - 0002:0000d1e8 ?standard_lookup_table_spectre@__crt_stdio_output@@3V?$spectre_mitigated_lookup_table@Ustate_transition_pair@__crt_stdio_output@@$0IA@@1@B 100a21e8 libucrt:output.obj - 0002:0000d2e8 ?format_validation_lookup_table_spectre@__crt_stdio_output@@3V?$spectre_mitigated_lookup_table@Ustate_transition_pair@__crt_stdio_output@@$0IA@@1@B 100a22e8 libucrt:output.obj - 0002:0000d3e8 ??_C@_1O@CEDCILHN@?$AA?$CI?$AAn?$AAu?$AAl?$AAl?$AA?$CJ@ 100a23e8 libucrt:output.obj - 0002:0000d560 __real@8000000000000000 100a2560 libucrt:frexp.obj - 0002:0000d568 ?large_power_data@?1??multiply_by_power_of_ten@__crt_strtox@@YA_NAAUbig_integer@2@I@Z@4QBIB 100a2568 libucrt:strtod.obj - 0002:0000de70 ?large_power_indices@?1??multiply_by_power_of_ten@__crt_strtox@@YA_NAAUbig_integer@2@I@Z@4QBUunpack_index@?1??12@YA_N0I@Z@B 100a2e70 libucrt:strtod.obj - 0002:0000df08 ?small_powers_of_ten@?1??multiply_by_power_of_ten@__crt_strtox@@YA_NAAUbig_integer@2@I@Z@4QBIB 100a2f08 libucrt:strtod.obj - 0002:0000df30 ??_C@_1GE@DPGDJKLM@?$AAm?$AAi?$AAn?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AA?2?$AAc?$AAr?$AAt?$AAs?$AA?2@ 100a2f30 libucrt:strtod.obj - 0002:0000df98 ??_C@_1FM@FELNCOBF@?$AA_?$AA_?$AAc?$AAr?$AAt?$AA_?$AAs?$AAt?$AAr?$AAt?$AAo?$AAx?$AA?3?$AA?3?$AAf@ 100a2f98 libucrt:strtod.obj - 0002:0000dff4 ??_C@_1BG@GEMHBGAF@?$AA_?$AAi?$AAs?$AA_?$AAd?$AAo?$AAu?$AAb?$AAl?$AAe@ 100a2ff4 libucrt:strtod.obj - 0002:0000e010 ??_C@_1FK@JOJELFFO@?$AA_?$AA_?$AAc?$AAr?$AAt?$AA_?$AAs?$AAt?$AAr?$AAt?$AAo?$AAx?$AA?3?$AA?3?$AAf@ 100a3010 libucrt:strtod.obj - 0002:0000e06c ??_C@_1BI@BANMPGJI@?$AA?$CB?$AA_?$AAi?$AAs?$AA_?$AAd?$AAo?$AAu?$AAb?$AAl?$AAe@ 100a306c libucrt:strtod.obj - 0002:0000e084 ?inf_uppercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a3084 libucrt:strtod.obj - 0002:0000e088 ?inf_lowercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a3088 libucrt:strtod.obj - 0002:0000e08c ?inity_uppercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a308c libucrt:strtod.obj - 0002:0000e094 ?inity_lowercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a3094 libucrt:strtod.obj - 0002:0000e09c ?uppercase@?1???$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a309c libucrt:strtod.obj - 0002:0000e0a0 ?lowercase@?1???$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a30a0 libucrt:strtod.obj - 0002:0000e0a4 ?uppercase@?1???$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a30a4 libucrt:strtod.obj - 0002:0000e0ac ?lowercase@?1???$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a30ac libucrt:strtod.obj - 0002:0000e0b4 ?uppercase@?1???$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a30b4 libucrt:strtod.obj - 0002:0000e0b8 ?lowercase@?1???$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a30b8 libucrt:strtod.obj - 0002:0000e188 ___lc_category 100a3188 libucrt:wsetlocale.obj - 0002:0000e1d0 ??_C@_1O@GIFLHMA@?$AAL?$AAC?$AA_?$AAA?$AAL?$AAL@ 100a31d0 libucrt:wsetlocale.obj - 0002:0000e1e0 ??_C@_1BG@PPOMIBNJ@?$AAL?$AAC?$AA_?$AAC?$AAO?$AAL?$AAL?$AAA?$AAT?$AAE@ 100a31e0 libucrt:wsetlocale.obj - 0002:0000e1f8 ??_C@_1BC@FFJGAPJM@?$AAL?$AAC?$AA_?$AAC?$AAT?$AAY?$AAP?$AAE@ 100a31f8 libucrt:wsetlocale.obj - 0002:0000e20c ??_C@_1BI@PCKFNJFB@?$AAL?$AAC?$AA_?$AAM?$AAO?$AAN?$AAE?$AAT?$AAA?$AAR?$AAY@ 100a320c libucrt:wsetlocale.obj - 0002:0000e224 ??_C@_1BG@ENIEDKID@?$AAL?$AAC?$AA_?$AAN?$AAU?$AAM?$AAE?$AAR?$AAI?$AAC@ 100a3224 libucrt:wsetlocale.obj - 0002:0000e23c ??_C@_1BA@HAAOMIIG@?$AAL?$AAC?$AA_?$AAT?$AAI?$AAM?$AAE@ 100a323c libucrt:wsetlocale.obj - 0002:0000e24c ??_C@_15NBPDDFIP@?$AA?$DN?$AA?$DL@ 100a324c libucrt:wsetlocale.obj - 0002:0000e254 ??_C@_13PJJBFPED@?$AA?$DL@ 100a3254 libucrt:wsetlocale.obj - 0002:0000e258 ??_C@_13NMPKAAJP@?$AA?$DN@ 100a3258 libucrt:wsetlocale.obj - 0002:0000e25c ??_C@_13IMODFHAA@?$AA?9@ 100a325c libucrt:wsetlocale.obj - 0002:0000e260 ??_C@_17EFJLDFDO@?$AA?9?$AA_?$AA?4@ 100a3260 libucrt:wsetlocale.obj - 0002:0000e268 ??_C@_13FHBKNHDA@?$AAC@ 100a3268 libucrt:wsetlocale.obj - 0002:0000e26c ??_C@_17MBJJLFDM@?$AA_?$AA?4?$AA?0@ 100a326c libucrt:wsetlocale.obj - 0002:0000e274 ??_C@_13ENNFDPBH@?$AA_@ 100a3274 libucrt:wsetlocale.obj - 0002:0000e278 ??_C@_13JOFGPIOO@?$AA?4@ 100a3278 libucrt:wsetlocale.obj - 0002:0000e280 ___lc_time_c 100a3280 libucrt:nlsdata.obj - 0002:0000e3e4 ??_C@_03KOEHGMDN@Sun@ 100a33e4 libucrt:nlsdata.obj - 0002:0000e3e8 ??_C@_03PDAGKDH@Mon@ 100a33e8 libucrt:nlsdata.obj - 0002:0000e3ec ??_C@_03NAGEINEP@Tue@ 100a33ec libucrt:nlsdata.obj - 0002:0000e3f0 ??_C@_03MHOMLAJA@Wed@ 100a33f0 libucrt:nlsdata.obj - 0002:0000e3f4 ??_C@_03IOFIKPDN@Thu@ 100a33f4 libucrt:nlsdata.obj - 0002:0000e3f8 ??_C@_03IDIOELNC@Fri@ 100a33f8 libucrt:nlsdata.obj - 0002:0000e3fc ??_C@_03FEFJNEK@Sat@ 100a33fc libucrt:nlsdata.obj - 0002:0000e400 ??_C@_06OOPIFAJ@Sunday@ 100a3400 libucrt:nlsdata.obj - 0002:0000e408 ??_C@_06JLEDEDGH@Monday@ 100a3408 libucrt:nlsdata.obj - 0002:0000e410 ??_C@_07BAAGCFCM@Tuesday@ 100a3410 libucrt:nlsdata.obj - 0002:0000e418 ??_C@_09DLIGFAKA@Wednesday@ 100a3418 libucrt:nlsdata.obj - 0002:0000e424 ??_C@_08HACCIKIA@Thursday@ 100a3424 libucrt:nlsdata.obj - 0002:0000e430 ??_C@_06JECMNKMI@Friday@ 100a3430 libucrt:nlsdata.obj - 0002:0000e438 ??_C@_08INBOOONO@Saturday@ 100a3438 libucrt:nlsdata.obj - 0002:0000e444 ??_C@_03JIHJHPIE@Jan@ 100a3444 libucrt:nlsdata.obj - 0002:0000e448 ??_C@_03HJBDCHOM@Feb@ 100a3448 libucrt:nlsdata.obj - 0002:0000e44c ??_C@_03ODNJBKGA@Mar@ 100a344c libucrt:nlsdata.obj - 0002:0000e450 ??_C@_03LEOLGMJP@Apr@ 100a3450 libucrt:nlsdata.obj - 0002:0000e454 ??_C@_03CNMDKL@May@ 100a3454 libucrt:nlsdata.obj - 0002:0000e458 ??_C@_03IDFGHECI@Jun@ 100a3458 libucrt:nlsdata.obj - 0002:0000e45c ??_C@_03LBGABGKK@Jul@ 100a345c libucrt:nlsdata.obj - 0002:0000e460 ??_C@_03IFJFEIGA@Aug@ 100a3460 libucrt:nlsdata.obj - 0002:0000e464 ??_C@_03GGCAPAJC@Sep@ 100a3464 libucrt:nlsdata.obj - 0002:0000e468 ??_C@_03BMAOKBAD@Oct@ 100a3468 libucrt:nlsdata.obj - 0002:0000e46c ??_C@_03JPJOFNIA@Nov@ 100a346c libucrt:nlsdata.obj - 0002:0000e470 ??_C@_03MKABNOCG@Dec@ 100a3470 libucrt:nlsdata.obj - 0002:0000e474 ??_C@_07CGJPFGJA@January@ 100a3474 libucrt:nlsdata.obj - 0002:0000e47c ??_C@_08GNJGEPFN@February@ 100a347c libucrt:nlsdata.obj - 0002:0000e488 ??_C@_05HPCKOFNC@March@ 100a3488 libucrt:nlsdata.obj - 0002:0000e490 ??_C@_05DMJDNLEJ@April@ 100a3490 libucrt:nlsdata.obj - 0002:0000e498 ??_C@_04CNLMGBGM@June@ 100a3498 libucrt:nlsdata.obj - 0002:0000e4a0 ??_C@_04MIEPOIFP@July@ 100a34a0 libucrt:nlsdata.obj - 0002:0000e4a8 ??_C@_06LBBHFDDG@August@ 100a34a8 libucrt:nlsdata.obj - 0002:0000e4b0 ??_C@_09BHHEALKD@September@ 100a34b0 libucrt:nlsdata.obj - 0002:0000e4bc ??_C@_07JJNFCEND@October@ 100a34bc libucrt:nlsdata.obj - 0002:0000e4c4 ??_C@_08HCHEGEOA@November@ 100a34c4 libucrt:nlsdata.obj - 0002:0000e4d0 ??_C@_08EDHMEBNP@December@ 100a34d0 libucrt:nlsdata.obj - 0002:0000e4dc ??_C@_02DEDBPAFC@AM@ 100a34dc libucrt:nlsdata.obj - 0002:0000e4e0 ??_C@_02CJNFDJBF@PM@ 100a34e0 libucrt:nlsdata.obj - 0002:0000e4e4 ??_C@_08BPBNCDIB@MM?1dd?1yy@ 100a34e4 libucrt:nlsdata.obj - 0002:0000e4f0 ??_C@_0BE@CKGJFCPC@dddd?0?5MMMM?5dd?0?5yyyy@ 100a34f0 libucrt:nlsdata.obj - 0002:0000e504 ??_C@_08JCCMCCIL@HH?3mm?3ss@ 100a3504 libucrt:nlsdata.obj - 0002:0000e510 ??_C@_17MBGCMIPB@?$AAS?$AAu?$AAn@ 100a3510 libucrt:nlsdata.obj - 0002:0000e518 ??_C@_17KBOMKBF@?$AAM?$AAo?$AAn@ 100a3518 libucrt:nlsdata.obj - 0002:0000e520 ??_C@_17BMKGEGOJ@?$AAT?$AAu?$AAe@ 100a3520 libucrt:nlsdata.obj - 0002:0000e528 ??_C@_17CJEDCEPE@?$AAW?$AAe?$AAd@ 100a3528 libucrt:nlsdata.obj - 0002:0000e530 ??_C@_17PDPHAADD@?$AAT?$AAh?$AAu@ 100a3530 libucrt:nlsdata.obj - 0002:0000e538 ??_C@_17HFOLPPLP@?$AAF?$AAr?$AAi@ 100a3538 libucrt:nlsdata.obj - 0002:0000e540 ??_C@_17GGIBDPIH@?$AAS?$AAa?$AAt@ 100a3540 libucrt:nlsdata.obj - 0002:0000e548 ??_C@_1O@IHNHDHPB@?$AAS?$AAu?$AAn?$AAd?$AAa?$AAy@ 100a3548 libucrt:nlsdata.obj - 0002:0000e558 ??_C@_1O@MMNBFLIA@?$AAM?$AAo?$AAn?$AAd?$AAa?$AAy@ 100a3558 libucrt:nlsdata.obj - 0002:0000e568 ??_C@_1BA@ENFBFFEK@?$AAT?$AAu?$AAe?$AAs?$AAd?$AAa?$AAy@ 100a3568 libucrt:nlsdata.obj - 0002:0000e578 ??_C@_1BE@EBOGMDOH@?$AAW?$AAe?$AAd?$AAn?$AAe?$AAs?$AAd?$AAa?$AAy@ 100a3578 libucrt:nlsdata.obj - 0002:0000e58c ??_C@_1BC@HHMNLIHE@?$AAT?$AAh?$AAu?$AAr?$AAs?$AAd?$AAa?$AAy@ 100a358c libucrt:nlsdata.obj - 0002:0000e5a0 ??_C@_1O@PDICJHAG@?$AAF?$AAr?$AAi?$AAd?$AAa?$AAy@ 100a35a0 libucrt:nlsdata.obj - 0002:0000e5b0 ??_C@_1BC@ENMNNPAJ@?$AAS?$AAa?$AAt?$AAu?$AAr?$AAd?$AAa?$AAy@ 100a35b0 libucrt:nlsdata.obj - 0002:0000e5c4 ??_C@_17DKNBKCHM@?$AAJ?$AAa?$AAn@ 100a35c4 libucrt:nlsdata.obj - 0002:0000e5cc ??_C@_17LMDJEKJN@?$AAF?$AAe?$AAb@ 100a35cc libucrt:nlsdata.obj - 0002:0000e5d4 ??_C@_17CKNLEDEC@?$AAM?$AAa?$AAr@ 100a35d4 libucrt:nlsdata.obj - 0002:0000e5dc ??_C@_17LFPOIHDD@?$AAA?$AAp?$AAr@ 100a35dc libucrt:nlsdata.obj - 0002:0000e5e4 ??_C@_17PNNKMEED@?$AAM?$AAa?$AAy@ 100a35e4 libucrt:nlsdata.obj - 0002:0000e5ec ??_C@_17KCJGOCPB@?$AAJ?$AAu?$AAn@ 100a35ec libucrt:nlsdata.obj - 0002:0000e5f4 ??_C@_17IJPCKHK@?$AAJ?$AAu?$AAl@ 100a35f4 libucrt:nlsdata.obj - 0002:0000e5fc ??_C@_17ICPELBCN@?$AAA?$AAu?$AAg@ 100a35fc libucrt:nlsdata.obj - 0002:0000e604 ??_C@_17HCHCOKMG@?$AAS?$AAe?$AAp@ 100a3604 libucrt:nlsdata.obj - 0002:0000e60c ??_C@_17FNLKOI@?$AAO?$AAc?$AAt@ 100a360c libucrt:nlsdata.obj - 0002:0000e614 ??_C@_17BBDMLCIG@?$AAN?$AAo?$AAv@ 100a3614 libucrt:nlsdata.obj - 0002:0000e61c ??_C@_17EGKACKIF@?$AAD?$AAe?$AAc@ 100a361c libucrt:nlsdata.obj - 0002:0000e624 ??_C@_1BA@EFMEIEBA@?$AAJ?$AAa?$AAn?$AAu?$AAa?$AAr?$AAy@ 100a3624 libucrt:nlsdata.obj - 0002:0000e634 ??_C@_1BC@JGDDFFAM@?$AAF?$AAe?$AAb?$AAr?$AAu?$AAa?$AAr?$AAy@ 100a3634 libucrt:nlsdata.obj - 0002:0000e648 ??_C@_1M@IKEENEDF@?$AAM?$AAa?$AAr?$AAc?$AAh@ 100a3648 libucrt:nlsdata.obj - 0002:0000e654 ??_C@_1M@GJNLMHFD@?$AAA?$AAp?$AAr?$AAi?$AAl@ 100a3654 libucrt:nlsdata.obj - 0002:0000e660 ??_C@_19EPFLPGAP@?$AAJ?$AAu?$AAn?$AAe@ 100a3660 libucrt:nlsdata.obj - 0002:0000e66c ??_C@_19BIFMLPCD@?$AAJ?$AAu?$AAl?$AAy@ 100a366c libucrt:nlsdata.obj - 0002:0000e678 ??_C@_1O@PAHLKOAC@?$AAA?$AAu?$AAg?$AAu?$AAs?$AAt@ 100a3678 libucrt:nlsdata.obj - 0002:0000e688 ??_C@_1BE@DKAAMBJL@?$AAS?$AAe?$AAp?$AAt?$AAe?$AAm?$AAb?$AAe?$AAr@ 100a3688 libucrt:nlsdata.obj - 0002:0000e69c ??_C@_1BA@EPANDLNG@?$AAO?$AAc?$AAt?$AAo?$AAb?$AAe?$AAr@ 100a369c libucrt:nlsdata.obj - 0002:0000e6ac ??_C@_1BC@BGLIFPF@?$AAN?$AAo?$AAv?$AAe?$AAm?$AAb?$AAe?$AAr@ 100a36ac libucrt:nlsdata.obj - 0002:0000e6c0 ??_C@_1BC@FEMKIFH@?$AAD?$AAe?$AAc?$AAe?$AAm?$AAb?$AAe?$AAr@ 100a36c0 libucrt:nlsdata.obj - 0002:0000e6d4 ??_C@_15ODEHAHHF@?$AAA?$AAM@ 100a36d4 libucrt:nlsdata.obj - 0002:0000e6dc ??_C@_15CLMNNGEL@?$AAP?$AAM@ 100a36dc libucrt:nlsdata.obj - 0002:0000e6e4 ??_C@_1BC@IEBCMHCM@?$AAM?$AAM?$AA?1?$AAd?$AAd?$AA?1?$AAy?$AAy@ 100a36e4 libucrt:nlsdata.obj - 0002:0000e6f8 ??_C@_1CI@KNAKOEBC@?$AAd?$AAd?$AAd?$AAd?$AA?0?$AA?5?$AAM?$AAM?$AAM?$AAM?$AA?5?$AAd?$AAd?$AA?0?$AA?5@ 100a36f8 libucrt:nlsdata.obj - 0002:0000e720 ??_C@_1BC@GDGBMEMK@?$AAH?$AAH?$AA?3?$AAm?$AAm?$AA?3?$AAs?$AAs@ 100a3720 libucrt:nlsdata.obj - 0002:0000e734 ??_C@_1M@BMHNFIME@?$AAe?$AAn?$AA?9?$AAU?$AAS@ 100a3734 libucrt:nlsdata.obj - 0002:0000e740 ??_C@_13CGOKJPIL@?$AA?1@ 100a3740 libucrt:winapi_thunks.obj - 0002:0000e7a0 ??_C@_1EA@JGEFHKEI@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a37a0 libucrt:winapi_thunks.obj - 0002:0000e7e0 ??_C@_1DI@KMEPCBPN@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a37e0 libucrt:winapi_thunks.obj - 0002:0000e818 ??_C@_1DI@IJCEHOCB@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a3818 libucrt:winapi_thunks.obj - 0002:0000e850 ??_C@_1EI@MPIAOHOC@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a3850 libucrt:winapi_thunks.obj - 0002:0000e898 ??_C@_1FK@FPHCKFIE@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a3898 libucrt:winapi_thunks.obj - 0002:0000e8f8 ??_C@_1EM@DILCGIIO@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a38f8 libucrt:winapi_thunks.obj - 0002:0000e944 ??_C@_1DM@LNCGDDPN@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a3944 libucrt:winapi_thunks.obj - 0002:0000e980 ??_C@_1DO@FPAPJEMD@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a3980 libucrt:winapi_thunks.obj - 0002:0000e9c0 ??_C@_1DK@NDHNAHIO@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a39c0 libucrt:winapi_thunks.obj - 0002:0000e9fc ??_C@_1DM@KGHDGBCM@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a39fc libucrt:winapi_thunks.obj - 0002:0000ea38 ??_C@_1EO@IJIOEFOH@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAr?$AAt?$AAc?$AAo@ 100a3a38 libucrt:winapi_thunks.obj - 0002:0000ea88 ??_C@_1FG@HHGEKANL@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAs?$AAe?$AAc?$AAu@ 100a3a88 libucrt:winapi_thunks.obj - 0002:0000eae0 ??_C@_1EG@DBIOJECG@?$AAe?$AAx?$AAt?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAn?$AAt?$AAu?$AAs@ 100a3ae0 libucrt:winapi_thunks.obj - 0002:0000eb28 ??_C@_1EO@FIHMJCLF@?$AAe?$AAx?$AAt?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAn?$AAt?$AAu?$AAs@ 100a3b28 libucrt:winapi_thunks.obj - 0002:0000eb78 ??_C@_1BC@DNHGCMLG@?$AAa?$AAd?$AAv?$AAa?$AAp?$AAi?$AA3?$AA2@ 100a3b78 libucrt:winapi_thunks.obj - 0002:0000eb8c ??_C@_1BG@CJPGBMEF@?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AAb?$AAa?$AAs?$AAe@ 100a3b8c libucrt:winapi_thunks.obj - 0002:0000eba4 ??_C@_1M@OAIMIKLP@?$AAn?$AAt?$AAd?$AAl?$AAl@ 100a3ba4 libucrt:winapi_thunks.obj - 0002:0000ebb0 ??_C@_1EG@DPGNFKGC@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAa?$AAp?$AAp?$AAm@ 100a3bb0 libucrt:winapi_thunks.obj - 0002:0000ebf8 ??_C@_1O@BCCLBEOE@?$AAu?$AAs?$AAe?$AAr?$AA3?$AA2@ 100a3bf8 libucrt:winapi_thunks.obj - 0002:0000ec08 ??_C@_1DM@BPJLHKCE@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a3c08 libucrt:winapi_thunks.obj - 0002:0000ec44 ??_C@_1BA@IAIFMGEF@?$AAe?$AAx?$AAt?$AA?9?$AAm?$AAs?$AA?9@ 100a3c44 libucrt:winapi_thunks.obj - 0002:0000ec58 ??_C@_0BA@FHFNEAED@AreFileApisANSI@ 100a3c58 libucrt:winapi_thunks.obj - 0002:0000ec70 ??_C@_0BA@IHGNDAEB@CompareStringEx@ 100a3c70 libucrt:winapi_thunks.obj - 0002:0000ec88 ??_C@_0BE@LJANKFHF@EnumSystemLocalesEx@ 100a3c88 libucrt:winapi_thunks.obj - 0002:0000eca4 ??_C@_0BA@EPCJIIPD@GetDateFormatEx@ 100a3ca4 libucrt:winapi_thunks.obj - 0002:0000ecb4 ??_C@_0O@NNMIPI@GetTempPath2W@ 100a3cb4 libucrt:winapi_thunks.obj - 0002:0000eccc ??_C@_0BA@ONOKGCMP@GetLocaleInfoEx@ 100a3ccc libucrt:winapi_thunks.obj - 0002:0000ecdc ??_C@_0BP@FPNJPEJC@GetSystemTimePreciseAsFileTime@ 100a3cdc libucrt:winapi_thunks.obj - 0002:0000ed04 ??_C@_0BA@CIJJKCJJ@GetTimeFormatEx@ 100a3d04 libucrt:winapi_thunks.obj - 0002:0000ed1c ??_C@_0BJ@PBCCBIPI@GetUserDefaultLocaleName@ 100a3d1c libucrt:winapi_thunks.obj - 0002:0000ed48 ??_C@_0BC@CELBKLLA@IsValidLocaleName@ 100a3d48 libucrt:winapi_thunks.obj - 0002:0000ed64 ??_C@_0O@KKBNKAPF@LCMapStringEx@ 100a3d64 libucrt:winapi_thunks.obj - 0002:0000ed7c ??_C@_0BB@CDHDDLLP@LCIDToLocaleName@ 100a3d7c libucrt:winapi_thunks.obj - 0002:0000ed98 ??_C@_0BB@HBDEELFH@LocaleNameToLCID@ 100a3d98 libucrt:winapi_thunks.obj - 0002:0000edb0 ??_C@_0CF@OJOFEIGO@AppPolicyGetProcessTerminationM@ 100a3db0 libucrt:winapi_thunks.obj - 0002:0000ee38 ??_C@_03OEIAHPBN@INF@ 100a3e38 libucrt:cvt.obj - 0002:0000ee3c ??_C@_03OJHLLCGB@inf@ 100a3e3c libucrt:cvt.obj - 0002:0000ee40 ??_C@_03LKNCIKJB@NAN@ 100a3e40 libucrt:cvt.obj - 0002:0000ee44 ??_C@_03LHCJEHON@nan@ 100a3e44 libucrt:cvt.obj - 0002:0000ee48 ??_C@_09OFJJIMPC@NAN?$CISNAN?$CJ@ 100a3e48 libucrt:cvt.obj - 0002:0000ee54 ??_C@_09IPFBKMDL@nan?$CIsnan?$CJ@ 100a3e54 libucrt:cvt.obj - 0002:0000ee60 ??_C@_08IKHNHAJ@NAN?$CIIND?$CJ@ 100a3e60 libucrt:cvt.obj - 0002:0000ee6c ??_C@_08OFCDMILK@nan?$CIind?$CJ@ 100a3e6c libucrt:cvt.obj - 0002:0000ee78 ??_C@_05KLBDPFGC@e?$CL000@ 100a3e78 libucrt:cvt.obj - 0002:0000ef68 ??_C@_03KHJOGHMM@exp@ 100a3f68 libucrt:fpexcept.obj - 0002:0000ef6c ??_C@_03JGHBODFD@pow@ 100a3f6c libucrt:fpexcept.obj - 0002:0000ef70 ??_C@_03MGHMBJCF@log@ 100a3f70 libucrt:fpexcept.obj - 0002:0000ef74 ??_C@_05HGHHAHAP@log10@ 100a3f74 libucrt:fpexcept.obj - 0002:0000ef7c ??_C@_04COOMCNPB@sinh@ 100a3f7c libucrt:fpexcept.obj - 0002:0000ef84 ??_C@_04HPJJNFIM@cosh@ 100a3f84 libucrt:fpexcept.obj - 0002:0000ef8c ??_C@_04FJHINJAO@tanh@ 100a3f8c libucrt:fpexcept.obj - 0002:0000ef94 ??_C@_04FIHNOPOL@asin@ 100a3f94 libucrt:fpexcept.obj - 0002:0000ef9c ??_C@_04PDIFKINK@acos@ 100a3f9c libucrt:fpexcept.obj - 0002:0000efa4 ??_C@_04MLLJIGOK@atan@ 100a3fa4 libucrt:fpexcept.obj - 0002:0000efac ??_C@_05KNGEOGJB@atan2@ 100a3fac libucrt:fpexcept.obj - 0002:0000efb4 ??_C@_04EIAKFFMI@sqrt@ 100a3fb4 libucrt:fpexcept.obj - 0002:0000efbc ??_C@_03BLEJJJBH@sin@ 100a3fbc libucrt:fpexcept.obj - 0002:0000efc0 ??_C@_03LALBNOCG@cos@ 100a3fc0 libucrt:fpexcept.obj - 0002:0000efc4 ??_C@_03IIINPABG@tan@ 100a3fc4 libucrt:fpexcept.obj - 0002:0000efc8 ??_C@_04GFPJNGEK@ceil@ 100a3fc8 libucrt:fpexcept.obj - 0002:0000efd0 ??_C@_05PBJFFIGL@floor@ 100a3fd0 libucrt:fpexcept.obj - 0002:0000efd8 ??_C@_04ODHECPBC@fabs@ 100a3fd8 libucrt:fpexcept.obj - 0002:0000efe0 ??_C@_04EHEDPDJG@modf@ 100a3fe0 libucrt:fpexcept.obj - 0002:0000efe8 ??_C@_05CEJMAHNP@ldexp@ 100a3fe8 libucrt:fpexcept.obj - 0002:0000eff0 ??_C@_05KBKMEMPO@_cabs@ 100a3ff0 libucrt:fpexcept.obj - 0002:0000eff8 ??_C@_06MEIMCGCF@_hypot@ 100a3ff8 libucrt:fpexcept.obj - 0002:0000f000 ??_C@_04KEPJIHGP@fmod@ 100a4000 libucrt:fpexcept.obj - 0002:0000f008 ??_C@_05GKKHEGJL@frexp@ 100a4008 libucrt:fpexcept.obj - 0002:0000f010 ??_C@_03MJLDFKDL@_y0@ 100a4010 libucrt:fpexcept.obj - 0002:0000f014 ??_C@_03NAKIGLHK@_y1@ 100a4014 libucrt:fpexcept.obj - 0002:0000f018 ??_C@_03ONILCKOB@_yn@ 100a4018 libucrt:fpexcept.obj - 0002:0000f01c ??_C@_05JGDBENOH@_logb@ 100a401c libucrt:fpexcept.obj - 0002:0000f024 ??_C@_0L@KDOEJCKC@_nextafter@ 100a4024 libucrt:fpexcept.obj - 0002:0000f030 __d_inf 100a4030 libucrt:util.obj - 0002:0000f038 __d_max 100a4038 libucrt:util.obj - 0002:0000f040 __d_mzero 100a4040 libucrt:util.obj - 0002:0000f060 ??_C@_1BI@BGOHAHKC@?$AAm?$AAs?$AAc?$AAo?$AAr?$AAe?$AAe?$AA?4?$AAd?$AAl?$AAl@ 100a4060 libucrt:exit.obj - 0002:0000f078 ??_C@_0P@MIGLKIOC@CorExitProcess@ 100a4078 libucrt:exit.obj - 0002:0000f088 ___newctype 100a4088 libucrt:ctype.obj - 0002:0000f388 ___newclmap 100a4388 libucrt:ctype.obj - 0002:0000f508 ___newcumap 100a4508 libucrt:ctype.obj - 0002:0000f688 __wctype 100a4688 libucrt:ctype.obj - 0002:0000f88c ??_C@_15HNJCPLHL@?$AAT?$AAZ@ 100a488c libucrt:tzset.obj - 0002:0000f894 ??_C@_1M@PBPMMENC@?$AAa?$AAm?$AA?1?$AAp?$AAm@ 100a4894 libucrt:wcsftime.obj - 0002:0000f8a0 ??_C@_17BLFJJHMM@?$AAa?$AA?1?$AAp@ 100a48a0 libucrt:wcsftime.obj - 0002:0000f8a8 ??_C@_13HOIJIPNN@?$AA?5@ 100a48a8 libucrt:wcsftime.obj - 0002:0000f8ac ??_C@_13LBAGMAIH@?$AA?6@ 100a48ac libucrt:wcsftime.obj - 0002:0000f8b0 ??_C@_13EBCNDICG@?$AA?3@ 100a48b0 libucrt:wcsftime.obj - 0002:0000f8b4 ??_C@_13KDLDGPGJ@?$AA?7@ 100a48b4 libucrt:wcsftime.obj - 0002:0000f8b8 ??_C@_13KJIIAINM@?$AA?$CL@ 100a48b8 libucrt:wcsftime.obj - 0002:0000f8bc ??_C@_13EJFHHPOP@?$AA?$CF@ 100a48bc libucrt:wcsftime.obj - 0002:0000f8d0 ??_C@_1M@HPNHIDJI@?$AAj?$AAa?$AA?9?$AAJ?$AAP@ 100a48d0 libucrt:mbctype.obj - 0002:0000f8dc ??_C@_1M@BIBDDEMK@?$AAz?$AAh?$AA?9?$AAC?$AAN@ 100a48dc libucrt:mbctype.obj - 0002:0000f8e8 ??_C@_1M@JLOOOEGK@?$AAk?$AAo?$AA?9?$AAK?$AAR@ 100a48e8 libucrt:mbctype.obj - 0002:0000f8f4 ??_C@_1M@CLNBBOPM@?$AAz?$AAh?$AA?9?$AAT?$AAW@ 100a48f4 libucrt:mbctype.obj - 0002:0000f900 ___acrt_exception_action_table 100a4900 libucrt:exception_filter.obj - 0002:0000f990 ___acrt_signal_action_table_count 100a4990 libucrt:exception_filter.obj - 0002:0000f994 ___acrt_signal_action_first_fpe_index 100a4994 libucrt:exception_filter.obj - 0002:0000f998 ___acrt_signal_action_fpe_count 100a4998 libucrt:exception_filter.obj - 0002:0000f9a0 ___acrt_rg_language 100a49a0 libucrt:get_qualified_locale.obj - 0002:0000fcac ___acrt_rg_language_count 100a4cac libucrt:get_qualified_locale.obj - 0002:0000fcb0 ___acrt_rg_country 100a4cb0 libucrt:get_qualified_locale.obj - 0002:0000fdc4 ___acrt_rg_country_count 100a4dc4 libucrt:get_qualified_locale.obj - 0002:0000fdc8 ??_C@_1BC@LLOKLNP@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa?$AAn@ 100a4dc8 libucrt:get_qualified_locale.obj - 0002:0000fddc ??_C@_1CC@HEIGCDGG@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa?$AAn?$AA?5?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs@ 100a4ddc libucrt:get_qualified_locale.obj - 0002:0000fe00 ??_C@_1CC@IHCNOMIN@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa?$AAn?$AA?9?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs@ 100a4e00 libucrt:get_qualified_locale.obj - 0002:0000fe24 ??_C@_1BG@GKAGPCGG@?$AAa?$AAu?$AAs?$AAt?$AAr?$AAa?$AAl?$AAi?$AAa?$AAn@ 100a4e24 libucrt:get_qualified_locale.obj - 0002:0000fe3c ??_C@_1BA@GMENCENF@?$AAb?$AAe?$AAl?$AAg?$AAi?$AAa?$AAn@ 100a4e3c libucrt:get_qualified_locale.obj - 0002:0000fe4c ??_C@_1BC@PJMIIAAN@?$AAc?$AAa?$AAn?$AAa?$AAd?$AAi?$AAa?$AAn@ 100a4e4c libucrt:get_qualified_locale.obj - 0002:0000fe60 ??_C@_17NOIMNFBF@?$AAc?$AAh?$AAh@ 100a4e60 libucrt:get_qualified_locale.obj - 0002:0000fe68 ??_C@_17GGDALCHA@?$AAc?$AAh?$AAi@ 100a4e68 libucrt:get_qualified_locale.obj - 0002:0000fe70 ??_C@_1BA@NPNJKIBL@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe@ 100a4e70 libucrt:get_qualified_locale.obj - 0002:0000fe80 ??_C@_1CC@DINBAMMJ@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAh?$AAo?$AAn?$AAg?$AAk?$AAo?$AAn@ 100a4e80 libucrt:get_qualified_locale.obj - 0002:0000fea4 ??_C@_1CG@IOBJPACO@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAs?$AAi?$AAm?$AAp?$AAl?$AAi?$AAf@ 100a4ea4 libucrt:get_qualified_locale.obj - 0002:0000fecc ??_C@_1CE@GAJNDCKG@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAs?$AAi?$AAn?$AAg?$AAa?$AAp?$AAo@ 100a4ecc libucrt:get_qualified_locale.obj - 0002:0000fef0 ??_C@_1CI@PAJPIOOD@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAt?$AAr?$AAa?$AAd?$AAi?$AAt?$AAi@ 100a4ef0 libucrt:get_qualified_locale.obj - 0002:0000ff18 ??_C@_1BM@NILJBMMD@?$AAd?$AAu?$AAt?$AAc?$AAh?$AA?9?$AAb?$AAe?$AAl?$AAg?$AAi?$AAa?$AAn@ 100a4f18 libucrt:get_qualified_locale.obj - 0002:0000ff34 ??_C@_1CC@OOJPJNEJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa@ 100a4f34 libucrt:get_qualified_locale.obj - 0002:0000ff58 ??_C@_1BI@IOLFEEM@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAa?$AAu?$AAs@ 100a4f58 libucrt:get_qualified_locale.obj - 0002:0000ff70 ??_C@_1BO@HFFNLENJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAb?$AAe?$AAl?$AAi?$AAz?$AAe@ 100a4f70 libucrt:get_qualified_locale.obj - 0002:0000ff90 ??_C@_1BI@HAPKJMPO@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAa?$AAn@ 100a4f90 libucrt:get_qualified_locale.obj - 0002:0000ffa8 ??_C@_1CE@HLNDMIOJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAa?$AAr?$AAi?$AAb?$AAb?$AAe@ 100a4fa8 libucrt:get_qualified_locale.obj - 0002:0000ffcc ??_C@_1BI@LDHJHHAC@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAi?$AAr?$AAe@ 100a4fcc libucrt:get_qualified_locale.obj - 0002:0000ffe4 ??_C@_1CA@NJMMCFOC@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAj?$AAa?$AAm?$AAa?$AAi?$AAc?$AAa@ 100a4fe4 libucrt:get_qualified_locale.obj - 0002:00010004 ??_C@_1BG@BHJEBBGG@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAn?$AAz@ 100a5004 libucrt:get_qualified_locale.obj - 0002:0001001c ??_C@_1CK@FGOEJJCO@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?5?$AAa@ 100a501c libucrt:get_qualified_locale.obj - 0002:00010048 ??_C@_1DE@PDBJPCJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAt?$AAr?$AAi?$AAn?$AAi?$AAd?$AAa@ 100a5048 libucrt:get_qualified_locale.obj - 0002:0001007c ??_C@_1BG@JGCANDME@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAk@ 100a507c libucrt:get_qualified_locale.obj - 0002:00010094 ??_C@_1BG@DINKMLE@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAs@ 100a5094 libucrt:get_qualified_locale.obj - 0002:000100ac ??_C@_1BI@NMFDBHJE@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAs?$AAa@ 100a50ac libucrt:get_qualified_locale.obj - 0002:000100c4 ??_C@_1BO@OIHKJKII@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAb?$AAe?$AAl?$AAg?$AAi?$AAa?$AAn@ 100a50c4 libucrt:get_qualified_locale.obj - 0002:000100e4 ??_C@_1CA@NKAELJKI@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAc?$AAa?$AAn?$AAa?$AAd?$AAi?$AAa?$AAn@ 100a50e4 libucrt:get_qualified_locale.obj - 0002:00010104 ??_C@_1CE@MGKCNLGN@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAl?$AAu?$AAx?$AAe?$AAm?$AAb?$AAo?$AAu@ 100a5104 libucrt:get_qualified_locale.obj - 0002:00010128 ??_C@_1BK@CEGEAILM@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a5128 libucrt:get_qualified_locale.obj - 0002:00010144 ??_C@_1CA@PAFKEOCC@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAa?$AAu?$AAs?$AAt?$AAr?$AAi?$AAa?$AAn@ 100a5144 libucrt:get_qualified_locale.obj - 0002:00010164 ??_C@_1CI@HCFHGOFD@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAl?$AAi?$AAc?$AAh?$AAt?$AAe?$AAn?$AAs@ 100a5164 libucrt:get_qualified_locale.obj - 0002:0001018c ??_C@_1CE@FEDDNPDG@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAl?$AAu?$AAx?$AAe?$AAm?$AAb?$AAo?$AAu@ 100a518c libucrt:get_qualified_locale.obj - 0002:000101b0 ??_C@_1BK@LIMINNMN@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a51b0 libucrt:get_qualified_locale.obj - 0002:000101cc ??_C@_1BM@LGMDBEPD@?$AAi?$AAr?$AAi?$AAs?$AAh?$AA?9?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh@ 100a51cc libucrt:get_qualified_locale.obj - 0002:000101e8 ??_C@_1BM@NNCFBAEE@?$AAi?$AAt?$AAa?$AAl?$AAi?$AAa?$AAn?$AA?9?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a51e8 libucrt:get_qualified_locale.obj - 0002:00010204 ??_C@_1BE@FEDJNPIB@?$AAn?$AAo?$AAr?$AAw?$AAe?$AAg?$AAi?$AAa?$AAn@ 100a5204 libucrt:get_qualified_locale.obj - 0002:00010218 ??_C@_1CC@CILKDEIE@?$AAn?$AAo?$AAr?$AAw?$AAe?$AAg?$AAi?$AAa?$AAn?$AA?9?$AAb?$AAo?$AAk?$AAm?$AAa@ 100a5218 libucrt:get_qualified_locale.obj - 0002:0001023c ??_C@_1CE@DHMMHEPL@?$AAn?$AAo?$AAr?$AAw?$AAe?$AAg?$AAi?$AAa?$AAn?$AA?9?$AAn?$AAy?$AAn?$AAo?$AAr@ 100a523c libucrt:get_qualified_locale.obj - 0002:00010260 ??_C@_1CK@OPNMHECD@?$AAp?$AAo?$AAr?$AAt?$AAu?$AAg?$AAu?$AAe?$AAs?$AAe?$AA?9?$AAb?$AAr?$AAa?$AAz@ 100a5260 libucrt:get_qualified_locale.obj - 0002:0001028c ??_C@_1CE@KEEHCDB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAa?$AAr?$AAg?$AAe?$AAn?$AAt?$AAi@ 100a528c libucrt:get_qualified_locale.obj - 0002:000102b0 ??_C@_1CA@GIAOLHJD@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAb?$AAo?$AAl?$AAi?$AAv?$AAi?$AAa@ 100a52b0 libucrt:get_qualified_locale.obj - 0002:000102d0 ??_C@_1BM@OJNDFNPD@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAh?$AAi?$AAl?$AAe@ 100a52d0 libucrt:get_qualified_locale.obj - 0002:000102ec ??_C@_1CC@OCOLPALL@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAo?$AAl?$AAo?$AAm?$AAb?$AAi@ 100a52ec libucrt:get_qualified_locale.obj - 0002:00010310 ??_C@_1CG@BPOFMKBB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAo?$AAs?$AAt?$AAa?$AA?5?$AAr@ 100a5310 libucrt:get_qualified_locale.obj - 0002:00010338 ??_C@_1DG@IGOBAPBB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAd?$AAo?$AAm?$AAi?$AAn?$AAi?$AAc@ 100a5338 libucrt:get_qualified_locale.obj - 0002:00010370 ??_C@_1CA@JHAPGEGI@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAe?$AAc?$AAu?$AAa?$AAd?$AAo?$AAr@ 100a5370 libucrt:get_qualified_locale.obj - 0002:00010390 ??_C@_1CI@LAPALJPP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAe?$AAl?$AA?5?$AAs?$AAa?$AAl?$AAv@ 100a5390 libucrt:get_qualified_locale.obj - 0002:000103b8 ??_C@_1CE@PDGBOFOM@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAg?$AAu?$AAa?$AAt?$AAe?$AAm?$AAa@ 100a53b8 libucrt:get_qualified_locale.obj - 0002:000103dc ??_C@_1CC@NBEBAODI@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAh?$AAo?$AAn?$AAd?$AAu?$AAr?$AAa@ 100a53dc libucrt:get_qualified_locale.obj - 0002:00010400 ??_C@_1CA@LLKGHBMF@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAm?$AAe?$AAx?$AAi?$AAc?$AAa?$AAn@ 100a5400 libucrt:get_qualified_locale.obj - 0002:00010420 ??_C@_1BO@LKNDOIGD@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAm?$AAo?$AAd?$AAe?$AAr?$AAn@ 100a5420 libucrt:get_qualified_locale.obj - 0002:00010440 ??_C@_1CE@NMDMOEEB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAn?$AAi?$AAc?$AAa?$AAr?$AAa?$AAg@ 100a5440 libucrt:get_qualified_locale.obj - 0002:00010464 ??_C@_1BO@LLCBEJGB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAa?$AAn?$AAa?$AAm?$AAa@ 100a5464 libucrt:get_qualified_locale.obj - 0002:00010484 ??_C@_1CC@FKPGGIHO@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAa?$AAr?$AAa?$AAg?$AAu?$AAa@ 100a5484 libucrt:get_qualified_locale.obj - 0002:000104a8 ??_C@_1BK@CDEIHOOP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAe?$AAr?$AAu@ 100a54a8 libucrt:get_qualified_locale.obj - 0002:000104c4 ??_C@_1CI@GAHAKKGP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAu?$AAe?$AAr?$AAt?$AAo?$AA?5@ 100a54c4 libucrt:get_qualified_locale.obj - 0002:000104ec ??_C@_1CA@NKJBCAGP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAr?$AAu?$AAg?$AAu?$AAa?$AAy@ 100a54ec libucrt:get_qualified_locale.obj - 0002:0001050c ??_C@_1CE@ODILCONM@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAv?$AAe?$AAn?$AAe?$AAz?$AAu?$AAe@ 100a550c libucrt:get_qualified_locale.obj - 0002:00010530 ??_C@_1CA@OBNMCGFO@?$AAs?$AAw?$AAe?$AAd?$AAi?$AAs?$AAh?$AA?9?$AAf?$AAi?$AAn?$AAl?$AAa?$AAn?$AAd@ 100a5530 libucrt:get_qualified_locale.obj - 0002:00010550 ??_C@_1M@PIPDDPPI@?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a5550 libucrt:get_qualified_locale.obj - 0002:0001055c ??_C@_15PJPFLCCM@?$AAu?$AAk@ 100a555c libucrt:get_qualified_locale.obj - 0002:00010564 ??_C@_15GMFIMNFM@?$AAu?$AAs@ 100a5564 libucrt:get_qualified_locale.obj - 0002:0001056c ??_C@_17HAEBFAGL@?$AAu?$AAs?$AAa@ 100a556c libucrt:get_qualified_locale.obj - 0002:00010574 ??_C@_1BA@DPFJEPHB@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa@ 100a5574 libucrt:get_qualified_locale.obj - 0002:00010584 ??_C@_1BA@ELOGGFK@?$AAb?$AAr?$AAi?$AAt?$AAa?$AAi?$AAn@ 100a5584 libucrt:get_qualified_locale.obj - 0002:00010594 ??_C@_1M@GHBGIGDA@?$AAc?$AAh?$AAi?$AAn?$AAa@ 100a5594 libucrt:get_qualified_locale.obj - 0002:000105a0 ??_C@_1M@NCHEJOPO@?$AAc?$AAz?$AAe?$AAc?$AAh@ 100a55a0 libucrt:get_qualified_locale.obj - 0002:000105ac ??_C@_1BA@BKPAPBLA@?$AAe?$AAn?$AAg?$AAl?$AAa?$AAn?$AAd@ 100a55ac libucrt:get_qualified_locale.obj - 0002:000105bc ??_C@_1BM@HKBCKIPC@?$AAg?$AAr?$AAe?$AAa?$AAt?$AA?5?$AAb?$AAr?$AAi?$AAt?$AAa?$AAi?$AAn@ 100a55bc libucrt:get_qualified_locale.obj - 0002:000105d8 ??_C@_1BA@PPCHPGJB@?$AAh?$AAo?$AAl?$AAl?$AAa?$AAn?$AAd@ 100a55d8 libucrt:get_qualified_locale.obj - 0002:000105e8 ??_C@_1BE@JBMPEGDG@?$AAh?$AAo?$AAn?$AAg?$AA?9?$AAk?$AAo?$AAn?$AAg@ 100a55e8 libucrt:get_qualified_locale.obj - 0002:000105fc ??_C@_1BI@KOELBBPJ@?$AAn?$AAe?$AAw?$AA?9?$AAz?$AAe?$AAa?$AAl?$AAa?$AAn?$AAd@ 100a55fc libucrt:get_qualified_locale.obj - 0002:00010614 ??_C@_15HIEBHAIO@?$AAn?$AAz@ 100a5614 libucrt:get_qualified_locale.obj - 0002:0001061c ??_C@_1BC@CHBCPFPI@?$AAp?$AAr?$AA?5?$AAc?$AAh?$AAi?$AAn?$AAa@ 100a561c libucrt:get_qualified_locale.obj - 0002:00010630 ??_C@_1BC@JAOIIFKD@?$AAp?$AAr?$AA?9?$AAc?$AAh?$AAi?$AAn?$AAa@ 100a5630 libucrt:get_qualified_locale.obj - 0002:00010644 ??_C@_1BI@BEHPPHKC@?$AAp?$AAu?$AAe?$AAr?$AAt?$AAo?$AA?9?$AAr?$AAi?$AAc?$AAo@ 100a5644 libucrt:get_qualified_locale.obj - 0002:0001065c ??_C@_1O@PAEOFKDI@?$AAs?$AAl?$AAo?$AAv?$AAa?$AAk@ 100a565c libucrt:get_qualified_locale.obj - 0002:0001066c ??_C@_1BK@FIHMCKAM@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?5?$AAa?$AAf?$AAr?$AAi?$AAc?$AAa@ 100a566c libucrt:get_qualified_locale.obj - 0002:00010688 ??_C@_1BI@NAEOODKB@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?5?$AAk?$AAo?$AAr?$AAe?$AAa@ 100a5688 libucrt:get_qualified_locale.obj - 0002:000106a0 ??_C@_1BK@FBDGGIFF@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?9?$AAa?$AAf?$AAr?$AAi?$AAc?$AAa@ 100a56a0 libucrt:get_qualified_locale.obj - 0002:000106bc ??_C@_1BI@GHLEJDPK@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?9?$AAk?$AAo?$AAr?$AAe?$AAa@ 100a56bc libucrt:get_qualified_locale.obj - 0002:000106d4 ??_C@_1CE@PLHLOMJF@?$AAt?$AAr?$AAi?$AAn?$AAi?$AAd?$AAa?$AAd?$AA?5?$AA?$CG?$AA?5?$AAt?$AAo?$AAb?$AAa@ 100a56d4 libucrt:get_qualified_locale.obj - 0002:000106f8 ??_C@_1BO@MODIMHHI@?$AAu?$AAn?$AAi?$AAt?$AAe?$AAd?$AA?9?$AAk?$AAi?$AAn?$AAg?$AAd?$AAo?$AAm@ 100a56f8 libucrt:get_qualified_locale.obj - 0002:00010718 ??_C@_1BM@FFHJONBJ@?$AAu?$AAn?$AAi?$AAt?$AAe?$AAd?$AA?9?$AAs?$AAt?$AAa?$AAt?$AAe?$AAs@ 100a5718 libucrt:get_qualified_locale.obj - 0002:00010734 ??_C@_19MPDNHKDG@?$AAu?$AAt?$AAf?$AA8@ 100a5734 libucrt:get_qualified_locale.obj - 0002:00010740 ??_C@_17DNCLJFIF@?$AAA?$AAC?$AAP@ 100a5740 libucrt:get_qualified_locale.obj - 0002:00010748 ??_C@_1M@FPEIIFAM@?$AAu?$AAt?$AAf?$AA?9?$AA8@ 100a5748 libucrt:get_qualified_locale.obj - 0002:00010754 ??_C@_17CIKBIHLH@?$AAO?$AAC?$AAP@ 100a5754 libucrt:get_qualified_locale.obj - 0002:0001075c ___rglangidNotDefault 100a575c libucrt:getqloc_downlevel.obj - 0002:00010e90 ??_C@_15EMKDOKLE@?$AAa?$AAr@ 100a5e90 libucrt:lcidtoname_downlevel.obj - 0002:00010e98 ??_C@_15KNPADPLH@?$AAb?$AAg@ 100a5e98 libucrt:lcidtoname_downlevel.obj - 0002:00010ea0 ??_C@_15EDMHLDMO@?$AAc?$AAa@ 100a5ea0 libucrt:lcidtoname_downlevel.obj - 0002:00010ea8 ??_C@_1O@BPEAJADD@?$AAz?$AAh?$AA?9?$AAC?$AAH?$AAS@ 100a5ea8 libucrt:lcidtoname_downlevel.obj - 0002:00010eb8 ??_C@_15LJNHCMNK@?$AAc?$AAs@ 100a5eb8 libucrt:lcidtoname_downlevel.obj - 0002:00010ec0 ??_C@_15FOMCIDHG@?$AAd?$AAa@ 100a5ec0 libucrt:lcidtoname_downlevel.obj - 0002:00010ec8 ??_C@_15NBKABECB@?$AAd?$AAe@ 100a5ec8 libucrt:lcidtoname_downlevel.obj - 0002:00010ed0 ??_C@_15GHPEIIAO@?$AAe?$AAl@ 100a5ed0 libucrt:lcidtoname_downlevel.obj - 0002:00010ed8 ??_C@_15MNPNEAIF@?$AAe?$AAn@ 100a5ed8 libucrt:lcidtoname_downlevel.obj - 0002:00010ee0 ??_C@_15GPIOMPMH@?$AAe?$AAs@ 100a5ee0 libucrt:lcidtoname_downlevel.obj - 0002:00010ee8 ??_C@_15NGLOAKJC@?$AAf?$AAi@ 100a5ee8 libucrt:lcidtoname_downlevel.obj - 0002:00010ef0 ??_C@_15FBKGNKAM@?$AAf?$AAr@ 100a5ef0 libucrt:lcidtoname_downlevel.obj - 0002:00010ef8 ??_C@_15KGGCNEFK@?$AAh?$AAe@ 100a5ef8 libucrt:lcidtoname_downlevel.obj - 0002:00010f00 ??_C@_15PGHLIDMF@?$AAh?$AAu@ 100a5f00 libucrt:lcidtoname_downlevel.obj - 0002:00010f08 ??_C@_15BIEMAPLM@?$AAi?$AAs@ 100a5f08 libucrt:lcidtoname_downlevel.obj - 0002:00010f10 ??_C@_15IFJLDHAF@?$AAi?$AAt@ 100a5f10 libucrt:lcidtoname_downlevel.obj - 0002:00010f18 ??_C@_15GEMIOCAG@?$AAj?$AAa@ 100a5f18 libucrt:lcidtoname_downlevel.obj - 0002:00010f20 ??_C@_15EPELEGJA@?$AAk?$AAo@ 100a5f20 libucrt:lcidtoname_downlevel.obj - 0002:00010f28 ??_C@_15NDDHIMN@?$AAn?$AAl@ 100a5f28 libucrt:lcidtoname_downlevel.obj - 0002:00010f30 ??_C@_15BPIGNHCD@?$AAn?$AAo@ 100a5f30 libucrt:lcidtoname_downlevel.obj - 0002:00010f38 ??_C@_15DEOPBLCG@?$AAp?$AAl@ 100a5f38 libucrt:lcidtoname_downlevel.obj - 0002:00010f40 ??_C@_15KBECGEFG@?$AAp?$AAt@ 100a5f40 libucrt:lcidtoname_downlevel.obj - 0002:00010f48 ??_C@_15GLJCBFMD@?$AAr?$AAo@ 100a5f48 libucrt:lcidtoname_downlevel.obj - 0002:00010f50 ??_C@_15FEDGKCDI@?$AAr?$AAu@ 100a5f50 libucrt:lcidtoname_downlevel.obj - 0002:00010f58 ??_C@_15GLKMLLHM@?$AAh?$AAr@ 100a5f58 libucrt:lcidtoname_downlevel.obj - 0002:00010f60 ??_C@_15CPKMFBDB@?$AAs?$AAk@ 100a5f60 libucrt:lcidtoname_downlevel.obj - 0002:00010f68 ??_C@_15BAAIOGMK@?$AAs?$AAq@ 100a5f68 libucrt:lcidtoname_downlevel.obj - 0002:00010f70 ??_C@_15INNPNOHD@?$AAs?$AAv@ 100a5f70 libucrt:lcidtoname_downlevel.obj - 0002:00010f78 ??_C@_15CABMMOGH@?$AAt?$AAh@ 100a5f78 libucrt:lcidtoname_downlevel.obj - 0002:00010f80 ??_C@_15BPLIHJJM@?$AAt?$AAr@ 100a5f80 libucrt:lcidtoname_downlevel.obj - 0002:00010f88 ??_C@_15NEOEKKDJ@?$AAu?$AAr@ 100a5f88 libucrt:lcidtoname_downlevel.obj - 0002:00010f90 ??_C@_15NFICGAJK@?$AAi?$AAd@ 100a5f90 libucrt:lcidtoname_downlevel.obj - 0002:00010f98 ??_C@_15HPJPHDM@?$AAb?$AAe@ 100a5f98 libucrt:lcidtoname_downlevel.obj - 0002:00010fa0 ??_C@_15LCHLGJII@?$AAs?$AAl@ 100a5fa0 libucrt:lcidtoname_downlevel.obj - 0002:00010fa8 ??_C@_15PCFJPHHO@?$AAe?$AAt@ 100a5fa8 libucrt:lcidtoname_downlevel.obj - 0002:00010fb0 ??_C@_15HPFPGODN@?$AAl?$AAv@ 100a5fb0 libucrt:lcidtoname_downlevel.obj - 0002:00010fb8 ??_C@_15NFFGKGLG@?$AAl?$AAt@ 100a5fb8 libucrt:lcidtoname_downlevel.obj - 0002:00010fc0 ??_C@_15BDAKCCHN@?$AAf?$AAa@ 100a5fc0 libucrt:lcidtoname_downlevel.obj - 0002:00010fc8 ??_C@_15NFGIAIAJ@?$AAv?$AAi@ 100a5fc8 libucrt:lcidtoname_downlevel.obj - 0002:00010fd0 ??_C@_15LMKNDMHN@?$AAh?$AAy@ 100a5fd0 libucrt:lcidtoname_downlevel.obj - 0002:00010fd8 ??_C@_15IJBHMCFL@?$AAa?$AAz@ 100a5fd8 libucrt:lcidtoname_downlevel.obj - 0002:00010fe0 ??_C@_15EKOFJABL@?$AAe?$AAu@ 100a5fe0 libucrt:lcidtoname_downlevel.obj - 0002:00010fe8 ??_C@_15BGHADCNK@?$AAm?$AAk@ 100a5fe8 libucrt:lcidtoname_downlevel.obj - 0002:00010ff0 ??_C@_15JDNICKHM@?$AAa?$AAf@ 100a5ff0 libucrt:lcidtoname_downlevel.obj - 0002:00010ff8 ??_C@_15KPJEDBKD@?$AAk?$AAa@ 100a5ff8 libucrt:lcidtoname_downlevel.obj - 0002:00011000 ??_C@_15PDNFFFEO@?$AAf?$AAo@ 100a6000 libucrt:lcidtoname_downlevel.obj - 0002:00011008 ??_C@_15OMLEGLOC@?$AAh?$AAi@ 100a6008 libucrt:lcidtoname_downlevel.obj - 0002:00011010 ??_C@_15IDNNENKK@?$AAm?$AAs@ 100a6010 libucrt:lcidtoname_downlevel.obj - 0002:00011018 ??_C@_15MACJNBMH@?$AAk?$AAk@ 100a6018 libucrt:lcidtoname_downlevel.obj - 0002:00011020 ??_C@_15DKDJEOND@?$AAk?$AAy@ 100a6020 libucrt:lcidtoname_downlevel.obj - 0002:00011028 ??_C@_15DFGDLJBG@?$AAs?$AAw@ 100a6028 libucrt:lcidtoname_downlevel.obj - 0002:00011030 ??_C@_15BBFAICNG@?$AAu?$AAz@ 100a6030 libucrt:lcidtoname_downlevel.obj - 0002:00011038 ??_C@_15DKNDCGEA@?$AAt?$AAt@ 100a6038 libucrt:lcidtoname_downlevel.obj - 0002:00011040 ??_C@_15MGIFMDPL@?$AAp?$AAa@ 100a6040 libucrt:lcidtoname_downlevel.obj - 0002:00011048 ??_C@_15HCNDBBA@?$AAg?$AAu@ 100a6048 libucrt:lcidtoname_downlevel.obj - 0002:00011050 ??_C@_15FNBEIBON@?$AAt?$AAa@ 100a6050 libucrt:lcidtoname_downlevel.obj - 0002:00011058 ??_C@_15NCHGBGLK@?$AAt?$AAe@ 100a6058 libucrt:lcidtoname_downlevel.obj - 0002:00011060 ??_C@_15PHPHCBPF@?$AAk?$AAn@ 100a6060 libucrt:lcidtoname_downlevel.obj - 0002:00011068 ??_C@_15DLGBCKMP@?$AAm?$AAr@ 100a6068 libucrt:lcidtoname_downlevel.obj - 0002:00011070 ??_C@_15EABBLBFF@?$AAs?$AAa@ 100a6070 libucrt:lcidtoname_downlevel.obj - 0002:00011078 ??_C@_15CBKOMCOI@?$AAm?$AAn@ 100a6078 libucrt:lcidtoname_downlevel.obj - 0002:00011080 ??_C@_15CKDMCJAF@?$AAg?$AAl@ 100a6080 libucrt:lcidtoname_downlevel.obj - 0002:00011088 ??_C@_17CNJFBPG@?$AAk?$AAo?$AAk@ 100a6088 libucrt:lcidtoname_downlevel.obj - 0002:00011090 ??_C@_17FFBJICPL@?$AAs?$AAy?$AAr@ 100a6090 libucrt:lcidtoname_downlevel.obj - 0002:00011098 ??_C@_17KPNDCPAF@?$AAd?$AAi?$AAv@ 100a6098 libucrt:lcidtoname_downlevel.obj - 0002:000110a0 ??_C@_11LOCGONAA@@ 100a60a0 libucrt:lcidtoname_downlevel.obj - 0002:000110a4 ??_C@_1M@OKAHONE@?$AAa?$AAr?$AA?9?$AAS?$AAA@ 100a60a4 libucrt:lcidtoname_downlevel.obj - 0002:000110b0 ??_C@_1M@FFFIGIGK@?$AAb?$AAg?$AA?9?$AAB?$AAG@ 100a60b0 libucrt:lcidtoname_downlevel.obj - 0002:000110bc ??_C@_1M@BJNKEDC@?$AAc?$AAa?$AA?9?$AAE?$AAS@ 100a60bc libucrt:lcidtoname_downlevel.obj - 0002:000110c8 ??_C@_1M@IJJHFJHA@?$AAc?$AAs?$AA?9?$AAC?$AAZ@ 100a60c8 libucrt:lcidtoname_downlevel.obj - 0002:000110d4 ??_C@_1M@CLPEOBGI@?$AAd?$AAa?$AA?9?$AAD?$AAK@ 100a60d4 libucrt:lcidtoname_downlevel.obj - 0002:000110e0 ??_C@_1M@MCMADGCB@?$AAd?$AAe?$AA?9?$AAD?$AAE@ 100a60e0 libucrt:lcidtoname_downlevel.obj - 0002:000110ec ??_C@_1M@OOCKEMAM@?$AAe?$AAl?$AA?9?$AAG?$AAR@ 100a60ec libucrt:lcidtoname_downlevel.obj - 0002:000110f8 ??_C@_1M@DDNJFGID@?$AAf?$AAi?$AA?9?$AAF?$AAI@ 100a60f8 libucrt:lcidtoname_downlevel.obj - 0002:00011104 ??_C@_1M@GLIPPMAC@?$AAf?$AAr?$AA?9?$AAF?$AAR@ 100a6104 libucrt:lcidtoname_downlevel.obj - 0002:00011110 ??_C@_1M@GFMCHPE@?$AAh?$AAe?$AA?9?$AAI?$AAL@ 100a6110 libucrt:lcidtoname_downlevel.obj - 0002:0001111c ??_C@_1M@MHLPGNKM@?$AAh?$AAu?$AA?9?$AAH?$AAU@ 100a611c libucrt:lcidtoname_downlevel.obj - 0002:00011128 ??_C@_1M@LPDDNNPN@?$AAi?$AAs?$AA?9?$AAI?$AAS@ 100a6128 libucrt:lcidtoname_downlevel.obj - 0002:00011134 ??_C@_1M@MADIPODN@?$AAi?$AAt?$AA?9?$AAI?$AAT@ 100a6134 libucrt:lcidtoname_downlevel.obj - 0002:00011140 ??_C@_1M@IHBJJGG@?$AAn?$AAl?$AA?9?$AAN?$AAL@ 100a6140 libucrt:lcidtoname_downlevel.obj - 0002:0001114c ??_C@_1M@EANAGDL@?$AAn?$AAb?$AA?9?$AAN?$AAO@ 100a614c libucrt:lcidtoname_downlevel.obj - 0002:00011158 ??_C@_1M@NEIEMEGP@?$AAp?$AAl?$AA?9?$AAP?$AAL@ 100a6158 libucrt:lcidtoname_downlevel.obj - 0002:00011164 ??_C@_1M@BOCFIGEP@?$AAp?$AAt?$AA?9?$AAB?$AAR@ 100a6164 libucrt:lcidtoname_downlevel.obj - 0002:00011170 ??_C@_1M@IMPFOPBG@?$AAr?$AAo?$AA?9?$AAR?$AAO@ 100a6170 libucrt:lcidtoname_downlevel.obj - 0002:0001117c ??_C@_1M@IDNNEJMM@?$AAr?$AAu?$AA?9?$AAR?$AAU@ 100a617c libucrt:lcidtoname_downlevel.obj - 0002:00011188 ??_C@_1M@LILEEOGM@?$AAh?$AAr?$AA?9?$AAH?$AAR@ 100a6188 libucrt:lcidtoname_downlevel.obj - 0002:00011194 ??_C@_1M@FKIFEHPB@?$AAs?$AAk?$AA?9?$AAS?$AAK@ 100a6194 libucrt:lcidtoname_downlevel.obj - 0002:000111a0 ??_C@_1M@LJMAMNPJ@?$AAs?$AAq?$AA?9?$AAA?$AAL@ 100a61a0 libucrt:lcidtoname_downlevel.obj - 0002:000111ac ??_C@_1M@GIAKDKJK@?$AAs?$AAv?$AA?9?$AAS?$AAE@ 100a61ac libucrt:lcidtoname_downlevel.obj - 0002:000111b8 ??_C@_1M@MKJKIKCL@?$AAt?$AAh?$AA?9?$AAT?$AAH@ 100a61b8 libucrt:lcidtoname_downlevel.obj - 0002:000111c4 ??_C@_1M@MFLCCMPB@?$AAt?$AAr?$AA?9?$AAT?$AAR@ 100a61c4 libucrt:lcidtoname_downlevel.obj - 0002:000111d0 ??_C@_1M@OIJHDKJN@?$AAu?$AAr?$AA?9?$AAP?$AAK@ 100a61d0 libucrt:lcidtoname_downlevel.obj - 0002:000111dc ??_C@_1M@LHIPCIEK@?$AAi?$AAd?$AA?9?$AAI?$AAD@ 100a61dc libucrt:lcidtoname_downlevel.obj - 0002:000111e8 ??_C@_1M@MFMOBGI@?$AAu?$AAk?$AA?9?$AAU?$AAA@ 100a61e8 libucrt:lcidtoname_downlevel.obj - 0002:000111f4 ??_C@_1M@OBGLJIPL@?$AAb?$AAe?$AA?9?$AAB?$AAY@ 100a61f4 libucrt:lcidtoname_downlevel.obj - 0002:00011200 ??_C@_1M@BCFAJEAD@?$AAs?$AAl?$AA?9?$AAS?$AAI@ 100a6200 libucrt:lcidtoname_downlevel.obj - 0002:0001120c ??_C@_1M@FKFFEDDN@?$AAe?$AAt?$AA?9?$AAE?$AAE@ 100a620c libucrt:lcidtoname_downlevel.obj - 0002:00011218 ??_C@_1M@KGKKAACI@?$AAl?$AAv?$AA?9?$AAL?$AAV@ 100a6218 libucrt:lcidtoname_downlevel.obj - 0002:00011224 ??_C@_1M@IFGBIJO@?$AAl?$AAt?$AA?9?$AAL?$AAT@ 100a6224 libucrt:lcidtoname_downlevel.obj - 0002:00011230 ??_C@_1M@FGEAHEDM@?$AAf?$AAa?$AA?9?$AAI?$AAR@ 100a6230 libucrt:lcidtoname_downlevel.obj - 0002:0001123c ??_C@_1M@KBMAIBFN@?$AAv?$AAi?$AA?9?$AAV?$AAN@ 100a623c libucrt:lcidtoname_downlevel.obj - 0002:00011248 ??_C@_1M@GPCBKDJK@?$AAh?$AAy?$AA?9?$AAA?$AAM@ 100a6248 libucrt:lcidtoname_downlevel.obj - 0002:00011254 ??_C@_1BG@BECMDDJB@?$AAa?$AAz?$AA?9?$AAA?$AAZ?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100a6254 libucrt:lcidtoname_downlevel.obj - 0002:0001126c ??_C@_1M@MAOFCAEA@?$AAe?$AAu?$AA?9?$AAE?$AAS@ 100a626c libucrt:lcidtoname_downlevel.obj - 0002:00011278 ??_C@_1M@IGHABKPI@?$AAm?$AAk?$AA?9?$AAM?$AAK@ 100a6278 libucrt:lcidtoname_downlevel.obj - 0002:00011284 ??_C@_1M@IAIGNEJG@?$AAt?$AAn?$AA?9?$AAZ?$AAA@ 100a6284 libucrt:lcidtoname_downlevel.obj - 0002:00011290 ??_C@_1M@IIJCOJFA@?$AAx?$AAh?$AA?9?$AAZ?$AAA@ 100a6290 libucrt:lcidtoname_downlevel.obj - 0002:0001129c ??_C@_1M@LGPJHNJH@?$AAz?$AAu?$AA?9?$AAZ?$AAA@ 100a629c libucrt:lcidtoname_downlevel.obj - 0002:000112a8 ??_C@_1M@HOKAOIO@?$AAa?$AAf?$AA?9?$AAZ?$AAA@ 100a62a8 libucrt:lcidtoname_downlevel.obj - 0002:000112b4 ??_C@_1M@DPCLHLIE@?$AAk?$AAa?$AA?9?$AAG?$AAE@ 100a62b4 libucrt:lcidtoname_downlevel.obj - 0002:000112c0 ??_C@_1M@BLKMHJBI@?$AAf?$AAo?$AA?9?$AAF?$AAO@ 100a62c0 libucrt:lcidtoname_downlevel.obj - 0002:000112cc ??_C@_1M@LGGJAPPB@?$AAh?$AAi?$AA?9?$AAI?$AAN@ 100a62cc libucrt:lcidtoname_downlevel.obj - 0002:000112d8 ??_C@_1M@FIKPIHFE@?$AAm?$AAt?$AA?9?$AAM?$AAT@ 100a62d8 libucrt:lcidtoname_downlevel.obj - 0002:000112e4 ??_C@_1M@HEGGPBFA@?$AAs?$AAe?$AA?9?$AAN?$AAO@ 100a62e4 libucrt:lcidtoname_downlevel.obj - 0002:000112f0 ??_C@_1M@EIBJEEPA@?$AAm?$AAs?$AA?9?$AAM?$AAY@ 100a62f0 libucrt:lcidtoname_downlevel.obj - 0002:000112fc ??_C@_1M@FHLBGMPP@?$AAk?$AAk?$AA?9?$AAK?$AAZ@ 100a62fc libucrt:lcidtoname_downlevel.obj - 0002:00011308 ??_C@_1M@NGJJLCGI@?$AAk?$AAy?$AA?9?$AAK?$AAG@ 100a6308 libucrt:lcidtoname_downlevel.obj - 0002:00011314 ??_C@_1M@GIENNBFC@?$AAs?$AAw?$AA?9?$AAK?$AAE@ 100a6314 libucrt:lcidtoname_downlevel.obj - 0002:00011320 ??_C@_1BG@NDGMJIMJ@?$AAu?$AAz?$AA?9?$AAU?$AAZ?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100a6320 libucrt:lcidtoname_downlevel.obj - 0002:00011338 ??_C@_1M@IDCCIHBC@?$AAt?$AAt?$AA?9?$AAR?$AAU@ 100a6338 libucrt:lcidtoname_downlevel.obj - 0002:00011344 ??_C@_1M@LOICPMOJ@?$AAb?$AAn?$AA?9?$AAI?$AAN@ 100a6344 libucrt:lcidtoname_downlevel.obj - 0002:00011350 ??_C@_1M@KPKKNEAH@?$AAp?$AAa?$AA?9?$AAI?$AAN@ 100a6350 libucrt:lcidtoname_downlevel.obj - 0002:0001135c ??_C@_1M@PJGPPBOG@?$AAg?$AAu?$AA?9?$AAI?$AAN@ 100a635c libucrt:lcidtoname_downlevel.obj - 0002:00011368 ??_C@_1M@KMKMOPHI@?$AAt?$AAa?$AA?9?$AAI?$AAN@ 100a6368 libucrt:lcidtoname_downlevel.obj - 0002:00011374 ??_C@_1M@KFEHEPAC@?$AAt?$AAe?$AA?9?$AAI?$AAN@ 100a6374 libucrt:lcidtoname_downlevel.obj - 0002:00011380 ??_C@_1M@CDCLMGHI@?$AAk?$AAn?$AA?9?$AAI?$AAN@ 100a6380 libucrt:lcidtoname_downlevel.obj - 0002:0001138c ??_C@_1M@MIODLDKF@?$AAm?$AAl?$AA?9?$AAI?$AAN@ 100a638c libucrt:lcidtoname_downlevel.obj - 0002:00011398 ??_C@_1M@PBIEACPO@?$AAm?$AAr?$AA?9?$AAI?$AAN@ 100a6398 libucrt:lcidtoname_downlevel.obj - 0002:000113a4 ??_C@_1M@NIDEAGPH@?$AAs?$AAa?$AA?9?$AAI?$AAN@ 100a63a4 libucrt:lcidtoname_downlevel.obj - 0002:000113b0 ??_C@_1M@FHIHCBIO@?$AAm?$AAn?$AA?9?$AAM?$AAN@ 100a63b0 libucrt:lcidtoname_downlevel.obj - 0002:000113bc ??_C@_1M@JAIJPENP@?$AAc?$AAy?$AA?9?$AAG?$AAB@ 100a63bc libucrt:lcidtoname_downlevel.obj - 0002:000113c8 ??_C@_1M@PHGFBEPN@?$AAg?$AAl?$AA?9?$AAE?$AAS@ 100a63c8 libucrt:lcidtoname_downlevel.obj - 0002:000113d4 ??_C@_1O@KPIPDNCP@?$AAk?$AAo?$AAk?$AA?9?$AAI?$AAN@ 100a63d4 libucrt:lcidtoname_downlevel.obj - 0002:000113e4 ??_C@_1O@KNHJLDJA@?$AAs?$AAy?$AAr?$AA?9?$AAS?$AAY@ 100a63e4 libucrt:lcidtoname_downlevel.obj - 0002:000113f4 ??_C@_1O@MKEKBLAH@?$AAd?$AAi?$AAv?$AA?9?$AAM?$AAV@ 100a63f4 libucrt:lcidtoname_downlevel.obj - 0002:00011404 ??_C@_1O@OHDCKDDF@?$AAq?$AAu?$AAz?$AA?9?$AAB?$AAO@ 100a6404 libucrt:lcidtoname_downlevel.obj - 0002:00011414 ??_C@_1M@LEPJNLFD@?$AAn?$AAs?$AA?9?$AAZ?$AAA@ 100a6414 libucrt:lcidtoname_downlevel.obj - 0002:00011420 ??_C@_1M@OMLEIIJB@?$AAm?$AAi?$AA?9?$AAN?$AAZ@ 100a6420 libucrt:lcidtoname_downlevel.obj - 0002:0001142c ??_C@_1M@PMPEAILG@?$AAa?$AAr?$AA?9?$AAI?$AAQ@ 100a642c libucrt:lcidtoname_downlevel.obj - 0002:00011438 ??_C@_1M@CNKPNOEE@?$AAd?$AAe?$AA?9?$AAC?$AAH@ 100a6438 libucrt:lcidtoname_downlevel.obj - 0002:00011444 ??_C@_1M@LKMGMLKO@?$AAe?$AAn?$AA?9?$AAG?$AAB@ 100a6444 libucrt:lcidtoname_downlevel.obj - 0002:00011450 ??_C@_1M@PGKJFFGL@?$AAe?$AAs?$AA?9?$AAM?$AAX@ 100a6450 libucrt:lcidtoname_downlevel.obj - 0002:0001145c ??_C@_1M@DNNANBDC@?$AAf?$AAr?$AA?9?$AAB?$AAE@ 100a645c libucrt:lcidtoname_downlevel.obj - 0002:00011468 ??_C@_1M@HLGMDFHM@?$AAi?$AAt?$AA?9?$AAC?$AAH@ 100a6468 libucrt:lcidtoname_downlevel.obj - 0002:00011474 ??_C@_1M@CLLBGJH@?$AAn?$AAl?$AA?9?$AAB?$AAE@ 100a6474 libucrt:lcidtoname_downlevel.obj - 0002:00011480 ??_C@_1M@BODBOGLF@?$AAn?$AAn?$AA?9?$AAN?$AAO@ 100a6480 libucrt:lcidtoname_downlevel.obj - 0002:0001148c ??_C@_1M@HFFAHKAD@?$AAp?$AAt?$AA?9?$AAP?$AAT@ 100a648c libucrt:lcidtoname_downlevel.obj - 0002:00011498 ??_C@_1BG@LNOAKHIE@?$AAs?$AAr?$AA?9?$AAS?$AAP?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100a6498 libucrt:lcidtoname_downlevel.obj - 0002:000114b0 ??_C@_1M@HBMHBGAK@?$AAs?$AAv?$AA?9?$AAF?$AAI@ 100a64b0 libucrt:lcidtoname_downlevel.obj - 0002:000114bc ??_C@_1BG@DGCJGJBE@?$AAa?$AAz?$AA?9?$AAA?$AAZ?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100a64bc libucrt:lcidtoname_downlevel.obj - 0002:000114d4 ??_C@_1M@KEJDAAHB@?$AAs?$AAe?$AA?9?$AAS?$AAE@ 100a64d4 libucrt:lcidtoname_downlevel.obj - 0002:000114e0 ??_C@_1M@HEIBJJAD@?$AAm?$AAs?$AA?9?$AAB?$AAN@ 100a64e0 libucrt:lcidtoname_downlevel.obj - 0002:000114ec ??_C@_1BG@PBGJMCEM@?$AAu?$AAz?$AA?9?$AAU?$AAZ?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100a64ec libucrt:lcidtoname_downlevel.obj - 0002:00011504 ??_C@_1O@LAOBCMDF@?$AAq?$AAu?$AAz?$AA?9?$AAE?$AAC@ 100a6504 libucrt:lcidtoname_downlevel.obj - 0002:00011514 ??_C@_1M@POEEMAIO@?$AAa?$AAr?$AA?9?$AAE?$AAG@ 100a6514 libucrt:lcidtoname_downlevel.obj - 0002:00011520 ??_C@_1M@EFAKDEDL@?$AAz?$AAh?$AA?9?$AAH?$AAK@ 100a6520 libucrt:lcidtoname_downlevel.obj - 0002:0001152c ??_C@_1M@HKKIJHGI@?$AAd?$AAe?$AA?9?$AAA?$AAT@ 100a652c libucrt:lcidtoname_downlevel.obj - 0002:00011538 ??_C@_1M@KBFBEHJF@?$AAe?$AAn?$AA?9?$AAA?$AAU@ 100a6538 libucrt:lcidtoname_downlevel.obj - 0002:00011544 ??_C@_1M@MNPLFAAH@?$AAe?$AAs?$AA?9?$AAE?$AAS@ 100a6544 libucrt:lcidtoname_downlevel.obj - 0002:00011550 ??_C@_1M@HJOOJFMA@?$AAf?$AAr?$AA?9?$AAC?$AAA@ 100a6550 libucrt:lcidtoname_downlevel.obj - 0002:0001155c ??_C@_1BG@JPOFPNAB@?$AAs?$AAr?$AA?9?$AAS?$AAP?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100a655c libucrt:lcidtoname_downlevel.obj - 0002:00011574 ??_C@_1M@LNFOCMOB@?$AAs?$AAe?$AA?9?$AAF?$AAI@ 100a6574 libucrt:lcidtoname_downlevel.obj - 0002:00011580 ??_C@_1O@MGJBOAMB@?$AAq?$AAu?$AAz?$AA?9?$AAP?$AAE@ 100a6580 libucrt:lcidtoname_downlevel.obj - 0002:00011590 ??_C@_1M@GJINLBOK@?$AAa?$AAr?$AA?9?$AAL?$AAY@ 100a6590 libucrt:lcidtoname_downlevel.obj - 0002:0001159c ??_C@_1M@GGMNHJNL@?$AAz?$AAh?$AA?9?$AAS?$AAG@ 100a659c libucrt:lcidtoname_downlevel.obj - 0002:000115a8 ??_C@_1M@HOIKODND@?$AAd?$AAe?$AA?9?$AAL?$AAU@ 100a65a8 libucrt:lcidtoname_downlevel.obj - 0002:000115b4 ??_C@_1M@DDOCCGFG@?$AAe?$AAn?$AA?9?$AAC?$AAA@ 100a65b4 libucrt:lcidtoname_downlevel.obj - 0002:000115c0 ??_C@_1M@BNOEMJLF@?$AAe?$AAs?$AA?9?$AAG?$AAT@ 100a65c0 libucrt:lcidtoname_downlevel.obj - 0002:000115cc ??_C@_1M@EOGNKEK@?$AAf?$AAr?$AA?9?$AAC?$AAH@ 100a65cc libucrt:lcidtoname_downlevel.obj - 0002:000115d8 ??_C@_1M@FLIDJFHL@?$AAh?$AAr?$AA?9?$AAB?$AAA@ 100a65d8 libucrt:lcidtoname_downlevel.obj - 0002:000115e4 ??_C@_1O@FMCELNAJ@?$AAs?$AAm?$AAj?$AA?9?$AAN?$AAO@ 100a65e4 libucrt:lcidtoname_downlevel.obj - 0002:000115f4 ??_C@_1M@JHGLJMGJ@?$AAa?$AAr?$AA?9?$AAD?$AAZ@ 100a65f4 libucrt:lcidtoname_downlevel.obj - 0002:00011600 ??_C@_1M@JKKFDCNP@?$AAz?$AAh?$AA?9?$AAM?$AAO@ 100a6600 libucrt:lcidtoname_downlevel.obj - 0002:0001160c ??_C@_1M@GEEFALPE@?$AAd?$AAe?$AA?9?$AAL?$AAI@ 100a660c libucrt:lcidtoname_downlevel.obj - 0002:00011618 ??_C@_1M@IGEOFBG@?$AAe?$AAn?$AA?9?$AAN?$AAZ@ 100a6618 libucrt:lcidtoname_downlevel.obj - 0002:00011624 ??_C@_1M@KDBONEHP@?$AAe?$AAs?$AA?9?$AAC?$AAR@ 100a6624 libucrt:lcidtoname_downlevel.obj - 0002:00011630 ??_C@_1M@FHMDOHNN@?$AAf?$AAr?$AA?9?$AAL?$AAU@ 100a6630 libucrt:lcidtoname_downlevel.obj - 0002:0001163c ??_C@_1BG@NFKKMAFG@?$AAb?$AAs?$AA?9?$AAB?$AAA?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100a663c libucrt:lcidtoname_downlevel.obj - 0002:00011654 ??_C@_1O@IMNBEMCI@?$AAs?$AAm?$AAj?$AA?9?$AAS?$AAE@ 100a6654 libucrt:lcidtoname_downlevel.obj - 0002:00011664 ??_C@_1M@DHHMBNDP@?$AAa?$AAr?$AA?9?$AAM?$AAA@ 100a6664 libucrt:lcidtoname_downlevel.obj - 0002:00011670 ??_C@_1M@BNBLJCGH@?$AAe?$AAn?$AA?9?$AAI?$AAE@ 100a6670 libucrt:lcidtoname_downlevel.obj - 0002:0001167c ??_C@_1M@GEPAFMDL@?$AAe?$AAs?$AA?9?$AAP?$AAA@ 100a667c libucrt:lcidtoname_downlevel.obj - 0002:00011688 ??_C@_1M@OJONDMDL@?$AAf?$AAr?$AA?9?$AAM?$AAC@ 100a6688 libucrt:lcidtoname_downlevel.obj - 0002:00011694 ??_C@_1BG@OBCNFJB@?$AAs?$AAr?$AA?9?$AAB?$AAA?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100a6694 libucrt:lcidtoname_downlevel.obj - 0002:000116ac ??_C@_1O@KEMEEGPO@?$AAs?$AAm?$AAa?$AA?9?$AAN?$AAO@ 100a66ac libucrt:lcidtoname_downlevel.obj - 0002:000116bc ??_C@_1M@ELMGFODK@?$AAa?$AAr?$AA?9?$AAT?$AAN@ 100a66bc libucrt:lcidtoname_downlevel.obj - 0002:000116c8 ??_C@_1M@BHDLHFAF@?$AAe?$AAn?$AA?9?$AAZ?$AAA@ 100a66c8 libucrt:lcidtoname_downlevel.obj - 0002:000116d4 ??_C@_1M@BMGIGLIF@?$AAe?$AAs?$AA?9?$AAD?$AAO@ 100a66d4 libucrt:lcidtoname_downlevel.obj - 0002:000116e0 ??_C@_1BG@CMBHIPBE@?$AAs?$AAr?$AA?9?$AAB?$AAA?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100a66e0 libucrt:lcidtoname_downlevel.obj - 0002:000116f8 ??_C@_1O@HEDBLHNP@?$AAs?$AAm?$AAa?$AA?9?$AAS?$AAE@ 100a66f8 libucrt:lcidtoname_downlevel.obj - 0002:00011708 ??_C@_1M@DAGCADIM@?$AAa?$AAr?$AA?9?$AAO?$AAM@ 100a6708 libucrt:lcidtoname_downlevel.obj - 0002:00011714 ??_C@_1M@FODLMICG@?$AAe?$AAn?$AA?9?$AAJ?$AAM@ 100a6714 libucrt:lcidtoname_downlevel.obj - 0002:00011720 ??_C@_1M@DNMLCIHB@?$AAe?$AAs?$AA?9?$AAV?$AAE@ 100a6720 libucrt:lcidtoname_downlevel.obj - 0002:0001172c ??_C@_1O@EOKHMKJK@?$AAs?$AAm?$AAs?$AA?9?$AAF?$AAI@ 100a672c libucrt:lcidtoname_downlevel.obj - 0002:0001173c ??_C@_1M@CAFJMKOF@?$AAa?$AAr?$AA?9?$AAY?$AAE@ 100a673c libucrt:lcidtoname_downlevel.obj - 0002:00011748 ??_C@_1M@CBFHIJLI@?$AAe?$AAn?$AA?9?$AAC?$AAB@ 100a6748 libucrt:lcidtoname_downlevel.obj - 0002:00011754 ??_C@_1M@BGNFLDN@?$AAe?$AAs?$AA?9?$AAC?$AAO@ 100a6754 libucrt:lcidtoname_downlevel.obj - 0002:00011760 ??_C@_1O@JMPHMAMC@?$AAs?$AAm?$AAn?$AA?9?$AAF?$AAI@ 100a6760 libucrt:lcidtoname_downlevel.obj - 0002:00011770 ??_C@_1M@JLANABKE@?$AAa?$AAr?$AA?9?$AAS?$AAY@ 100a6770 libucrt:lcidtoname_downlevel.obj - 0002:0001177c ??_C@_1M@HPKGCFGN@?$AAe?$AAn?$AA?9?$AAB?$AAZ@ 100a677c libucrt:lcidtoname_downlevel.obj - 0002:00011788 ??_C@_1M@OLJCMLGM@?$AAe?$AAs?$AA?9?$AAP?$AAE@ 100a6788 libucrt:lcidtoname_downlevel.obj - 0002:00011794 ??_C@_1M@MKKGFKLE@?$AAa?$AAr?$AA?9?$AAJ?$AAO@ 100a6794 libucrt:lcidtoname_downlevel.obj - 0002:000117a0 ??_C@_1M@EKPGLDNI@?$AAe?$AAn?$AA?9?$AAT?$AAT@ 100a67a0 libucrt:lcidtoname_downlevel.obj - 0002:000117ac ??_C@_1M@OONGHFHE@?$AAe?$AAs?$AA?9?$AAA?$AAR@ 100a67ac libucrt:lcidtoname_downlevel.obj - 0002:000117b8 ??_C@_1M@OOJFGBHE@?$AAa?$AAr?$AA?9?$AAL?$AAB@ 100a67b8 libucrt:lcidtoname_downlevel.obj - 0002:000117c4 ??_C@_1M@GCEJHNEG@?$AAe?$AAn?$AA?9?$AAZ?$AAW@ 100a67c4 libucrt:lcidtoname_downlevel.obj - 0002:000117d0 ??_C@_1M@JNOCAHJI@?$AAe?$AAs?$AA?9?$AAE?$AAC@ 100a67d0 libucrt:lcidtoname_downlevel.obj - 0002:000117dc ??_C@_1M@JEFHPGGB@?$AAa?$AAr?$AA?9?$AAK?$AAW@ 100a67dc libucrt:lcidtoname_downlevel.obj - 0002:000117e8 ??_C@_1M@MLKIBJOJ@?$AAe?$AAn?$AA?9?$AAP?$AAH@ 100a67e8 libucrt:lcidtoname_downlevel.obj - 0002:000117f4 ??_C@_1M@BDNIPEND@?$AAe?$AAs?$AA?9?$AAC?$AAL@ 100a67f4 libucrt:lcidtoname_downlevel.obj - 0002:00011800 ??_C@_1M@MPNMEKBD@?$AAa?$AAr?$AA?9?$AAA?$AAE@ 100a6800 libucrt:lcidtoname_downlevel.obj - 0002:0001180c ??_C@_1M@KBJALCPI@?$AAe?$AAs?$AA?9?$AAU?$AAY@ 100a680c libucrt:lcidtoname_downlevel.obj - 0002:00011818 ??_C@_1M@LLCCOAGA@?$AAa?$AAr?$AA?9?$AAB?$AAH@ 100a6818 libucrt:lcidtoname_downlevel.obj - 0002:00011824 ??_C@_1M@PBFNCDEL@?$AAe?$AAs?$AA?9?$AAP?$AAY@ 100a6824 libucrt:lcidtoname_downlevel.obj - 0002:00011830 ??_C@_1M@EDGINPNP@?$AAa?$AAr?$AA?9?$AAQ?$AAA@ 100a6830 libucrt:lcidtoname_downlevel.obj - 0002:0001183c ??_C@_1M@MKDBIIJI@?$AAe?$AAs?$AA?9?$AAB?$AAO@ 100a683c libucrt:lcidtoname_downlevel.obj - 0002:00011848 ??_C@_1M@CPKKEBLD@?$AAe?$AAs?$AA?9?$AAS?$AAV@ 100a6848 libucrt:lcidtoname_downlevel.obj - 0002:00011854 ??_C@_1M@NDBGMMJL@?$AAe?$AAs?$AA?9?$AAH?$AAN@ 100a6854 libucrt:lcidtoname_downlevel.obj - 0002:00011860 ??_C@_1M@JIJIBHDP@?$AAe?$AAs?$AA?9?$AAN?$AAI@ 100a6860 libucrt:lcidtoname_downlevel.obj - 0002:0001186c ??_C@_1M@CGFMKEEK@?$AAe?$AAs?$AA?9?$AAP?$AAR@ 100a686c libucrt:lcidtoname_downlevel.obj - 0002:00011878 ??_C@_1O@ICJHKIIK@?$AAz?$AAh?$AA?9?$AAC?$AAH?$AAT@ 100a6878 libucrt:lcidtoname_downlevel.obj - 0002:00011888 ??_C@_15CLNEJCE@?$AAs?$AAr@ 100a6888 libucrt:lcidtoname_downlevel.obj - 0002:00011fb0 ??_C@_1M@KAHEKEIG@?$AAa?$AAf?$AA?9?$AAz?$AAa@ 100a6fb0 libucrt:lcidtoname_downlevel.obj - 0002:00011fbc ??_C@_1M@GIECOABL@?$AAa?$AAr?$AA?9?$AAa?$AAe@ 100a6fbc libucrt:lcidtoname_downlevel.obj - 0002:00011fc8 ??_C@_1M@BMLMEKGI@?$AAa?$AAr?$AA?9?$AAb?$AAh@ 100a6fc8 libucrt:lcidtoname_downlevel.obj - 0002:00011fd4 ??_C@_1M@DAPFDGGB@?$AAa?$AAr?$AA?9?$AAd?$AAz@ 100a6fd4 libucrt:lcidtoname_downlevel.obj - 0002:00011fe0 ??_C@_1M@FJNKGKIG@?$AAa?$AAr?$AA?9?$AAe?$AAg@ 100a6fe0 libucrt:lcidtoname_downlevel.obj - 0002:00011fec ??_C@_1M@FLGKKCLO@?$AAa?$AAr?$AA?9?$AAi?$AAq@ 100a6fec libucrt:lcidtoname_downlevel.obj - 0002:00011ff8 ??_C@_1M@GNDIPALM@?$AAa?$AAr?$AA?9?$AAj?$AAo@ 100a6ff8 libucrt:lcidtoname_downlevel.obj - 0002:00012004 ??_C@_1M@DDMJFMGJ@?$AAa?$AAr?$AA?9?$AAk?$AAw@ 100a7004 libucrt:lcidtoname_downlevel.obj - 0002:00012010 ??_C@_1M@EJALMLHM@?$AAa?$AAr?$AA?9?$AAl?$AAb@ 100a7010 libucrt:lcidtoname_downlevel.obj - 0002:0001201c ??_C@_1M@MOBDBLOC@?$AAa?$AAr?$AA?9?$AAl?$AAy@ 100a701c libucrt:lcidtoname_downlevel.obj - 0002:00012028 ??_C@_1M@JAOCLHDH@?$AAa?$AAr?$AA?9?$AAm?$AAa@ 100a7028 libucrt:lcidtoname_downlevel.obj - 0002:00012034 ??_C@_1M@JHPMKJIE@?$AAa?$AAr?$AA?9?$AAo?$AAm@ 100a7034 libucrt:lcidtoname_downlevel.obj - 0002:00012040 ??_C@_1M@OEPGHFNH@?$AAa?$AAr?$AA?9?$AAq?$AAa@ 100a7040 libucrt:lcidtoname_downlevel.obj - 0002:0001204c ??_C@_1M@KJDONENM@?$AAa?$AAr?$AA?9?$AAs?$AAa@ 100a704c libucrt:lcidtoname_downlevel.obj - 0002:00012058 ??_C@_1M@DMJDKLKM@?$AAa?$AAr?$AA?9?$AAs?$AAy@ 100a7058 libucrt:lcidtoname_downlevel.obj - 0002:00012064 ??_C@_1M@OMFIPEDC@?$AAa?$AAr?$AA?9?$AAt?$AAn@ 100a7064 libucrt:lcidtoname_downlevel.obj - 0002:00012070 ??_C@_1M@IHMHGAON@?$AAa?$AAr?$AA?9?$AAy?$AAe@ 100a7070 libucrt:lcidtoname_downlevel.obj - 0002:0001207c ??_C@_1BG@KDCPGJGB@?$AAa?$AAz?$AA?9?$AAa?$AAz?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100a707c libucrt:lcidtoname_downlevel.obj - 0002:00012094 ??_C@_1BG@IBCKDDOE@?$AAa?$AAz?$AA?9?$AAa?$AAz?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100a7094 libucrt:lcidtoname_downlevel.obj - 0002:000120ac ??_C@_1M@EGPFDCPD@?$AAb?$AAe?$AA?9?$AAb?$AAy@ 100a70ac libucrt:lcidtoname_downlevel.obj - 0002:000120b8 ??_C@_1M@PCMGMCGC@?$AAb?$AAg?$AA?9?$AAb?$AAg@ 100a70b8 libucrt:lcidtoname_downlevel.obj - 0002:000120c4 ??_C@_1M@BJBMFGOB@?$AAb?$AAn?$AA?9?$AAi?$AAn@ 100a70c4 libucrt:lcidtoname_downlevel.obj - 0002:000120d0 ??_C@_1BG@EAKMMACD@?$AAb?$AAs?$AA?9?$AAb?$AAa?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100a70d0 libucrt:lcidtoname_downlevel.obj - 0002:000120e8 ??_C@_1M@KGADAODK@?$AAc?$AAa?$AA?9?$AAe?$AAs@ 100a70e8 libucrt:lcidtoname_downlevel.obj - 0002:000120f4 ??_C@_1M@COAJPDHI@?$AAc?$AAs?$AA?9?$AAc?$AAz@ 100a70f4 libucrt:lcidtoname_downlevel.obj - 0002:00012100 ??_C@_1M@DHBHFONH@?$AAc?$AAy?$AA?9?$AAg?$AAb@ 100a7100 libucrt:lcidtoname_downlevel.obj - 0002:0001210c ??_C@_1M@IMGKELGA@?$AAd?$AAa?$AA?9?$AAd?$AAk@ 100a710c libucrt:lcidtoname_downlevel.obj - 0002:00012118 ??_C@_1M@NNDGDNGA@?$AAd?$AAe?$AA?9?$AAa?$AAt@ 100a7118 libucrt:lcidtoname_downlevel.obj - 0002:00012124 ??_C@_1M@IKDBHEEM@?$AAd?$AAe?$AA?9?$AAc?$AAh@ 100a7124 libucrt:lcidtoname_downlevel.obj - 0002:00012130 ??_C@_1M@GFFOJMCJ@?$AAd?$AAe?$AA?9?$AAd?$AAe@ 100a7130 libucrt:lcidtoname_downlevel.obj - 0002:0001213c ??_C@_1M@MDNLKBPM@?$AAd?$AAe?$AA?9?$AAl?$AAi@ 100a713c libucrt:lcidtoname_downlevel.obj - 0002:00012148 ??_C@_1M@NJBEEJNL@?$AAd?$AAe?$AA?9?$AAl?$AAu@ 100a7148 libucrt:lcidtoname_downlevel.obj - 0002:00012154 ??_C@_1O@GNNELBAP@?$AAd?$AAi?$AAv?$AA?9?$AAm?$AAv@ 100a7154 libucrt:lcidtoname_downlevel.obj - 0002:00012164 ??_C@_1M@EJLEOGAE@?$AAe?$AAl?$AA?9?$AAg?$AAr@ 100a7164 libucrt:lcidtoname_downlevel.obj - 0002:00012170 ??_C@_1M@GMPONJN@?$AAe?$AAn?$AA?9?$AAa?$AAu@ 100a7170 libucrt:lcidtoname_downlevel.obj - 0002:0001217c ??_C@_1M@NIDIIPGF@?$AAe?$AAn?$AA?9?$AAb?$AAz@ 100a717c libucrt:lcidtoname_downlevel.obj - 0002:00012188 ??_C@_1M@JEHMIMFO@?$AAe?$AAn?$AA?9?$AAc?$AAa@ 100a7188 libucrt:lcidtoname_downlevel.obj - 0002:00012194 ??_C@_1M@IGMJCDLA@?$AAe?$AAn?$AA?9?$AAc?$AAb@ 100a7194 libucrt:lcidtoname_downlevel.obj - 0002:000121a0 ??_C@_1M@BNFIGBKG@?$AAe?$AAn?$AA?9?$AAg?$AAb@ 100a71a0 libucrt:lcidtoname_downlevel.obj - 0002:000121ac ??_C@_1M@LKIFDIGP@?$AAe?$AAn?$AA?9?$AAi?$AAe@ 100a71ac libucrt:lcidtoname_downlevel.obj - 0002:000121b8 ??_C@_1M@PJKFGCCO@?$AAe?$AAn?$AA?9?$AAj?$AAm@ 100a71b8 libucrt:lcidtoname_downlevel.obj - 0002:000121c4 ??_C@_1M@KPPKEPBO@?$AAe?$AAn?$AA?9?$AAn?$AAz@ 100a71c4 libucrt:lcidtoname_downlevel.obj - 0002:000121d0 ??_C@_1M@GMDGLDOB@?$AAe?$AAn?$AA?9?$AAp?$AAh@ 100a71d0 libucrt:lcidtoname_downlevel.obj - 0002:000121dc ??_C@_1M@ONGIBJNA@?$AAe?$AAn?$AA?9?$AAt?$AAt@ 100a71dc libucrt:lcidtoname_downlevel.obj - 0002:000121e8 ??_C@_1M@LLODPCMM@?$AAe?$AAn?$AA?9?$AAu?$AAs@ 100a71e8 libucrt:lcidtoname_downlevel.obj - 0002:000121f4 ??_C@_1M@LAKFNPAN@?$AAe?$AAn?$AA?9?$AAz?$AAa@ 100a71f4 libucrt:lcidtoname_downlevel.obj - 0002:00012200 ??_C@_1M@MFNHNHEO@?$AAe?$AAn?$AA?9?$AAz?$AAw@ 100a7200 libucrt:lcidtoname_downlevel.obj - 0002:0001220c ??_C@_1M@EJEINPHM@?$AAe?$AAs?$AA?9?$AAa?$AAr@ 100a720c libucrt:lcidtoname_downlevel.obj - 0002:00012218 ??_C@_1M@GNKPCCJA@?$AAe?$AAs?$AA?9?$AAb?$AAo@ 100a7218 libucrt:lcidtoname_downlevel.obj - 0002:00012224 ??_C@_1M@LEEGFONL@?$AAe?$AAs?$AA?9?$AAc?$AAl@ 100a7224 libucrt:lcidtoname_downlevel.obj - 0002:00012230 ??_C@_1M@KGPDPBDF@?$AAe?$AAs?$AA?9?$AAc?$AAo@ 100a7230 libucrt:lcidtoname_downlevel.obj - 0002:0001223c ??_C@_1M@EIAHOHH@?$AAe?$AAs?$AA?9?$AAc?$AAr@ 100a723c libucrt:lcidtoname_downlevel.obj - 0002:00012248 ??_C@_1M@LLPGMBIN@?$AAe?$AAs?$AA?9?$AAd?$AAo@ 100a7248 libucrt:lcidtoname_downlevel.obj - 0002:00012254 ??_C@_1M@DKHMKNJA@?$AAe?$AAs?$AA?9?$AAe?$AAc@ 100a7254 libucrt:lcidtoname_downlevel.obj - 0002:00012260 ??_C@_1M@GKGFPKAP@?$AAe?$AAs?$AA?9?$AAe?$AAs@ 100a7260 libucrt:lcidtoname_downlevel.obj - 0002:0001226c ??_C@_1M@LKHKGDLN@?$AAe?$AAs?$AA?9?$AAg?$AAt@ 100a726c libucrt:lcidtoname_downlevel.obj - 0002:00012278 ??_C@_1M@HEIIGGJD@?$AAe?$AAs?$AA?9?$AAh?$AAn@ 100a7278 libucrt:lcidtoname_downlevel.obj - 0002:00012284 ??_C@_1M@FBDHPPGD@?$AAe?$AAs?$AA?9?$AAm?$AAx@ 100a7284 libucrt:lcidtoname_downlevel.obj - 0002:00012290 ??_C@_1M@DPAGLNDH@?$AAe?$AAs?$AA?9?$AAn?$AAi@ 100a7290 libucrt:lcidtoname_downlevel.obj - 0002:0001229c ??_C@_1M@MDGOPGDD@?$AAe?$AAs?$AA?9?$AAp?$AAa@ 100a729c libucrt:lcidtoname_downlevel.obj - 0002:000122a8 ??_C@_1M@EMAMGBGE@?$AAe?$AAs?$AA?9?$AAp?$AAe@ 100a72a8 libucrt:lcidtoname_downlevel.obj - 0002:000122b4 ??_C@_1M@IBMCAOEC@?$AAe?$AAs?$AA?9?$AAp?$AAr@ 100a72b4 libucrt:lcidtoname_downlevel.obj - 0002:000122c0 ??_C@_1M@FGMDIJED@?$AAe?$AAs?$AA?9?$AAp?$AAy@ 100a72c0 libucrt:lcidtoname_downlevel.obj - 0002:000122cc ??_C@_1M@IIDEOLLL@?$AAe?$AAs?$AA?9?$AAs?$AAv@ 100a72cc libucrt:lcidtoname_downlevel.obj - 0002:000122d8 ??_C@_1M@GAOBIPA@?$AAe?$AAs?$AA?9?$AAu?$AAy@ 100a72d8 libucrt:lcidtoname_downlevel.obj - 0002:000122e4 ??_C@_1M@JKFFICHJ@?$AAe?$AAs?$AA?9?$AAv?$AAe@ 100a72e4 libucrt:lcidtoname_downlevel.obj - 0002:000122f0 ??_C@_1M@PNMLOJDF@?$AAe?$AAt?$AA?9?$AAe?$AAe@ 100a72f0 libucrt:lcidtoname_downlevel.obj - 0002:000122fc ??_C@_1M@GHHLIKEI@?$AAe?$AAu?$AA?9?$AAe?$AAs@ 100a72fc libucrt:lcidtoname_downlevel.obj - 0002:00012308 ??_C@_1M@PBNONODE@?$AAf?$AAa?$AA?9?$AAi?$AAr@ 100a7308 libucrt:lcidtoname_downlevel.obj - 0002:00012314 ??_C@_1M@JEEHPMIL@?$AAf?$AAi?$AA?9?$AAf?$AAi@ 100a7314 libucrt:lcidtoname_downlevel.obj - 0002:00012320 ??_C@_1M@LMDCNDBA@?$AAf?$AAo?$AA?9?$AAf?$AAo@ 100a7320 libucrt:lcidtoname_downlevel.obj - 0002:0001232c ??_C@_1M@JKEOHLDK@?$AAf?$AAr?$AA?9?$AAb?$AAe@ 100a732c libucrt:lcidtoname_downlevel.obj - 0002:00012338 ??_C@_1M@NOHADPMI@?$AAf?$AAr?$AA?9?$AAc?$AAa@ 100a7338 libucrt:lcidtoname_downlevel.obj - 0002:00012344 ??_C@_1M@KDHIHAEC@?$AAf?$AAr?$AA?9?$AAc?$AAh@ 100a7344 libucrt:lcidtoname_downlevel.obj - 0002:00012350 ??_C@_1M@MMBBFGAK@?$AAf?$AAr?$AA?9?$AAf?$AAr@ 100a7350 libucrt:lcidtoname_downlevel.obj - 0002:0001235c ??_C@_1M@PAFNENNF@?$AAf?$AAr?$AA?9?$AAl?$AAu@ 100a735c libucrt:lcidtoname_downlevel.obj - 0002:00012368 ??_C@_1M@EOHDJGDD@?$AAf?$AAr?$AA?9?$AAm?$AAc@ 100a7368 libucrt:lcidtoname_downlevel.obj - 0002:00012374 ??_C@_1M@FAPLLOPF@?$AAg?$AAl?$AA?9?$AAe?$AAs@ 100a7374 libucrt:lcidtoname_downlevel.obj - 0002:00012380 ??_C@_1M@FOPBFLOO@?$AAg?$AAu?$AA?9?$AAi?$AAn@ 100a7380 libucrt:lcidtoname_downlevel.obj - 0002:0001238c ??_C@_1M@KBMCINPM@?$AAh?$AAe?$AA?9?$AAi?$AAl@ 100a738c libucrt:lcidtoname_downlevel.obj - 0002:00012398 ??_C@_1M@BBPHKFPJ@?$AAh?$AAi?$AA?9?$AAi?$AAn@ 100a7398 libucrt:lcidtoname_downlevel.obj - 0002:000123a4 ??_C@_1M@PMBNDPHD@?$AAh?$AAr?$AA?9?$AAb?$AAa@ 100a73a4 libucrt:lcidtoname_downlevel.obj - 0002:000123b0 ??_C@_1M@BPCKOEGE@?$AAh?$AAr?$AA?9?$AAh?$AAr@ 100a73b0 libucrt:lcidtoname_downlevel.obj - 0002:000123bc ??_C@_1M@GACBMHKE@?$AAh?$AAu?$AA?9?$AAh?$AAu@ 100a73bc libucrt:lcidtoname_downlevel.obj - 0002:000123c8 ??_C@_1M@MILPAJJC@?$AAh?$AAy?$AA?9?$AAa?$AAm@ 100a73c8 libucrt:lcidtoname_downlevel.obj - 0002:000123d4 ??_C@_1M@BABBICEC@?$AAi?$AAd?$AA?9?$AAi?$AAd@ 100a73d4 libucrt:lcidtoname_downlevel.obj - 0002:000123e0 ??_C@_1M@BIKNHHPF@?$AAi?$AAs?$AA?9?$AAi?$AAs@ 100a73e0 libucrt:lcidtoname_downlevel.obj - 0002:000123ec ??_C@_1M@NMPCJPHE@?$AAi?$AAt?$AA?9?$AAc?$AAh@ 100a73ec libucrt:lcidtoname_downlevel.obj - 0002:000123f8 ??_C@_1M@GHKGFEDF@?$AAi?$AAt?$AA?9?$AAi?$AAt@ 100a73f8 libucrt:lcidtoname_downlevel.obj - 0002:00012404 ??_C@_1M@NIEJCJJA@?$AAj?$AAa?$AA?9?$AAj?$AAp@ 100a7404 libucrt:lcidtoname_downlevel.obj - 0002:00012410 ??_C@_1M@JILFNBIM@?$AAk?$AAa?$AA?9?$AAg?$AAe@ 100a7410 libucrt:lcidtoname_downlevel.obj - 0002:0001241c ??_C@_1M@PACPMGPH@?$AAk?$AAk?$AA?9?$AAk?$AAz@ 100a741c libucrt:lcidtoname_downlevel.obj - 0002:00012428 ??_C@_1M@IELFGMHA@?$AAk?$AAn?$AA?9?$AAi?$AAn@ 100a7428 libucrt:lcidtoname_downlevel.obj - 0002:00012434 ??_C@_1O@IBBJHCH@?$AAk?$AAo?$AAk?$AA?9?$AAi?$AAn@ 100a7434 libucrt:lcidtoname_downlevel.obj - 0002:00012444 ??_C@_1M@DMHAEOGC@?$AAk?$AAo?$AA?9?$AAk?$AAr@ 100a7444 libucrt:lcidtoname_downlevel.obj - 0002:00012450 ??_C@_1M@HBAHBIGA@?$AAk?$AAy?$AA?9?$AAk?$AAg@ 100a7450 libucrt:lcidtoname_downlevel.obj - 0002:0001245c ??_C@_1M@KPMILCJG@?$AAl?$AAt?$AA?9?$AAl?$AAt@ 100a745c libucrt:lcidtoname_downlevel.obj - 0002:00012468 ??_C@_1M@BDEKKCA@?$AAl?$AAv?$AA?9?$AAl?$AAv@ 100a7468 libucrt:lcidtoname_downlevel.obj - 0002:00012474 ??_C@_1M@ELCKCCJJ@?$AAm?$AAi?$AA?9?$AAn?$AAz@ 100a7474 libucrt:lcidtoname_downlevel.obj - 0002:00012480 ??_C@_1M@CBOOLAPA@?$AAm?$AAk?$AA?9?$AAm?$AAk@ 100a7480 libucrt:lcidtoname_downlevel.obj - 0002:0001248c ??_C@_1M@GPHNBJKN@?$AAm?$AAl?$AA?9?$AAi?$AAn@ 100a748c libucrt:lcidtoname_downlevel.obj - 0002:00012498 ??_C@_1M@PABJILIG@?$AAm?$AAn?$AA?9?$AAm?$AAn@ 100a7498 libucrt:lcidtoname_downlevel.obj - 0002:000124a4 ??_C@_1M@FGBKKIPG@?$AAm?$AAr?$AA?9?$AAi?$AAn@ 100a74a4 libucrt:lcidtoname_downlevel.obj - 0002:000124b0 ??_C@_1M@NDBPDDAL@?$AAm?$AAs?$AA?9?$AAb?$AAn@ 100a74b0 libucrt:lcidtoname_downlevel.obj - 0002:000124bc ??_C@_1M@OPIHOOPI@?$AAm?$AAs?$AA?9?$AAm?$AAy@ 100a74bc libucrt:lcidtoname_downlevel.obj - 0002:000124c8 ??_C@_1M@PPDBCNFM@?$AAm?$AAt?$AA?9?$AAm?$AAt@ 100a74c8 libucrt:lcidtoname_downlevel.obj - 0002:000124d4 ??_C@_1M@KDJDKMDD@?$AAn?$AAb?$AA?9?$AAn?$AAo@ 100a74d4 libucrt:lcidtoname_downlevel.obj - 0002:000124e0 ??_C@_1M@KFCFLMJP@?$AAn?$AAl?$AA?9?$AAb?$AAe@ 100a74e0 libucrt:lcidtoname_downlevel.obj - 0002:000124ec ??_C@_1M@KPOPDDGO@?$AAn?$AAl?$AA?9?$AAn?$AAl@ 100a74ec libucrt:lcidtoname_downlevel.obj - 0002:000124f8 ??_C@_1M@LJKPEMLN@?$AAn?$AAn?$AA?9?$AAn?$AAo@ 100a74f8 libucrt:lcidtoname_downlevel.obj - 0002:00012504 ??_C@_1M@BDGHHBFL@?$AAn?$AAs?$AA?9?$AAz?$AAa@ 100a7504 libucrt:lcidtoname_downlevel.obj - 0002:00012510 ??_C@_1M@IDEHOAP@?$AAp?$AAa?$AA?9?$AAi?$AAn@ 100a7510 libucrt:lcidtoname_downlevel.obj - 0002:0001251c ??_C@_1M@HDBKGOGH@?$AAp?$AAl?$AA?9?$AAp?$AAl@ 100a751c libucrt:lcidtoname_downlevel.obj - 0002:00012528 ??_C@_1M@LJLLCMEH@?$AAp?$AAt?$AA?9?$AAb?$AAr@ 100a7528 libucrt:lcidtoname_downlevel.obj - 0002:00012534 ??_C@_1M@NCMONAAL@?$AAp?$AAt?$AA?9?$AAp?$AAt@ 100a7534 libucrt:lcidtoname_downlevel.obj - 0002:00012540 ??_C@_1O@EAKMAJDN@?$AAq?$AAu?$AAz?$AA?9?$AAb?$AAo@ 100a7540 libucrt:lcidtoname_downlevel.obj - 0002:00012550 ??_C@_1O@BHHPIGDN@?$AAq?$AAu?$AAz?$AA?9?$AAe?$AAc@ 100a7550 libucrt:lcidtoname_downlevel.obj - 0002:00012560 ??_C@_1O@GBAPEKMJ@?$AAq?$AAu?$AAz?$AA?9?$AAp?$AAe@ 100a7560 libucrt:lcidtoname_downlevel.obj - 0002:00012570 ??_C@_1M@CLGLEFBO@?$AAr?$AAo?$AA?9?$AAr?$AAo@ 100a7570 libucrt:lcidtoname_downlevel.obj - 0002:0001257c ??_C@_1M@CEEDODME@?$AAr?$AAu?$AA?9?$AAr?$AAu@ 100a757c libucrt:lcidtoname_downlevel.obj - 0002:00012588 ??_C@_1M@HPKKKMPP@?$AAs?$AAa?$AA?9?$AAi?$AAn@ 100a7588 libucrt:lcidtoname_downlevel.obj - 0002:00012594 ??_C@_1M@BKMAIGOJ@?$AAs?$AAe?$AA?9?$AAf?$AAi@ 100a7594 libucrt:lcidtoname_downlevel.obj - 0002:000125a0 ??_C@_1M@NDPIFLFI@?$AAs?$AAe?$AA?9?$AAn?$AAo@ 100a75a0 libucrt:lcidtoname_downlevel.obj - 0002:000125ac ??_C@_1M@DANKKHJ@?$AAs?$AAe?$AA?9?$AAs?$AAe@ 100a75ac libucrt:lcidtoname_downlevel.obj - 0002:000125b8 ??_C@_1M@PNBLONPJ@?$AAs?$AAk?$AA?9?$AAs?$AAk@ 100a75b8 libucrt:lcidtoname_downlevel.obj - 0002:000125c4 ??_C@_1M@LFMODOAL@?$AAs?$AAl?$AA?9?$AAs?$AAi@ 100a75c4 libucrt:lcidtoname_downlevel.obj - 0002:000125d0 ??_C@_1O@DFKOMPG@?$AAs?$AAm?$AAa?$AA?9?$AAn?$AAo@ 100a75d0 libucrt:lcidtoname_downlevel.obj - 0002:000125e0 ??_C@_1O@NDKPBNNH@?$AAs?$AAm?$AAa?$AA?9?$AAs?$AAe@ 100a75e0 libucrt:lcidtoname_downlevel.obj - 0002:000125f0 ??_C@_1O@PLLKBHAB@?$AAs?$AAm?$AAj?$AA?9?$AAn?$AAo@ 100a75f0 libucrt:lcidtoname_downlevel.obj - 0002:00012600 ??_C@_1O@CLEPOGCA@?$AAs?$AAm?$AAj?$AA?9?$AAs?$AAe@ 100a7600 libucrt:lcidtoname_downlevel.obj - 0002:00012610 ??_C@_1O@DLGJGKMK@?$AAs?$AAm?$AAn?$AA?9?$AAf?$AAi@ 100a7610 libucrt:lcidtoname_downlevel.obj - 0002:00012620 ??_C@_1O@OJDJGAJC@?$AAs?$AAm?$AAs?$AA?9?$AAf?$AAi@ 100a7620 libucrt:lcidtoname_downlevel.obj - 0002:00012630 ??_C@_1M@BOFOGHPB@?$AAs?$AAq?$AA?9?$AAa?$AAl@ 100a7630 libucrt:lcidtoname_downlevel.obj - 0002:0001263c ??_C@_1BG@LJBBIPGB@?$AAs?$AAr?$AA?9?$AAb?$AAa?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100a763c libucrt:lcidtoname_downlevel.obj - 0002:00012654 ??_C@_1BG@JLBENFOE@?$AAs?$AAr?$AA?9?$AAb?$AAa?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100a7654 libucrt:lcidtoname_downlevel.obj - 0002:0001266c ??_C@_1BG@KODPNHE@?$AAs?$AAr?$AA?9?$AAs?$AAp?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100a766c libucrt:lcidtoname_downlevel.obj - 0002:00012684 ??_C@_1BG@CIOGKHPB@?$AAs?$AAr?$AA?9?$AAs?$AAp?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100a7684 libucrt:lcidtoname_downlevel.obj - 0002:0001269c ??_C@_1M@NGFJLMAC@?$AAs?$AAv?$AA?9?$AAf?$AAi@ 100a769c libucrt:lcidtoname_downlevel.obj - 0002:000126a8 ??_C@_1M@MPJEJAJC@?$AAs?$AAv?$AA?9?$AAs?$AAe@ 100a76a8 libucrt:lcidtoname_downlevel.obj - 0002:000126b4 ??_C@_1M@MPNDHLFK@?$AAs?$AAw?$AA?9?$AAk?$AAe@ 100a76b4 libucrt:lcidtoname_downlevel.obj - 0002:000126c0 ??_C@_1O@KOHBJJI@?$AAs?$AAy?$AAr?$AA?9?$AAs?$AAy@ 100a76c0 libucrt:lcidtoname_downlevel.obj - 0002:000126d0 ??_C@_1M@LDCEFHA@?$AAt?$AAa?$AA?9?$AAi?$AAn@ 100a76d0 libucrt:lcidtoname_downlevel.obj - 0002:000126dc ??_C@_1M@CNJOFAK@?$AAt?$AAe?$AA?9?$AAi?$AAn@ 100a76dc libucrt:lcidtoname_downlevel.obj - 0002:000126e8 ??_C@_1M@GNAECACD@?$AAt?$AAh?$AA?9?$AAt?$AAh@ 100a76e8 libucrt:lcidtoname_downlevel.obj - 0002:000126f4 ??_C@_1M@CHBIHOJO@?$AAt?$AAn?$AA?9?$AAz?$AAa@ 100a76f4 libucrt:lcidtoname_downlevel.obj - 0002:00012700 ??_C@_1M@GCCMIGPJ@?$AAt?$AAr?$AA?9?$AAt?$AAr@ 100a7700 libucrt:lcidtoname_downlevel.obj - 0002:0001270c ??_C@_1M@CELMCNBK@?$AAt?$AAt?$AA?9?$AAr?$AAu@ 100a770c libucrt:lcidtoname_downlevel.obj - 0002:00012718 ??_C@_1M@KLMCELGA@?$AAu?$AAk?$AA?9?$AAu?$AAa@ 100a7718 libucrt:lcidtoname_downlevel.obj - 0002:00012724 ??_C@_1M@EPAJJAJF@?$AAu?$AAr?$AA?9?$AAp?$AAk@ 100a7724 libucrt:lcidtoname_downlevel.obj - 0002:00012730 ??_C@_1BG@GEGPMCDJ@?$AAu?$AAz?$AA?9?$AAu?$AAz?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100a7730 libucrt:lcidtoname_downlevel.obj - 0002:00012748 ??_C@_1BG@EGGKJILM@?$AAu?$AAz?$AA?9?$AAu?$AAz?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100a7748 libucrt:lcidtoname_downlevel.obj - 0002:00012760 ??_C@_1M@GFOCLFF@?$AAv?$AAi?$AA?9?$AAv?$AAn@ 100a7760 libucrt:lcidtoname_downlevel.obj - 0002:0001276c ??_C@_1M@CPAMEDFI@?$AAx?$AAh?$AA?9?$AAz?$AAa@ 100a776c libucrt:lcidtoname_downlevel.obj - 0002:00012778 ??_C@_1O@EBKIFIGN@?$AAz?$AAh?$AA?9?$AAc?$AAh?$AAs@ 100a7778 libucrt:lcidtoname_downlevel.obj - 0002:00012788 ??_C@_1O@NMHPGANE@?$AAz?$AAh?$AA?9?$AAc?$AAh?$AAt@ 100a7788 libucrt:lcidtoname_downlevel.obj - 0002:00012798 ??_C@_1M@LPINJOMC@?$AAz?$AAh?$AA?9?$AAc?$AAn@ 100a7798 libucrt:lcidtoname_downlevel.obj - 0002:000127a4 ??_C@_1M@OCJEJODD@?$AAz?$AAh?$AA?9?$AAh?$AAk@ 100a77a4 libucrt:lcidtoname_downlevel.obj - 0002:000127b0 ??_C@_1M@DNDLJINH@?$AAz?$AAh?$AA?9?$AAm?$AAo@ 100a77b0 libucrt:lcidtoname_downlevel.obj - 0002:000127bc ??_C@_1M@MBFDNDND@?$AAz?$AAh?$AA?9?$AAs?$AAg@ 100a77bc libucrt:lcidtoname_downlevel.obj - 0002:000127c8 ??_C@_1M@IMEPLEPE@?$AAz?$AAh?$AA?9?$AAt?$AAw@ 100a77c8 libucrt:lcidtoname_downlevel.obj - 0002:000127d4 ??_C@_1M@BBGHNHJP@?$AAz?$AAu?$AA?9?$AAz?$AAa@ 100a77d4 libucrt:lcidtoname_downlevel.obj - 0002:000127e0 ??_C@_01GBGANLPD@0@ 100a77e0 libucrt:cfout.obj - 0002:000127e4 ??_C@_05DNEBIAHO@1?$CDINF@ 100a77e4 libucrt:cfout.obj - 0002:000127ec ??_C@_06IMKFLFPG@1?$CDQNAN@ 100a77ec libucrt:cfout.obj - 0002:000127f4 ??_C@_06PGGFOGJG@1?$CDSNAN@ 100a77f4 libucrt:cfout.obj - 0002:000127fc ??_C@_05PHHOCPM@1?$CDIND@ 100a77fc libucrt:cfout.obj - 0002:00012804 __days 100a7804 libucrt:days.obj - 0002:00012838 __lpdays 100a7838 libucrt:days.obj - 0002:00012878 __DEFAULT_CW_in_mem 100a7878 libucrt:common.obj - 0002:0001287a __pi_by_2_to_61 100a787a libucrt:common.obj - 0002:000128c8 ??_C@_1BA@BALFACEM@?$AAC?$AAO?$AAN?$AAO?$AAU?$AAT?$AA$@ 100a78c8 libucrt:initcon.obj - 0002:000128f0 __indefinite 100a78f0 libucrt:87disp.obj - 0002:000128fa __piby2 100a78fa libucrt:87disp.obj - 0002:00012904 __piby4 100a7904 libucrt:87disp.obj - 0002:00012a30 __infinity 100a7a30 libucrt:87tran.obj - 0002:00012a3a __minfinity 100a7a3a libucrt:87tran.obj - 0002:00012a44 __logemax 100a7a44 libucrt:87tran.obj - 0002:00012a6a __OP_EXPjmptab 100a7a6a libucrt:87tran.obj - 0002:00012a90 ___acrt_log10_table_t 100a7a90 libucrt:log10_tables.obj - 0002:00012ea0 ___acrt_log10_table_cb 100a7ea0 libucrt:log10_tables.obj - 0002:000132b0 __real@3fe0000000000000 100a82b0 libucrt:powhlp.obj - 0002:000132bc ??_7bad_function_call@std@@6B@ 100a82bc libcpmt:xthrow.obj - 0002:000132c4 ??_C@_0BC@DPJNKNAF@bad?5function?5call@ 100a82c4 libcpmt:xthrow.obj - 0002:000132dc ??_7logic_error@std@@6B@ 100a82dc libcpmt:xthrow.obj - 0002:000132e8 ??_7invalid_argument@std@@6B@ 100a82e8 libcpmt:xthrow.obj - 0002:000132f4 ??_7length_error@std@@6B@ 100a82f4 libcpmt:xthrow.obj - 0002:00013300 ??_7out_of_range@std@@6B@ 100a8300 libcpmt:xthrow.obj - 0002:00013820 ??_C@_07IPNMCAN@success@ 100a8820 libcpmt:syserror.obj - 0002:00013828 ??_C@_0BN@LKKBCCDB@address?5family?5not?5supported@ 100a8828 libcpmt:syserror.obj - 0002:00013848 ??_C@_0P@LDMLAFHI@address?5in?5use@ 100a8848 libcpmt:syserror.obj - 0002:00013858 ??_C@_0BG@DHPCNBJB@address?5not?5available@ 100a8858 libcpmt:syserror.obj - 0002:00013870 ??_C@_0BC@DFIBIBIL@already?5connected@ 100a8870 libcpmt:syserror.obj - 0002:00013884 ??_C@_0BH@CAKOHOMI@argument?5list?5too?5long@ 100a8884 libcpmt:syserror.obj - 0002:0001389c ??_C@_0BH@CGIMPKIM@argument?5out?5of?5domain@ 100a889c libcpmt:syserror.obj - 0002:000138b4 ??_C@_0M@KGHGGJGL@bad?5address@ 100a88b4 libcpmt:syserror.obj - 0002:000138c0 ??_C@_0BE@MPJPGCEO@bad?5file?5descriptor@ 100a88c0 libcpmt:syserror.obj - 0002:000138d4 ??_C@_0M@PMMIEFCP@bad?5message@ 100a88d4 libcpmt:syserror.obj - 0002:000138e0 ??_C@_0M@KPHOFDBE@broken?5pipe@ 100a88e0 libcpmt:syserror.obj - 0002:000138ec ??_C@_0BD@MGNDDEGM@connection?5aborted@ 100a88ec libcpmt:syserror.obj - 0002:00013900 ??_C@_0BP@KAIHPOGN@connection?5already?5in?5progress@ 100a8900 libcpmt:syserror.obj - 0002:00013920 ??_C@_0BD@PJLIIJEL@connection?5refused@ 100a8920 libcpmt:syserror.obj - 0002:00013934 ??_C@_0BB@IECNJNOI@connection?5reset@ 100a8934 libcpmt:syserror.obj - 0002:00013948 ??_C@_0BC@PPHBOELF@cross?5device?5link@ 100a8948 libcpmt:syserror.obj - 0002:0001395c ??_C@_0BN@KDMIFEIP@destination?5address?5required@ 100a895c libcpmt:syserror.obj - 0002:0001397c ??_C@_0BI@NGCEHDD@device?5or?5resource?5busy@ 100a897c libcpmt:syserror.obj - 0002:00013994 ??_C@_0BE@JIDOCPHM@directory?5not?5empty@ 100a8994 libcpmt:syserror.obj - 0002:000139a8 ??_C@_0BI@BNCLIGPB@executable?5format?5error@ 100a89a8 libcpmt:syserror.obj - 0002:000139c0 ??_C@_0M@MIDIAGJP@file?5exists@ 100a89c0 libcpmt:syserror.obj - 0002:000139cc ??_C@_0P@DNAJLBJK@file?5too?5large@ 100a89cc libcpmt:syserror.obj - 0002:000139dc ??_C@_0BC@EJHOMAAK@filename?5too?5long@ 100a89dc libcpmt:syserror.obj - 0002:000139f0 ??_C@_0BH@KEFGLDAF@function?5not?5supported@ 100a89f0 libcpmt:syserror.obj - 0002:00013a08 ??_C@_0BB@DHFDFGDM@host?5unreachable@ 100a8a08 libcpmt:syserror.obj - 0002:00013a1c ??_C@_0BD@JPHBMONG@identifier?5removed@ 100a8a1c libcpmt:syserror.obj - 0002:00013a30 ??_C@_0BG@CDNPAGJK@illegal?5byte?5sequence@ 100a8a30 libcpmt:syserror.obj - 0002:00013a48 ??_C@_0CD@BNPLBMNA@inappropriate?5io?5control?5operat@ 100a8a48 libcpmt:syserror.obj - 0002:00013a6c ??_C@_0M@EGEKIIMP@interrupted@ 100a8a6c libcpmt:syserror.obj - 0002:00013a78 ??_C@_0BB@FCMFBGOM@invalid?5argument@ 100a8a78 libcpmt:syserror.obj - 0002:00013a8c ??_C@_0N@OHAFKDEK@invalid?5seek@ 100a8a8c libcpmt:syserror.obj - 0002:00013a9c ??_C@_08GLNPIFBN@io?5error@ 100a8a9c libcpmt:syserror.obj - 0002:00013aa8 ??_C@_0P@FLLDBIDK@is?5a?5directory@ 100a8aa8 libcpmt:syserror.obj - 0002:00013ab8 ??_C@_0N@IFLPBIOP@message?5size@ 100a8ab8 libcpmt:syserror.obj - 0002:00013ac8 ??_C@_0N@KIIEAAIO@network?5down@ 100a8ac8 libcpmt:syserror.obj - 0002:00013ad8 ??_C@_0O@FNPDBHEE@network?5reset@ 100a8ad8 libcpmt:syserror.obj - 0002:00013ae8 ??_C@_0BE@IFNCKGE@network?5unreachable@ 100a8ae8 libcpmt:syserror.obj - 0002:00013afc ??_C@_0BA@PFFCAOFK@no?5buffer?5space@ 100a8afc libcpmt:syserror.obj - 0002:00013b0c ??_C@_0BB@IEPBLJHK@no?5child?5process@ 100a8b0c libcpmt:syserror.obj - 0002:00013b20 ??_C@_07PLECNNKG@no?5link@ 100a8b20 libcpmt:syserror.obj - 0002:00013b28 ??_C@_0BC@NJECKMKE@no?5lock?5available@ 100a8b28 libcpmt:syserror.obj - 0002:00013b3c ??_C@_0BF@PBGGPKKE@no?5message?5available@ 100a8b3c libcpmt:syserror.obj - 0002:00013b54 ??_C@_0L@EDOLMPAK@no?5message@ 100a8b54 libcpmt:syserror.obj - 0002:00013b60 ??_C@_0BD@EAMBFIDF@no?5protocol?5option@ 100a8b60 libcpmt:syserror.obj - 0002:00013b74 ??_C@_0BD@IJDJKDEA@no?5space?5on?5device@ 100a8b74 libcpmt:syserror.obj - 0002:00013b88 ??_C@_0BE@MKFDAFMP@no?5stream?5resources@ 100a8b88 libcpmt:syserror.obj - 0002:00013b9c ??_C@_0BK@IMCPHCBI@no?5such?5device?5or?5address@ 100a8b9c libcpmt:syserror.obj - 0002:00013bb8 ??_C@_0P@FDINDDOK@no?5such?5device@ 100a8bb8 libcpmt:syserror.obj - 0002:00013bc8 ??_C@_0BK@NDOCBPGE@no?5such?5file?5or?5directory@ 100a8bc8 libcpmt:syserror.obj - 0002:00013be4 ??_C@_0BA@ENLPPKBN@no?5such?5process@ 100a8be4 libcpmt:syserror.obj - 0002:00013bf4 ??_C@_0BA@DOCPFFJG@not?5a?5directory@ 100a8bf4 libcpmt:syserror.obj - 0002:00013c04 ??_C@_0N@POEIPGGF@not?5a?5socket@ 100a8c04 libcpmt:syserror.obj - 0002:00013c14 ??_C@_0N@LGAPMMPI@not?5a?5stream@ 100a8c14 libcpmt:syserror.obj - 0002:00013c24 ??_C@_0O@GLMIBBEG@not?5connected@ 100a8c24 libcpmt:syserror.obj - 0002:00013c34 ??_C@_0BC@ENOOLCNF@not?5enough?5memory@ 100a8c34 libcpmt:syserror.obj - 0002:00013c48 ??_C@_0O@NHEDABJP@not?5supported@ 100a8c48 libcpmt:syserror.obj - 0002:00013c58 ??_C@_0BD@MOLBPMEA@operation?5canceled@ 100a8c58 libcpmt:syserror.obj - 0002:00013c6c ??_C@_0BG@KDKHOPCO@operation?5in?5progress@ 100a8c6c libcpmt:syserror.obj - 0002:00013c84 ??_C@_0BI@OHIEJAAB@operation?5not?5permitted@ 100a8c84 libcpmt:syserror.obj - 0002:00013c9c ??_C@_0BI@LNEGIFLN@operation?5not?5supported@ 100a8c9c libcpmt:syserror.obj - 0002:00013cb4 ??_C@_0BG@OEMDKMEE@operation?5would?5block@ 100a8cb4 libcpmt:syserror.obj - 0002:00013ccc ??_C@_0L@BLPOFLNJ@owner?5dead@ 100a8ccc libcpmt:syserror.obj - 0002:00013cd8 ??_C@_0BC@CIJDGCDI@permission?5denied@ 100a8cd8 libcpmt:syserror.obj - 0002:00013cec ??_C@_0P@FNPOCJBE@protocol?5error@ 100a8cec libcpmt:syserror.obj - 0002:00013cfc ??_C@_0BH@JPPPLHJB@protocol?5not?5supported@ 100a8cfc libcpmt:syserror.obj - 0002:00013d14 ??_C@_0BG@EICBIHDP@read?5only?5file?5system@ 100a8d14 libcpmt:syserror.obj - 0002:00013d2c ??_C@_0BO@BJBOMOEJ@resource?5deadlock?5would?5occur@ 100a8d2c libcpmt:syserror.obj - 0002:00013d4c ??_C@_0BP@LKNGHENJ@resource?5unavailable?5try?5again@ 100a8d4c libcpmt:syserror.obj - 0002:00013d6c ??_C@_0BE@GOIPJJHG@result?5out?5of?5range@ 100a8d6c libcpmt:syserror.obj - 0002:00013d80 ??_C@_0BG@MPLKFPAE@state?5not?5recoverable@ 100a8d80 libcpmt:syserror.obj - 0002:00013d98 ??_C@_0P@DIIFGFCG@stream?5timeout@ 100a8d98 libcpmt:syserror.obj - 0002:00013da8 ??_C@_0P@IPFDMIFL@text?5file?5busy@ 100a8da8 libcpmt:syserror.obj - 0002:00013db8 ??_C@_09KJPPMAOI@timed?5out@ 100a8db8 libcpmt:syserror.obj - 0002:00013dc4 ??_C@_0BO@HACHBEKI@too?5many?5files?5open?5in?5system@ 100a8dc4 libcpmt:syserror.obj - 0002:00013de4 ??_C@_0BE@GHAFMPAH@too?5many?5files?5open@ 100a8de4 libcpmt:syserror.obj - 0002:00013df8 ??_C@_0P@HCOMKFCC@too?5many?5links@ 100a8df8 libcpmt:syserror.obj - 0002:00013e08 ??_C@_0BO@EFGOJEF@too?5many?5symbolic?5link?5levels@ 100a8e08 libcpmt:syserror.obj - 0002:00013e28 ??_C@_0BA@KGKGOOJA@value?5too?5large@ 100a8e28 libcpmt:syserror.obj - 0002:00013e38 ??_C@_0BE@MIEJDDNH@wrong?5protocol?5type@ 100a8e38 libcpmt:syserror.obj - 0002:00013e4c ??_C@_0O@BFJCFAAK@unknown?5error@ 100a8e4c libcpmt:syserror.obj - 0002:00013e60 ??_7_Locimp@locale@std@@6B@ 100a8e60 libcpmt:locale0.obj - 0002:00013e6c ??_C@_01GFHCPBMG@C@ 100a8e6c libcpmt:locale0.obj - 0002:00013e70 ?_BADOFF@std@@3_JB 100a8e70 libcpmt:ios.obj - 0002:00013ecc ??_C@_01KDCPPGHE@r@ 100a8ecc libcpmt:fiopen.obj - 0002:00013ed0 ??_C@_01NOFIACDB@w@ 100a8ed0 libcpmt:fiopen.obj - 0002:00013ed4 ??_C@_01MCMALHOG@a@ 100a8ed4 libcpmt:fiopen.obj - 0002:00013ed8 ??_C@_02JDPG@rb@ 100a8ed8 libcpmt:fiopen.obj - 0002:00013edc ??_C@_02GMLFBBN@wb@ 100a8edc libcpmt:fiopen.obj - 0002:00013ee0 ??_C@_02BOGAIONP@ab@ 100a8ee0 libcpmt:fiopen.obj - 0002:00013ee4 ??_C@_02CBLLGHLK@r?$CL@ 100a8ee4 libcpmt:fiopen.obj - 0002:00013ee8 ??_C@_02CHHAKFFB@w?$CL@ 100a8ee8 libcpmt:fiopen.obj - 0002:00013eec ??_C@_02DPNLHKJD@a?$CL@ 100a8eec libcpmt:fiopen.obj - 0002:00013ef0 ??_C@_03HMFOOINA@r?$CLb@ 100a8ef0 libcpmt:fiopen.obj - 0002:00013ef4 ??_C@_03ELIABIOC@w?$CLb@ 100a8ef4 libcpmt:fiopen.obj - 0002:00013ef8 ??_C@_03DOPCBAKB@a?$CLb@ 100a8ef8 libcpmt:fiopen.obj - 0002:00013efc ??_C@_02LGOGKLMG@wx@ 100a8efc libcpmt:fiopen.obj - 0002:00013f00 ??_C@_03PLKNOCDJ@w?$CLx@ 100a8f00 libcpmt:fiopen.obj - 0002:00013f04 ??_C@_03IEOGFEHG@wbx@ 100a8f04 libcpmt:fiopen.obj - 0002:00013f08 ??_C@_04KJKJPALC@w?$CLbx@ 100a8f08 libcpmt:fiopen.obj - 0002:00014010 ??_C@_1BK@MGMFAEKH@?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AA3?$AA2?$AA?4?$AAd?$AAl?$AAl@ 100a9010 libcpmt:winapisupp.obj - 0002:0001402c ??_C@_0BE@JOGNEJCI@GetCurrentPackageId@ 100a902c libcpmt:winapisupp.obj - 0002:000140e4 ??_7type_info@@6B@ 100a90e4 LIBCMT:std_type_info_static.obj - 0002:00014120 __pDefaultRawDllMain 100a9120 LIBCMT:dll_dllmain.obj - 0002:00014120 __pRawDllMain 100a9120 LIBCMT:dll_dllmain.obj - 0002:00014140 __xmm@00000000000000000000000000000000 100a9140 libvcruntime:wcschr.obj - 0002:000141d0 ?ccs@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100a91d0 libucrt:openfile.obj - 0002:000141d4 ?utf8_encoding@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100a91d4 libucrt:openfile.obj - 0002:000141dc ?utf16_encoding@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100a91dc libucrt:openfile.obj - 0002:000141e4 ?unicode_encoding@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100a91e4 libucrt:openfile.obj - 0002:000141eb __Asan_string_should_annotate 100a91eb libcpmt:asan_noop.obj - 0002:000141eb __Asan_string_should_annotate_default 100a91eb libcpmt:asan_noop.obj - 0002:000141ec __Asan_vector_should_annotate_default 100a91ec libcpmt:asan_noop.obj - 0002:000141f0 ??_C@_04NOJCDH@?$CF02x?$AA@ 100a91f0 udis86:udis86.obj - 0002:000141f8 ??_C@_04GOMEICPF@far?5?$AA@ 100a91f8 udis86:syn-intel.obj - 0002:00014200 ??_C@_05MAAGGIBB@byte?5?$AA@ 100a9200 udis86:syn-intel.obj - 0002:00014208 ??_C@_05FIBEKMPA@word?5?$AA@ 100a9208 udis86:syn-intel.obj - 0002:00014210 ??_C@_06LEDLKNL@dword?5?$AA@ 100a9210 udis86:syn-intel.obj - 0002:00014218 ??_C@_06DOKFAJLC@qword?5?$AA@ 100a9218 udis86:syn-intel.obj - 0002:00014220 ??_C@_06GMJNCGBF@tword?5?$AA@ 100a9220 udis86:syn-intel.obj - 0002:00014228 ??_C@_06JEEOOCB@oword?5?$AA@ 100a9228 udis86:syn-intel.obj - 0002:00014230 ??_C@_06NEKEHNF@yword?5?$AA@ 100a9230 udis86:syn-intel.obj - 0002:00014238 ??_C@_02DKCKIIND@?$CFs?$AA@ 100a9238 udis86:syn-intel.obj - 0002:0001423c ??_C@_01OHGJGJJP@?$FL?$AA@ 100a923c udis86:syn-intel.obj - 0002:00014240 ??_C@_03DKEJHHJP@?$CFs?3?$AA@ 100a9240 udis86:syn-intel.obj - 0002:00014244 ??_C@_01MIFGBAGJ@?$CL?$AA@ 100a9244 udis86:syn-intel.obj - 0002:00014246 ??_C@_00CNPNBAHC@?$AA@ 100a9246 udis86:syn-intel.obj - 0002:00014248 ??_C@_04HDOCAJNK@?$CFs?$CFs?$AA@ 100a9248 udis86:syn-intel.obj - 0002:00014250 ??_C@_03COCDEFBB@?$CK?$CFd?$AA@ 100a9250 udis86:syn-intel.obj - 0002:00014254 ??_C@_01LBDDMOBJ@?$FN?$AA@ 100a9254 udis86:syn-intel.obj - 0002:00014258 ??_C@_0P@CGOKHBFO@word?50x?$CFx?30x?$CFx?$AA@ 100a9258 udis86:syn-intel.obj - 0002:00014268 ??_C@_0BA@PAPCPIOM@dword?50x?$CFx?30x?$CFx?$AA@ 100a9268 udis86:syn-intel.obj - 0002:00014278 ??_C@_02DPKJAMEF@?$CFd?$AA@ 100a9278 udis86:syn-intel.obj - 0002:0001427c ??_C@_04HCEKKKGN@o32?5?$AA@ 100a927c udis86:syn-intel.obj - 0002:00014284 ??_C@_04NPEKMKDK@o16?5?$AA@ 100a9284 udis86:syn-intel.obj - 0002:0001428c ??_C@_04MNHKBEAM@a32?5?$AA@ 100a928c udis86:syn-intel.obj - 0002:00014294 ??_C@_04GAHKHEFL@a16?5?$AA@ 100a9294 udis86:syn-intel.obj - 0002:0001429c ??_C@_03IKGEINEE@?$CFs?5?$AA@ 100a929c udis86:syn-intel.obj - 0002:000142a0 ??_C@_05NCPMCJGP@lock?5?$AA@ 100a92a0 udis86:syn-intel.obj - 0002:000142a8 ??_C@_04HHECPAIO@rep?5?$AA@ 100a92a8 udis86:syn-intel.obj - 0002:000142b0 ??_C@_05OJKCIHFO@repe?5?$AA@ 100a92b0 udis86:syn-intel.obj - 0002:000142b8 ??_C@_06LIOODCPM@repne?5?$AA@ 100a92b8 udis86:syn-intel.obj - 0002:000142c0 ??_C@_01CLKCMJKC@?5?$AA@ 100a92c0 udis86:syn-intel.obj - 0002:000142c4 ??_C@_02KEGNLNML@?0?5?$AA@ 100a92c4 udis86:syn-intel.obj - 0002:000142c8 _ud_mnemonics_str 100a92c8 udis86:itab.obj - 0002:000150f8 ??_C@_06KMJLBAPP@opctbl?$AA@ 100aa0f8 udis86:itab.obj - 0002:00015100 ??_C@_02ODPMDCNK@?1m?$AA@ 100aa100 udis86:itab.obj - 0002:00015104 ??_C@_04NPNKCMIL@?1reg?$AA@ 100aa104 udis86:itab.obj - 0002:0001510c ??_C@_04PBBKLNFH@?1mod?$AA@ 100aa10c udis86:itab.obj - 0002:00015114 ??_C@_03KBMMDGFP@?1rm?$AA@ 100aa114 udis86:itab.obj - 0002:00015118 ??_C@_07KBMOBFIF@?1vendor?$AA@ 100aa118 udis86:itab.obj - 0002:00015120 ??_C@_06ENDGCOGG@?13dnow?$AA@ 100aa120 udis86:itab.obj - 0002:00015128 ??_C@_04ENPLPGKO@?1sse?$AA@ 100aa128 udis86:itab.obj - 0002:00015130 ??_C@_02NBMKFAFI@?1o?$AA@ 100aa130 udis86:itab.obj - 0002:00015134 ??_C@_04JNOCLFEC@?1vex?$AA@ 100aa134 udis86:itab.obj - 0002:0001513c ??_C@_05FBAHOGKC@?1vexl?$AA@ 100aa13c udis86:itab.obj - 0002:00015144 ??_C@_05PIDBCNDI@?1vexw?$AA@ 100aa144 udis86:itab.obj - 0002:0001514c ??_C@_04GOLICMFI@?1x87?$AA@ 100aa14c udis86:itab.obj - 0002:00015154 ??_C@_02EPEJHNNG@?1a?$AA@ 100aa154 udis86:itab.obj - 0002:00015158 ??_C@_03GINCELHE@aaa?$AA@ 100aa158 udis86:itab.obj - 0002:0001515c ??_C@_03BFKFLPDB@aad?$AA@ 100aa15c udis86:itab.obj - 0002:00015160 ??_C@_03MEGHAEHI@aam?$AA@ 100aa160 udis86:itab.obj - 0002:00015164 ??_C@_03BACGDLKH@aas?$AA@ 100aa164 udis86:itab.obj - 0002:00015168 ??_C@_03FMCPOLBN@adc?$AA@ 100aa168 udis86:itab.obj - 0002:0001516c ??_C@_03BDGOHNNK@add?$AA@ 100aa16c udis86:itab.obj - 0002:00015170 ??_C@_05DPFIJ@addpd?$AA@ 100aa170 udis86:itab.obj - 0002:00015178 ??_C@_05FIAHBBP@addps?$AA@ 100aa178 udis86:itab.obj - 0002:00015180 ??_C@_05CEFELNA@addsd?$AA@ 100aa180 udis86:itab.obj - 0002:00015188 ??_C@_05HMGMPEG@addss?$AA@ 100aa188 udis86:itab.obj - 0002:00015190 ??_C@_08BHNFBKK@addsubpd?$AA@ 100aa190 udis86:itab.obj - 0002:0001519c ??_C@_08EPONFDM@addsubps?$AA@ 100aa19c udis86:itab.obj - 0002:000151a8 ??_C@_06BNJBDCNN@aesdec?$AA@ 100aa1a8 udis86:itab.obj - 0002:000151b0 ??_C@_0L@DKDBOHOJ@aesdeclast?$AA@ 100aa1b0 udis86:itab.obj - 0002:000151bc ??_C@_06KJHILKFJ@aesenc?$AA@ 100aa1bc udis86:itab.obj - 0002:000151c4 ??_C@_0L@PEJMLDIN@aesenclast?$AA@ 100aa1c4 udis86:itab.obj - 0002:000151d0 ??_C@_06OBOILLLI@aesimc?$AA@ 100aa1d0 udis86:itab.obj - 0002:000151d8 ??_C@_0BA@BKBPMOOB@aeskeygenassist?$AA@ 100aa1d8 udis86:itab.obj - 0002:000151e8 ??_C@_03BOPJPIAM@and?$AA@ 100aa1e8 udis86:itab.obj - 0002:000151ec ??_C@_06JPIHJOLE@andnpd?$AA@ 100aa1ec udis86:itab.obj - 0002:000151f4 ??_C@_06JKAEBKCC@andnps?$AA@ 100aa1f4 udis86:itab.obj - 0002:000151fc ??_C@_05EKLDONCI@andpd?$AA@ 100aa1fc udis86:itab.obj - 0002:00015204 ??_C@_05EPDAGJLO@andps?$AA@ 100aa204 udis86:itab.obj - 0002:0001520c ??_C@_04MBAAHCPD@arpl?$AA@ 100aa20c udis86:itab.obj - 0002:00015214 ??_C@_07NLBKFAKD@blendpd?$AA@ 100aa214 udis86:itab.obj - 0002:0001521c ??_C@_07NOJJNEDF@blendps?$AA@ 100aa21c udis86:itab.obj - 0002:00015224 ??_C@_08HANBBCNB@blendvpd?$AA@ 100aa224 udis86:itab.obj - 0002:00015230 ??_C@_08HFFCJGEH@blendvps?$AA@ 100aa230 udis86:itab.obj - 0002:0001523c ??_C@_05PFKAILG@bound?$AA@ 100aa23c udis86:itab.obj - 0002:00015244 ??_C@_03CKIEAFED@bsf?$AA@ 100aa244 udis86:itab.obj - 0002:00015248 ??_C@_03ECKNCBG@bsr?$AA@ 100aa248 udis86:itab.obj - 0002:0001524c ??_C@_05CFLBCKNG@bswap?$AA@ 100aa24c udis86:itab.obj - 0002:00015254 ??_C@_02LOIFFB@bt?$AA@ 100aa254 udis86:itab.obj - 0002:00015258 ??_C@_03FCLMOHID@btc?$AA@ 100aa258 udis86:itab.obj - 0002:0001525c ??_C@_03BGFMEJD@btr?$AA@ 100aa25c udis86:itab.obj - 0002:00015260 ??_C@_03BIHOPFNC@bts?$AA@ 100aa260 udis86:itab.obj - 0002:00015264 ??_C@_04OMFAIDPG@call?$AA@ 100aa264 udis86:itab.obj - 0002:0001526c ??_C@_03NMAFIIHB@cbw?$AA@ 100aa26c udis86:itab.obj - 0002:00015270 ??_C@_03IONCFDEF@cdq?$AA@ 100aa270 udis86:itab.obj - 0002:00015274 ??_C@_04BOLCPIKO@cdqe?$AA@ 100aa274 udis86:itab.obj - 0002:0001527c ??_C@_03PIDFHCCO@clc?$AA@ 100aa27c udis86:itab.obj - 0002:00015280 ??_C@_03LHHEOEOJ@cld?$AA@ 100aa280 udis86:itab.obj - 0002:00015284 ??_C@_07KNLCLAFM@clflush?$AA@ 100aa284 udis86:itab.obj - 0002:0001528c ??_C@_04GPBIEAIP@clgi?$AA@ 100aa28c udis86:itab.obj - 0002:00015294 ??_C@_03CNKJKKE@cli?$AA@ 100aa294 udis86:itab.obj - 0002:00015298 ??_C@_04MBFFKHHN@clts?$AA@ 100aa298 udis86:itab.obj - 0002:000152a0 ??_C@_03PJPHBIBJ@cmc?$AA@ 100aa2a0 udis86:itab.obj - 0002:000152a4 ??_C@_05OOCADJAF@cmova?$AA@ 100aa2a4 udis86:itab.obj - 0002:000152ac ??_C@_06GIAOELFE@cmovae?$AA@ 100aa2ac udis86:itab.obj - 0002:000152b4 ??_C@_05MFANGKMG@cmovb?$AA@ 100aa2b4 udis86:itab.obj - 0002:000152bc ??_C@_06GKEIPFAN@cmovbe?$AA@ 100aa2bc udis86:itab.obj - 0002:000152c4 ??_C@_05LIHKJOID@cmovg?$AA@ 100aa2c4 udis86:itab.obj - 0002:000152cc ??_C@_06GMIDDHOG@cmovge?$AA@ 100aa2cc udis86:itab.obj - 0002:000152d4 ??_C@_05FLIOEHEI@cmovl?$AA@ 100aa2d4 udis86:itab.obj - 0002:000152dc ??_C@_06GANGNIAH@cmovle?$AA@ 100aa2dc udis86:itab.obj - 0002:000152e4 ??_C@_06JJLNOEOD@cmovno?$AA@ 100aa2e4 udis86:itab.obj - 0002:000152ec ??_C@_06FEOHOKHN@cmovnp?$AA@ 100aa2ec udis86:itab.obj - 0002:000152f4 ??_C@_06HPMKLJLO@cmovns?$AA@ 100aa2f4 udis86:itab.obj - 0002:000152fc ??_C@_06KOAIACPH@cmovnz?$AA@ 100aa2fc udis86:itab.obj - 0002:00015304 ??_C@_05HAKDBEIL@cmovo?$AA@ 100aa304 udis86:itab.obj - 0002:0001530c ??_C@_05LNPJBKBF@cmovp?$AA@ 100aa30c udis86:itab.obj - 0002:00015314 ??_C@_05JGNEEJNG@cmovs?$AA@ 100aa314 udis86:itab.obj - 0002:0001531c ??_C@_05EHBGPCJP@cmovz?$AA@ 100aa31c udis86:itab.obj - 0002:00015324 ??_C@_03JIBIFJIL@cmp?$AA@ 100aa324 udis86:itab.obj - 0002:00015328 ??_C@_05JPKAPGDL@cmppd?$AA@ 100aa328 udis86:itab.obj - 0002:00015330 ??_C@_05JKCDHCKN@cmpps?$AA@ 100aa330 udis86:itab.obj - 0002:00015338 ??_C@_05MLLMOPOE@cmpsb?$AA@ 100aa338 udis86:itab.obj - 0002:00015340 ??_C@_05JNOGEIGC@cmpsd?$AA@ 100aa340 udis86:itab.obj - 0002:00015348 ??_C@_05KKFDKOHG@cmpsq?$AA@ 100aa348 udis86:itab.obj - 0002:00015350 ??_C@_05JIGFMMPE@cmpss?$AA@ 100aa350 udis86:itab.obj - 0002:00015358 ??_C@_05PMAJAJPA@cmpsw?$AA@ 100aa358 udis86:itab.obj - 0002:00015360 ??_C@_07KJLDDDDB@cmpxchg?$AA@ 100aa360 udis86:itab.obj - 0002:00015368 ??_C@_0L@LMBAAHML@cmpxchg16b?$AA@ 100aa368 udis86:itab.obj - 0002:00015374 ??_C@_09EDOHCBK@cmpxchg8b?$AA@ 100aa374 udis86:itab.obj - 0002:00015380 ??_C@_06FBMFLIKJ@comisd?$AA@ 100aa380 udis86:itab.obj - 0002:00015388 ??_C@_06FEEGDMDP@comiss?$AA@ 100aa388 udis86:itab.obj - 0002:00015390 ??_C@_05CDPJMNMF@cpuid?$AA@ 100aa390 udis86:itab.obj - 0002:00015398 ??_C@_03EAHOANAB@cqo?$AA@ 100aa398 udis86:itab.obj - 0002:0001539c ??_C@_05KBIBMHFC@crc32?$AA@ 100aa39c udis86:itab.obj - 0002:000153a4 ??_C@_08FGJFEIPF@cvtdq2pd?$AA@ 100aa3a4 udis86:itab.obj - 0002:000153b0 ??_C@_08FDBGMMGD@cvtdq2ps?$AA@ 100aa3b0 udis86:itab.obj - 0002:000153bc ??_C@_08EKEIPNDC@cvtpd2dq?$AA@ 100aa3bc udis86:itab.obj - 0002:000153c8 ??_C@_08NDHMGOMH@cvtpd2pi?$AA@ 100aa3c8 udis86:itab.obj - 0002:000153d4 ??_C@_08GDFBJEBM@cvtpd2ps?$AA@ 100aa3d4 udis86:itab.obj - 0002:000153e0 ??_C@_08JOECNEDL@cvtpi2pd?$AA@ 100aa3e0 udis86:itab.obj - 0002:000153ec ??_C@_08JLMBFAKN@cvtpi2ps?$AA@ 100aa3ec udis86:itab.obj - 0002:000153f8 ??_C@_08JIIILGKA@cvtps2dq?$AA@ 100aa3f8 udis86:itab.obj - 0002:00015404 ??_C@_08LEBCFLBI@cvtps2pd?$AA@ 100aa404 udis86:itab.obj - 0002:00015410 ??_C@_08BLMCFFF@cvtps2pi?$AA@ 100aa410 udis86:itab.obj - 0002:0001541c ??_C@_08FHKOKCDA@cvtsd2si?$AA@ 100aa41c udis86:itab.obj - 0002:00015428 ??_C@_08OHIDFIOL@cvtsd2ss?$AA@ 100aa428 udis86:itab.obj - 0002:00015434 ??_C@_08BKJABIMM@cvtsi2sd?$AA@ 100aa434 udis86:itab.obj - 0002:00015440 ??_C@_08BPBDJMFK@cvtsi2ss?$AA@ 100aa440 udis86:itab.obj - 0002:0001544c ??_C@_08DAMAJHOP@cvtss2sd?$AA@ 100aa44c udis86:itab.obj - 0002:00015458 ??_C@_08IFGOOJKC@cvtss2si?$AA@ 100aa458 udis86:itab.obj - 0002:00015464 ??_C@_09NBGJDONK@cvttpd2dq?$AA@ 100aa464 udis86:itab.obj - 0002:00015470 ??_C@_09EIFNKNCP@cvttpd2pi?$AA@ 100aa470 udis86:itab.obj - 0002:0001547c ??_C@_09DKJHFEI@cvttps2dq?$AA@ 100aa47c udis86:itab.obj - 0002:00015488 ??_C@_09JKJNOGLN@cvttps2pi?$AA@ 100aa488 udis86:itab.obj - 0002:00015494 ??_C@_09MMIPGBNI@cvttsd2si?$AA@ 100aa494 udis86:itab.obj - 0002:000154a0 ??_C@_09BOEPCKEK@cvttss2si?$AA@ 100aa4a0 udis86:itab.obj - 0002:000154ac ??_C@_03KHAHKIHI@cwd?$AA@ 100aa4ac udis86:itab.obj - 0002:000154b0 ??_C@_04EGPDGBEE@cwde?$AA@ 100aa4b0 udis86:itab.obj - 0002:000154b8 ??_C@_03FPAMLLEG@daa?$AA@ 100aa4b8 udis86:itab.obj - 0002:000154bc ??_C@_03CHPIMLJF@das?$AA@ 100aa4bc udis86:itab.obj - 0002:000154c0 ??_C@_03GKDDHBBI@dec?$AA@ 100aa4c0 udis86:itab.obj - 0002:000154c4 ??_C@_03FEJMGOGI@div?$AA@ 100aa4c4 udis86:itab.obj - 0002:000154c8 ??_C@_05FCEODPJP@divpd?$AA@ 100aa4c8 udis86:itab.obj - 0002:000154d0 ??_C@_05FHMNLLAJ@divps?$AA@ 100aa4d0 udis86:itab.obj - 0002:000154d8 ??_C@_05FAAIIBMG@divsd?$AA@ 100aa4d8 udis86:itab.obj - 0002:000154e0 ??_C@_05FFILAFFA@divss?$AA@ 100aa4e0 udis86:itab.obj - 0002:000154e8 ??_C@_04GLDALPAA@dppd?$AA@ 100aa4e8 udis86:itab.obj - 0002:000154f0 ??_C@_04GOLDDLJG@dpps?$AA@ 100aa4f0 udis86:itab.obj - 0002:000154f8 ??_C@_04OFFOKNEH@emms?$AA@ 100aa4f8 udis86:itab.obj - 0002:00015500 ??_C@_05IHEOCMON@enter?$AA@ 100aa500 udis86:itab.obj - 0002:00015508 ??_C@_09JKKJMDNE@extractps?$AA@ 100aa508 udis86:itab.obj - 0002:00015514 ??_C@_05GDKIIOEP@f2xm1?$AA@ 100aa514 udis86:itab.obj - 0002:0001551c ??_C@_04ODHECPBC@fabs?$AA@ 100aa51c udis86:itab.obj - 0002:00015524 ??_C@_04OCHKNHDG@fadd?$AA@ 100aa524 udis86:itab.obj - 0002:0001552c ??_C@_05OAGHJGLI@faddp?$AA@ 100aa52c udis86:itab.obj - 0002:00015534 ??_C@_04PONMCJGA@fbld?$AA@ 100aa534 udis86:itab.obj - 0002:0001553c ??_C@_05HGCPCADO@fbstp?$AA@ 100aa53c udis86:itab.obj - 0002:00015544 ??_C@_04EEOKGCEP@fchs?$AA@ 100aa544 udis86:itab.obj - 0002:0001554c ??_C@_05JGAIANAI@fclex?$AA@ 100aa54c udis86:itab.obj - 0002:00015554 ??_C@_06BMFGNME@fcmovb?$AA@ 100aa554 udis86:itab.obj - 0002:0001555c ??_C@_07IEICFMCG@fcmovbe?$AA@ 100aa55c udis86:itab.obj - 0002:00015564 ??_C@_06EOIEPLAD@fcmove?$AA@ 100aa564 udis86:itab.obj - 0002:0001556c ??_C@_07MCNJDDIF@fcmovnb?$AA@ 100aa56c udis86:itab.obj - 0002:00015574 ??_C@_08IFJKDBHO@fcmovnbe?$AA@ 100aa574 udis86:itab.obj - 0002:00015580 ??_C@_07INJIKFEC@fcmovne?$AA@ 100aa580 udis86:itab.obj - 0002:00015588 ??_C@_07MHFKLHBD@fcmovnu?$AA@ 100aa588 udis86:itab.obj - 0002:00015590 ??_C@_06EEGOJFC@fcmovu?$AA@ 100aa590 udis86:itab.obj - 0002:00015598 ??_C@_04JFOEELBF@fcom?$AA@ 100aa598 udis86:itab.obj - 0002:000155a0 ??_C@_05IADIFENB@fcom2?$AA@ 100aa5a0 udis86:itab.obj - 0002:000155a8 ??_C@_05NJHHNAEO@fcomi?$AA@ 100aa5a8 udis86:itab.obj - 0002:000155b0 ??_C@_06LOICGCLB@fcomip?$AA@ 100aa5b0 udis86:itab.obj - 0002:000155b8 ??_C@_05ECHHHJFG@fcomp?$AA@ 100aa5b8 udis86:itab.obj - 0002:000155c0 ??_C@_06HGCBOGII@fcomp3?$AA@ 100aa5c0 udis86:itab.obj - 0002:000155c8 ??_C@_06CAHLEBAO@fcomp5?$AA@ 100aa5c8 udis86:itab.obj - 0002:000155d0 ??_C@_06KNHFPKEO@fcompp?$AA@ 100aa5d0 udis86:itab.obj - 0002:000155d8 ??_C@_04EBKFHEMK@fcos?$AA@ 100aa5d8 udis86:itab.obj - 0002:000155e0 ??_C@_07HAEGMECA@fdecstp?$AA@ 100aa5e0 udis86:itab.obj - 0002:000155e8 ??_C@_04KFIIMEIE@fdiv?$AA@ 100aa5e8 udis86:itab.obj - 0002:000155f0 ??_C@_05MFEPLGAL@fdivp?$AA@ 100aa5f0 udis86:itab.obj - 0002:000155f8 ??_C@_05PHHJNEIJ@fdivr?$AA@ 100aa5f8 udis86:itab.obj - 0002:00015600 ??_C@_06LLKMDLKG@fdivrp?$AA@ 100aa600 udis86:itab.obj - 0002:00015608 ??_C@_05EMBDBHLO@femms?$AA@ 100aa608 udis86:itab.obj - 0002:00015610 ??_C@_05BBECMOMI@ffree?$AA@ 100aa610 udis86:itab.obj - 0002:00015618 ??_C@_06LKJBHBLK@ffreep?$AA@ 100aa618 udis86:itab.obj - 0002:00015620 ??_C@_05MJGHPKBO@fiadd?$AA@ 100aa620 udis86:itab.obj - 0002:00015628 ??_C@_05LOPJGGDN@ficom?$AA@ 100aa628 udis86:itab.obj - 0002:00015630 ??_C@_06HHOJMMIB@ficomp?$AA@ 100aa630 udis86:itab.obj - 0002:00015638 ??_C@_05IOJFOJKM@fidiv?$AA@ 100aa638 udis86:itab.obj - 0002:00015640 ??_C@_06MCOHGBFO@fidivr?$AA@ 100aa640 udis86:itab.obj - 0002:00015648 ??_C@_04CJNNKOGB@fild?$AA@ 100aa648 udis86:itab.obj - 0002:00015650 ??_C@_05FGIMAGOJ@fimul?$AA@ 100aa650 udis86:itab.obj - 0002:00015658 ??_C@_07HLFGFFCD@fincstp?$AA@ 100aa658 udis86:itab.obj - 0002:00015660 ??_C@_04HEGFFIHN@fist?$AA@ 100aa660 udis86:itab.obj - 0002:00015668 ??_C@_05BPPBBCP@fistp?$AA@ 100aa668 udis86:itab.obj - 0002:00015670 ??_C@_06IDOGBDGC@fisttp?$AA@ 100aa670 udis86:itab.obj - 0002:00015678 ??_C@_05HIMJALML@fisub?$AA@ 100aa678 udis86:itab.obj - 0002:00015680 ??_C@_06BBMHMJEH@fisubr?$AA@ 100aa680 udis86:itab.obj - 0002:00015688 ??_C@_03IAKKBENL@fld?$AA@ 100aa688 udis86:itab.obj - 0002:0001568c ??_C@_04NHNMKGPK@fld1?$AA@ 100aa68c udis86:itab.obj - 0002:00015694 ??_C@_05FCPJNCEL@fldcw?$AA@ 100aa694 udis86:itab.obj - 0002:0001569c ??_C@_06KOKFHIJJ@fldenv?$AA@ 100aa69c udis86:itab.obj - 0002:000156a4 ??_C@_06NHOEKBFF@fldl2e?$AA@ 100aa6a4 udis86:itab.obj - 0002:000156ac ??_C@_06IEDNICEF@fldl2t?$AA@ 100aa6ac udis86:itab.obj - 0002:000156b4 ??_C@_06EIGJIGJN@fldlg2?$AA@ 100aa6b4 udis86:itab.obj - 0002:000156bc ??_C@_06EHLILNBC@fldln2?$AA@ 100aa6bc udis86:itab.obj - 0002:000156c4 ??_C@_05JINIPALN@fldpi?$AA@ 100aa6c4 udis86:itab.obj - 0002:000156cc ??_C@_04MEFBDADE@fldz?$AA@ 100aa6cc udis86:itab.obj - 0002:000156d4 ??_C@_04HNJBCLMB@fmul?$AA@ 100aa6d4 udis86:itab.obj - 0002:000156dc ??_C@_05MDCBBKPL@fmulp?$AA@ 100aa6dc udis86:itab.obj - 0002:000156e4 ??_C@_06HABPFIJH@fndisi?$AA@ 100aa6e4 udis86:itab.obj - 0002:000156ec ??_C@_05EMBMEKMC@fneni?$AA@ 100aa6ec udis86:itab.obj - 0002:000156f4 ??_C@_06PLIFOOCF@fninit?$AA@ 100aa6f4 udis86:itab.obj - 0002:000156fc ??_C@_04JIOCPPNE@fnop?$AA@ 100aa6fc udis86:itab.obj - 0002:00015704 ??_C@_06MNBFLGAN@fnsave?$AA@ 100aa704 udis86:itab.obj - 0002:0001570c ??_C@_07OLELHDDB@fnsetpm?$AA@ 100aa70c udis86:itab.obj - 0002:00015714 ??_C@_06MIMLAAOI@fnstcw?$AA@ 100aa714 udis86:itab.obj - 0002:0001571c ??_C@_07OBOALIBJ@fnstenv?$AA@ 100aa71c udis86:itab.obj - 0002:00015724 ??_C@_06NEONKDJI@fnstsw?$AA@ 100aa724 udis86:itab.obj - 0002:0001572c ??_C@_06HDLDNKJH@fpatan?$AA@ 100aa72c udis86:itab.obj - 0002:00015734 ??_C@_05DGDLCGOC@fprem?$AA@ 100aa734 udis86:itab.obj - 0002:0001573c ??_C@_06IIGPLPMA@fprem1?$AA@ 100aa73c udis86:itab.obj - 0002:00015744 ??_C@_05DPHEICCB@fptan?$AA@ 100aa744 udis86:itab.obj - 0002:0001574c ??_C@_07OGNGBFFO@frndint?$AA@ 100aa74c udis86:itab.obj - 0002:00015754 ??_C@_06MILCMPCJ@frstor?$AA@ 100aa754 udis86:itab.obj - 0002:0001575c ??_C@_06BCJCCFPK@frstpm?$AA@ 100aa75c udis86:itab.obj - 0002:00015764 ??_C@_06DAMBGGM@fscale?$AA@ 100aa764 udis86:itab.obj - 0002:0001576c ??_C@_04OKFNDDPL@fsin?$AA@ 100aa76c udis86:itab.obj - 0002:00015774 ??_C@_07DGCKCKGH@fsincos?$AA@ 100aa774 udis86:itab.obj - 0002:0001577c ??_C@_05OBEHOPDB@fsqrt?$AA@ 100aa77c udis86:itab.obj - 0002:00015784 ??_C@_03NNBCOCMH@fst?$AA@ 100aa784 udis86:itab.obj - 0002:00015788 ??_C@_04CKOCDMAH@fstp?$AA@ 100aa788 udis86:itab.obj - 0002:00015790 ??_C@_05FIBDHACN@fstp1?$AA@ 100aa790 udis86:itab.obj - 0002:00015798 ??_C@_05IJNBMLGE@fstp8?$AA@ 100aa798 udis86:itab.obj - 0002:000157a0 ??_C@_05JAMKPKCF@fstp9?$AA@ 100aa7a0 udis86:itab.obj - 0002:000157a8 ??_C@_04FDNECGOD@fsub?$AA@ 100aa7a8 udis86:itab.obj - 0002:000157b0 ??_C@_05BGGPBOBC@fsubp?$AA@ 100aa7b0 udis86:itab.obj - 0002:000157b8 ??_C@_05CEFJHMJA@fsubr?$AA@ 100aa7b8 udis86:itab.obj - 0002:000157c0 ??_C@_06NPBELDMO@fsubrp?$AA@ 100aa7c0 udis86:itab.obj - 0002:000157c8 ??_C@_04NGBGNHDP@ftst?$AA@ 100aa7c8 udis86:itab.obj - 0002:000157d0 ??_C@_05BLOJBMLO@fucom?$AA@ 100aa7d0 udis86:itab.obj - 0002:000157d8 ??_C@_06JIPNKHHJ@fucomi?$AA@ 100aa7d8 udis86:itab.obj - 0002:000157e0 ??_C@_07GHOENMJ@fucomip?$AA@ 100aa7e0 udis86:itab.obj - 0002:000157e8 ??_C@_06DPNAOGB@fucomp?$AA@ 100aa7e8 udis86:itab.obj - 0002:000157f0 ??_C@_07BFIJNFDG@fucompp?$AA@ 100aa7f0 udis86:itab.obj - 0002:000157f8 ??_C@_04BIGCLGIB@fxam?$AA@ 100aa7f8 udis86:itab.obj - 0002:00015800 ??_C@_04GGJBJGKK@fxch?$AA@ 100aa800 udis86:itab.obj - 0002:00015808 ??_C@_05INEPCIJH@fxch4?$AA@ 100aa808 udis86:itab.obj - 0002:00015810 ??_C@_05KGGCHLFE@fxch7?$AA@ 100aa810 udis86:itab.obj - 0002:00015818 ??_C@_07BBJJIBJB@fxrstor?$AA@ 100aa818 udis86:itab.obj - 0002:00015820 ??_C@_06BIJKFHIL@fxsave?$AA@ 100aa820 udis86:itab.obj - 0002:00015828 ??_C@_07MCCHLCHD@fxtract?$AA@ 100aa828 udis86:itab.obj - 0002:00015830 ??_C@_05NFKLLKBO@fyl2x?$AA@ 100aa830 udis86:itab.obj - 0002:00015838 ??_C@_07GNFJNPAE@fyl2xp1?$AA@ 100aa838 udis86:itab.obj - 0002:00015840 ??_C@_06BKPLENB@getsec?$AA@ 100aa840 udis86:itab.obj - 0002:00015848 ??_C@_06JEPEIJNG@haddpd?$AA@ 100aa848 udis86:itab.obj - 0002:00015850 ??_C@_06JBHHANEA@haddps?$AA@ 100aa850 udis86:itab.obj - 0002:00015858 ??_C@_03CKLHHBLJ@hlt?$AA@ 100aa858 udis86:itab.obj - 0002:0001585c ??_C@_06KCABMLKI@hsubpd?$AA@ 100aa85c udis86:itab.obj - 0002:00015864 ??_C@_06KHICEPDO@hsubps?$AA@ 100aa864 udis86:itab.obj - 0002:0001586c ??_C@_04CHNIFDFF@idiv?$AA@ 100aa86c udis86:itab.obj - 0002:00015874 ??_C@_04PPMBLMBA@imul?$AA@ 100aa874 udis86:itab.obj - 0002:0001587c ??_C@_02LMMGJAGL@in?$AA@ 100aa87c udis86:itab.obj - 0002:00015880 ??_C@_03JEAMEGCE@inc?$AA@ 100aa880 udis86:itab.obj - 0002:00015884 ??_C@_04HHHKECMC@insb?$AA@ 100aa884 udis86:itab.obj - 0002:0001588c ??_C@_04CBCAOFEE@insd?$AA@ 100aa88c udis86:itab.obj - 0002:00015894 ??_C@_08JOECPMHJ@insertps?$AA@ 100aa894 udis86:itab.obj - 0002:000158a0 ??_C@_04EAMPKENG@insw?$AA@ 100aa8a0 udis86:itab.obj - 0002:000158a8 ??_C@_03JBIPMCLC@int?$AA@ 100aa8a8 udis86:itab.obj - 0002:000158ac ??_C@_04ODKDFKNA@int1?$AA@ 100aa8ac udis86:itab.obj - 0002:000158b4 ??_C@_04NBJFDIFC@int3?$AA@ 100aa8b4 udis86:itab.obj - 0002:000158bc ??_C@_04MHJLCKAK@into?$AA@ 100aa8bc udis86:itab.obj - 0002:000158c4 ??_C@_04CHOLCHKP@invd?$AA@ 100aa8c4 udis86:itab.obj - 0002:000158cc ??_C@_06CLILIBGB@invept?$AA@ 100aa8cc udis86:itab.obj - 0002:000158d4 ??_C@_06DHGMIPHJ@invlpg?$AA@ 100aa8d4 udis86:itab.obj - 0002:000158dc ??_C@_07FFAIPPPB@invlpga?$AA@ 100aa8dc udis86:itab.obj - 0002:000158e4 ??_C@_07ILBKJJN@invvpid?$AA@ 100aa8e4 udis86:itab.obj - 0002:000158ec ??_C@_05LMEFNKHP@iretd?$AA@ 100aa8ec udis86:itab.obj - 0002:000158f4 ??_C@_05ILPADMGL@iretq?$AA@ 100aa8f4 udis86:itab.obj - 0002:000158fc ??_C@_05NNKKJLON@iretw?$AA@ 100aa8fc udis86:itab.obj - 0002:00015904 ??_C@_02DJBIDCPN@ja?$AA@ 100aa904 udis86:itab.obj - 0002:00015908 ??_C@_03NLLPAJHB@jae?$AA@ 100aa908 udis86:itab.obj - 0002:0001590c ??_C@_02BCDFGBDO@jb?$AA@ 100aa90c udis86:itab.obj - 0002:00015910 ??_C@_03NJPJLHCI@jbe?$AA@ 100aa910 udis86:itab.obj - 0002:00015914 ??_C@_04EMPOJHHH@jcxz?$AA@ 100aa914 udis86:itab.obj - 0002:0001591c ??_C@_05BACBHKCE@jecxz?$AA@ 100aa91c udis86:itab.obj - 0002:00015924 ??_C@_02GPECJFHL@jg?$AA@ 100aa924 udis86:itab.obj - 0002:00015928 ??_C@_03NPDCHFMD@jge?$AA@ 100aa928 udis86:itab.obj - 0002:0001592c ??_C@_02IMLGEMLA@jl?$AA@ 100aa92c udis86:itab.obj - 0002:00015930 ??_C@_03NDGHJKCC@jle?$AA@ 100aa930 udis86:itab.obj - 0002:00015934 ??_C@_03OFBABGAB@jmp?$AA@ 100aa934 udis86:itab.obj - 0002:00015938 ??_C@_03CKAMKGMG@jno?$AA@ 100aa938 udis86:itab.obj - 0002:0001593c ??_C@_03OHFGKIFI@jnp?$AA@ 100aa93c udis86:itab.obj - 0002:00015940 ??_C@_03MMHLPLJL@jns?$AA@ 100aa940 udis86:itab.obj - 0002:00015944 ??_C@_03BNLJEANC@jnz?$AA@ 100aa944 udis86:itab.obj - 0002:00015948 ??_C@_02KHJLBPHD@jo?$AA@ 100aa948 udis86:itab.obj - 0002:0001594c ??_C@_02GKMBBBON@jp?$AA@ 100aa94c udis86:itab.obj - 0002:00015950 ??_C@_05MCOBDBLG@jrcxz?$AA@ 100aa950 udis86:itab.obj - 0002:00015958 ??_C@_02EBOMECCO@js?$AA@ 100aa958 udis86:itab.obj - 0002:0001595c ??_C@_02JACOPJGH@jz?$AA@ 100aa95c udis86:itab.obj - 0002:00015960 ??_C@_04JDOGFEHB@lahf?$AA@ 100aa960 udis86:itab.obj - 0002:00015968 ??_C@_03PLFHNCDL@lar?$AA@ 100aa968 udis86:itab.obj - 0002:0001596c ??_C@_05OOIGKPHA@lddqu?$AA@ 100aa96c udis86:itab.obj - 0002:00015974 ??_C@_07HNIFNPIO@ldmxcsr?$AA@ 100aa974 udis86:itab.obj - 0002:0001597c ??_C@_03OEIHCBJB@lds?$AA@ 100aa97c udis86:itab.obj - 0002:00015980 ??_C@_03JNLBDLHF@lea?$AA@ 100aa980 udis86:itab.obj - 0002:00015984 ??_C@_05KLLFHCCG@leave?$AA@ 100aa984 udis86:itab.obj - 0002:0001598c ??_C@_03OFEFELKG@les?$AA@ 100aa98c udis86:itab.obj - 0002:00015990 ??_C@_06CIBIHIMB@lfence?$AA@ 100aa990 udis86:itab.obj - 0002:00015998 ??_C@_03OHADPFPP@lfs?$AA@ 100aa998 udis86:itab.obj - 0002:0001599c ??_C@_04MHGDICBK@lgdt?$AA@ 100aa99c udis86:itab.obj - 0002:000159a4 ??_C@_03OGMBJPMI@lgs?$AA@ 100aa9a4 udis86:itab.obj - 0002:000159a8 ??_C@_04CHLMPFCJ@lidt?$AA@ 100aa9a8 udis86:itab.obj - 0002:000159b0 ??_C@_04BAGCAFBL@lldt?$AA@ 100aa9b0 udis86:itab.obj - 0002:000159b8 ??_C@_04JKJKIEEI@lmsw?$AA@ 100aa9b8 udis86:itab.obj - 0002:000159c0 ??_C@_04MKMCLCOO@lock?$AA@ 100aa9c0 udis86:itab.obj - 0002:000159c8 ??_C@_05JPFBMOJJ@lodsb?$AA@ 100aa9c8 udis86:itab.obj - 0002:000159d0 ??_C@_05MJALGJBP@lodsd?$AA@ 100aa9d0 udis86:itab.obj - 0002:000159d8 ??_C@_05POLOIPAL@lodsq?$AA@ 100aa9d8 udis86:itab.obj - 0002:000159e0 ??_C@_05KIOECIIN@lodsw?$AA@ 100aa9e0 udis86:itab.obj - 0002:000159e8 ??_C@_04GKOOIABA@loop?$AA@ 100aa9e8 udis86:itab.obj - 0002:000159f0 ??_C@_05FFHGBAG@loope?$AA@ 100aa9f0 udis86:itab.obj - 0002:000159f8 ??_C@_06PNLJICFH@loopne?$AA@ 100aa9f8 udis86:itab.obj - 0002:00015a00 ??_C@_03DALEJKPK@lsl?$AA@ 100aaa00 udis86:itab.obj - 0002:00015a04 ??_C@_03PNOOJEGE@lss?$AA@ 100aaa04 udis86:itab.obj - 0002:00015a08 ??_C@_03OBLKLDKA@ltr?$AA@ 100aaa08 udis86:itab.obj - 0002:00015a0c ??_C@_0L@KDNMNDNK@maskmovdqu?$AA@ 100aaa0c udis86:itab.obj - 0002:00015a18 ??_C@_08HDJHBAFE@maskmovq?$AA@ 100aaa18 udis86:itab.obj - 0002:00015a24 ??_C@_05KFOOFCKF@maxpd?$AA@ 100aaa24 udis86:itab.obj - 0002:00015a2c ??_C@_05KAGNNGDD@maxps?$AA@ 100aaa2c udis86:itab.obj - 0002:00015a34 ??_C@_05KHKIOMPM@maxsd?$AA@ 100aaa34 udis86:itab.obj - 0002:00015a3c ??_C@_05KCCLGIGK@maxss?$AA@ 100aaa3c udis86:itab.obj - 0002:00015a44 ??_C@_06IOGPHDHF@mfence?$AA@ 100aaa44 udis86:itab.obj - 0002:00015a4c ??_C@_05OAOMBBCH@minpd?$AA@ 100aaa4c udis86:itab.obj - 0002:00015a54 ??_C@_05OFGPJFLB@minps?$AA@ 100aaa54 udis86:itab.obj - 0002:00015a5c ??_C@_05OCKKKPHO@minsd?$AA@ 100aaa5c udis86:itab.obj - 0002:00015a64 ??_C@_05OHCJCLOI@minss?$AA@ 100aaa64 udis86:itab.obj - 0002:00015a6c ??_C@_07LAMOHCEE@monitor?$AA@ 100aaa6c udis86:itab.obj - 0002:00015a74 ??_C@_07MAFPCABL@montmul?$AA@ 100aaa74 udis86:itab.obj - 0002:00015a7c ??_C@_03CNBJFNFA@mov?$AA@ 100aaa7c udis86:itab.obj - 0002:00015a80 ??_C@_06NBDIPDNB@movapd?$AA@ 100aaa80 udis86:itab.obj - 0002:00015a88 ??_C@_06NELLHHEH@movaps?$AA@ 100aaa88 udis86:itab.obj - 0002:00015a90 ??_C@_05PMLINNKI@movbe?$AA@ 100aaa90 udis86:itab.obj - 0002:00015a98 ??_C@_04GKNHOGAK@movd?$AA@ 100aaa98 udis86:itab.obj - 0002:00015aa0 ??_C@_07NEEFCFLI@movddup?$AA@ 100aaaa0 udis86:itab.obj - 0002:00015aa8 ??_C@_07NPEMCIBB@movdq2q?$AA@ 100aaaa8 udis86:itab.obj - 0002:00015ab0 ??_C@_06JKFDJNJB@movdqa?$AA@ 100aaab0 udis86:itab.obj - 0002:00015ab8 ??_C@_06LEPNEKME@movdqu?$AA@ 100aaab8 udis86:itab.obj - 0002:00015ac0 ??_C@_07PJOHHBHO@movhlps?$AA@ 100aaac0 udis86:itab.obj - 0002:00015ac8 ??_C@_06KMDALMFL@movhpd?$AA@ 100aaac8 udis86:itab.obj - 0002:00015ad0 ??_C@_06KJLDDIMN@movhps?$AA@ 100aaad0 udis86:itab.obj - 0002:00015ad8 ??_C@_07IDAFEAOJ@movlhps?$AA@ 100aaad8 udis86:itab.obj - 0002:00015ae0 ??_C@_06CDFCCLAM@movlpd?$AA@ 100aaae0 udis86:itab.obj - 0002:00015ae8 ??_C@_06CGNBKPJK@movlps?$AA@ 100aaae8 udis86:itab.obj - 0002:00015af0 ??_C@_08IBPGOKMO@movmskpd?$AA@ 100aaaf0 udis86:itab.obj - 0002:00015afc ??_C@_08IEHFGOFI@movmskps?$AA@ 100aaafc udis86:itab.obj - 0002:00015b08 ??_C@_07MKBDJCIA@movntdq?$AA@ 100aab08 udis86:itab.obj - 0002:00015b10 ??_C@_08JBJEMKFE@movntdqa?$AA@ 100aab10 udis86:itab.obj - 0002:00015b1c ??_C@_06DLPMDFBG@movnti?$AA@ 100aab1c udis86:itab.obj - 0002:00015b24 ??_C@_07OGIJHPDI@movntpd?$AA@ 100aab24 udis86:itab.obj - 0002:00015b2c ??_C@_07ODAKPLKO@movntps?$AA@ 100aab2c udis86:itab.obj - 0002:00015b34 ??_C@_06LJOHKNEP@movntq?$AA@ 100aab34 udis86:itab.obj - 0002:00015b3c ??_C@_04FNGCAABO@movq?$AA@ 100aab3c udis86:itab.obj - 0002:00015b44 ??_C@_07JGNMJFDC@movq2dq?$AA@ 100aab44 udis86:itab.obj - 0002:00015b4c ??_C@_05KOBNICCI@movsb?$AA@ 100aab4c udis86:itab.obj - 0002:00015b54 ??_C@_05PIEHCFKO@movsd?$AA@ 100aab54 udis86:itab.obj - 0002:00015b5c ??_C@_08NPBMCKFO@movshdup?$AA@ 100aab5c udis86:itab.obj - 0002:00015b68 ??_C@_08CKJMIMJO@movsldup?$AA@ 100aab68 udis86:itab.obj - 0002:00015b74 ??_C@_05MPPCMDLK@movsq?$AA@ 100aab74 udis86:itab.obj - 0002:00015b7c ??_C@_05PNMEKBDI@movss?$AA@ 100aab7c udis86:itab.obj - 0002:00015b84 ??_C@_05JJKIGEDM@movsw?$AA@ 100aab84 udis86:itab.obj - 0002:00015b8c ??_C@_05BODAHIPD@movsx?$AA@ 100aab8c udis86:itab.obj - 0002:00015b94 ??_C@_06CFDLDNHN@movsxd?$AA@ 100aab94 udis86:itab.obj - 0002:00015b9c ??_C@_06OEDDDBJ@movupd?$AA@ 100aab9c udis86:itab.obj - 0002:00015ba4 ??_C@_06LMALHIP@movups?$AA@ 100aaba4 udis86:itab.obj - 0002:00015bac ??_C@_05BBOBEDHM@movzx?$AA@ 100aabac udis86:itab.obj - 0002:00015bb4 ??_C@_07ILNGPEGO@mpsadbw?$AA@ 100aabb4 udis86:itab.obj - 0002:00015bbc ??_C@_03IMIFIBCN@mul?$AA@ 100aabbc udis86:itab.obj - 0002:00015bc0 ??_C@_05OPPFKDCP@mulpd?$AA@ 100aabc0 udis86:itab.obj - 0002:00015bc8 ??_C@_05OKHGCHLJ@mulps?$AA@ 100aabc8 udis86:itab.obj - 0002:00015bd0 ??_C@_05ONLDBNHG@mulsd?$AA@ 100aabd0 udis86:itab.obj - 0002:00015bd8 ??_C@_05OIDAJJOA@mulss?$AA@ 100aabd8 udis86:itab.obj - 0002:00015be0 ??_C@_05DOGKKCDM@mwait?$AA@ 100aabe0 udis86:itab.obj - 0002:00015be8 ??_C@_03GBOCFEHI@neg?$AA@ 100aabe8 udis86:itab.obj - 0002:00015bec ??_C@_03GJPGFFDI@nop?$AA@ 100aabec udis86:itab.obj - 0002:00015bf0 ??_C@_03NJKJADM@not?$AA@ 100aabf0 udis86:itab.obj - 0002:00015bf4 ??_C@_02FODMLBIE@or?$AA@ 100aabf4 udis86:itab.obj - 0002:00015bf8 ??_C@_04LGOJEGJK@orpd?$AA@ 100aabf8 udis86:itab.obj - 0002:00015c00 ??_C@_04LDGKMCAM@orps?$AA@ 100aac00 udis86:itab.obj - 0002:00015c08 ??_C@_03KEJHNBPP@out?$AA@ 100aac08 udis86:itab.obj - 0002:00015c0c ??_C@_05GDIMGEIL@outsb?$AA@ 100aac0c udis86:itab.obj - 0002:00015c14 ??_C@_05DFNGMDAN@outsd?$AA@ 100aac14 udis86:itab.obj - 0002:00015c1c ??_C@_05FEDJICJP@outsw?$AA@ 100aac1c udis86:itab.obj - 0002:00015c24 ??_C@_05HBBOONME@pabsb?$AA@ 100aac24 udis86:itab.obj - 0002:00015c2c ??_C@_05CHEEEKEC@pabsd?$AA@ 100aac2c udis86:itab.obj - 0002:00015c34 ??_C@_05EGKLALNA@pabsw?$AA@ 100aac34 udis86:itab.obj - 0002:00015c3c ??_C@_08MFCBDIOA@packssdw?$AA@ 100aac3c udis86:itab.obj - 0002:00015c48 ??_C@_08OMPEMDNN@packsswb?$AA@ 100aac48 udis86:itab.obj - 0002:00015c54 ??_C@_08EKGBMNEA@packusdw?$AA@ 100aac54 udis86:itab.obj - 0002:00015c60 ??_C@_08GDLEDGHN@packuswb?$AA@ 100aac60 udis86:itab.obj - 0002:00015c6c ??_C@_05ENBMAHON@paddb?$AA@ 100aac6c udis86:itab.obj - 0002:00015c74 ??_C@_05BLEGKAGL@paddd?$AA@ 100aac74 udis86:itab.obj - 0002:00015c7c ??_C@_05CMPDEGHP@paddq?$AA@ 100aac7c udis86:itab.obj - 0002:00015c84 ??_C@_06JENJECKA@paddsb?$AA@ 100aac84 udis86:itab.obj - 0002:00015c8c ??_C@_06KDGMKELE@paddsw?$AA@ 100aac8c udis86:itab.obj - 0002:00015c94 ??_C@_07LJAGOFBE@paddusb?$AA@ 100aac94 udis86:itab.obj - 0002:00015c9c ??_C@_07IOLDADAA@paddusw?$AA@ 100aac9c udis86:itab.obj - 0002:00015ca4 ??_C@_05HKKJOBPJ@paddw?$AA@ 100aaca4 udis86:itab.obj - 0002:00015cac ??_C@_07JOJBOKO@palignr?$AA@ 100aacac udis86:itab.obj - 0002:00015cb4 ??_C@_04ENDAMC@pand?$AA@ 100aacb4 udis86:itab.obj - 0002:00015cbc ??_C@_05IOBEKIIF@pandn?$AA@ 100aacbc udis86:itab.obj - 0002:00015cc4 ??_C@_05LFEKCGKA@pavgb?$AA@ 100aacc4 udis86:itab.obj - 0002:00015ccc ??_C@_07LALIDMFE@pavgusb?$AA@ 100aaccc udis86:itab.obj - 0002:00015cd4 ??_C@_05ICPPMALE@pavgw?$AA@ 100aacd4 udis86:itab.obj - 0002:00015cdc ??_C@_08PKEFIDIF@pblendvb?$AA@ 100aacdc udis86:itab.obj - 0002:00015ce8 ??_C@_07PABJNHCL@pblendw?$AA@ 100aace8 udis86:itab.obj - 0002:00015cf0 ??_C@_09EPKDNNCN@pclmulqdq?$AA@ 100aacf0 udis86:itab.obj - 0002:00015cfc ??_C@_07MPGLBHEG@pcmpeqb?$AA@ 100aacfc udis86:itab.obj - 0002:00015d04 ??_C@_07JJDBLAMA@pcmpeqd?$AA@ 100aad04 udis86:itab.obj - 0002:00015d0c ??_C@_07KOIEFGNE@pcmpeqq?$AA@ 100aad0c udis86:itab.obj - 0002:00015d14 ??_C@_07PINOPBFC@pcmpeqw?$AA@ 100aad14 udis86:itab.obj - 0002:00015d1c ??_C@_09MJAIJFNM@pcmpestri?$AA@ 100aad1c udis86:itab.obj - 0002:00015d28 ??_C@_09KNGEFANI@pcmpestrm?$AA@ 100aad28 udis86:itab.obj - 0002:00015d34 ??_C@_07GDKJBNCG@pcmpgtb?$AA@ 100aad34 udis86:itab.obj - 0002:00015d3c ??_C@_07DFPDLKKA@pcmpgtd?$AA@ 100aad3c udis86:itab.obj - 0002:00015d44 ??_C@_07CEGFMLE@pcmpgtq?$AA@ 100aad44 udis86:itab.obj - 0002:00015d4c ??_C@_07FEBMPLDC@pcmpgtw?$AA@ 100aad4c udis86:itab.obj - 0002:00015d54 ??_C@_09LOMKFFKH@pcmpistri?$AA@ 100aad54 udis86:itab.obj - 0002:00015d60 ??_C@_09NKKGJAKD@pcmpistrm?$AA@ 100aad60 udis86:itab.obj - 0002:00015d6c ??_C@_06PLIDEHJN@pextrb?$AA@ 100aad6c udis86:itab.obj - 0002:00015d74 ??_C@_06KNNJOABL@pextrd?$AA@ 100aad74 udis86:itab.obj - 0002:00015d7c ??_C@_06JKGMAGAP@pextrq?$AA@ 100aad7c udis86:itab.obj - 0002:00015d84 ??_C@_06MMDGKBIJ@pextrw?$AA@ 100aad84 udis86:itab.obj - 0002:00015d8c ??_C@_05EPNILPFG@pf2id?$AA@ 100aad8c udis86:itab.obj - 0002:00015d94 ??_C@_05CODHPOME@pf2iw?$AA@ 100aad94 udis86:itab.obj - 0002:00015d9c ??_C@_05NELGAMAL@pfacc?$AA@ 100aad9c udis86:itab.obj - 0002:00015da4 ??_C@_05JOLIIMEJ@pfadd?$AA@ 100aada4 udis86:itab.obj - 0002:00015dac ??_C@_07CCCOOHDB@pfcmpeq?$AA@ 100aadac udis86:itab.obj - 0002:00015db4 ??_C@_07PAEOEAK@pfcmpge?$AA@ 100aadb4 udis86:itab.obj - 0002:00015dbc ??_C@_07FMNNMHBK@pfcmpgt?$AA@ 100aadbc udis86:itab.obj - 0002:00015dc4 ??_C@_05DENCKMEH@pfmax?$AA@ 100aadc4 udis86:itab.obj - 0002:00015dcc ??_C@_05CGFJEICI@pfmin?$AA@ 100aadcc udis86:itab.obj - 0002:00015dd4 ??_C@_05BFDHALO@pfmul?$AA@ 100aadd4 udis86:itab.obj - 0002:00015ddc ??_C@_06PBIPAILK@pfnacc?$AA@ 100aaddc udis86:itab.obj - 0002:00015de4 ??_C@_07HEBANBEP@pfpnacc?$AA@ 100aade4 udis86:itab.obj - 0002:00015dec ??_C@_05PHPFLFOI@pfrcp?$AA@ 100aadec udis86:itab.obj - 0002:00015df4 ??_C@_08CABPKCDG@pfrcpit1?$AA@ 100aadf4 udis86:itab.obj - 0002:00015e00 ??_C@_08LDCPBPF@pfrcpit2?$AA@ 100aae00 udis86:itab.obj - 0002:00015e0c ??_C@_08BOKJIJBN@pfrsqit1?$AA@ 100aae0c udis86:itab.obj - 0002:00015e18 ??_C@_07OJNGDJDJ@pfrsqrt?$AA@ 100aae18 udis86:itab.obj - 0002:00015e20 ??_C@_05CPBGHNJM@pfsub?$AA@ 100aae20 udis86:itab.obj - 0002:00015e28 ??_C@_06OEJPNCGG@pfsubr?$AA@ 100aae28 udis86:itab.obj - 0002:00015e30 ??_C@_06DEAFIOGL@phaddd?$AA@ 100aae30 udis86:itab.obj - 0002:00015e38 ??_C@_07KDEDOHJK@phaddsw?$AA@ 100aae38 udis86:itab.obj - 0002:00015e40 ??_C@_06FFOKMPPJ@phaddw?$AA@ 100aae40 udis86:itab.obj - 0002:00015e48 ??_C@_0L@EKOFBFBK@phminposuw?$AA@ 100aae48 udis86:itab.obj - 0002:00015e54 ??_C@_06MCANAGMB@phsubd?$AA@ 100aae54 udis86:itab.obj - 0002:00015e5c ??_C@_07JFLGKFOE@phsubsw?$AA@ 100aae5c udis86:itab.obj - 0002:00015e64 ??_C@_06KDOCEHFD@phsubw?$AA@ 100aae64 udis86:itab.obj - 0002:00015e6c ??_C@_05MGNEGPLK@pi2fd?$AA@ 100aae6c udis86:itab.obj - 0002:00015e74 ??_C@_05KHDLCOCI@pi2fw?$AA@ 100aae74 udis86:itab.obj - 0002:00015e7c ??_C@_06PODGNNHN@pinsrb?$AA@ 100aae7c udis86:itab.obj - 0002:00015e84 ??_C@_06KIGMHKPL@pinsrd?$AA@ 100aae84 udis86:itab.obj - 0002:00015e8c ??_C@_06JPNJJMOP@pinsrq?$AA@ 100aae8c udis86:itab.obj - 0002:00015e94 ??_C@_06MJIDDLGJ@pinsrw?$AA@ 100aae94 udis86:itab.obj - 0002:00015e9c ??_C@_09CBBJJIHC@pmaddubsw?$AA@ 100aae9c udis86:itab.obj - 0002:00015ea8 ??_C@_07JHJNCBHD@pmaddwd?$AA@ 100aaea8 udis86:itab.obj - 0002:00015eb0 ??_C@_06DBDEOFIM@pmaxsb?$AA@ 100aaeb0 udis86:itab.obj - 0002:00015eb8 ??_C@_06GHGOECAK@pmaxsd?$AA@ 100aaeb8 udis86:itab.obj - 0002:00015ec0 ??_C@_06GIBADJI@pmaxsw?$AA@ 100aaec0 udis86:itab.obj - 0002:00015ec8 ??_C@_06DFLJJJDO@pmaxub?$AA@ 100aaec8 udis86:itab.obj - 0002:00015ed0 ??_C@_06GDODDOLI@pmaxud?$AA@ 100aaed0 udis86:itab.obj - 0002:00015ed8 ??_C@_06CAMHPCK@pmaxuw?$AA@ 100aaed8 udis86:itab.obj - 0002:00015ee0 ??_C@_06HEDGKGAO@pminsb?$AA@ 100aaee0 udis86:itab.obj - 0002:00015ee8 ??_C@_06CCGMABII@pminsd?$AA@ 100aaee8 udis86:itab.obj - 0002:00015ef0 ??_C@_06EDIDEABK@pminsw?$AA@ 100aaef0 udis86:itab.obj - 0002:00015ef8 ??_C@_06HALLNKLM@pminub?$AA@ 100aaef8 udis86:itab.obj - 0002:00015f00 ??_C@_06CGOBHNDK@pminud?$AA@ 100aaf00 udis86:itab.obj - 0002:00015f08 ??_C@_06EHAODMKI@pminuw?$AA@ 100aaf08 udis86:itab.obj - 0002:00015f10 ??_C@_08JFPNOFE@pmovmskb?$AA@ 100aaf10 udis86:itab.obj - 0002:00015f1c ??_C@_08FIAFOMLP@pmovsxbd?$AA@ 100aaf1c udis86:itab.obj - 0002:00015f28 ??_C@_08GPLAAKKL@pmovsxbq?$AA@ 100aaf28 udis86:itab.obj - 0002:00015f34 ??_C@_08DJOKKNCN@pmovsxbw?$AA@ 100aaf34 udis86:itab.obj - 0002:00015f40 ??_C@_08GLDNHGBJ@pmovsxdq?$AA@ 100aaf40 udis86:itab.obj - 0002:00015f4c ??_C@_08ECOIINCE@pmovsxwd?$AA@ 100aaf4c udis86:itab.obj - 0002:00015f58 ??_C@_08HFFNGLDA@pmovsxwq?$AA@ 100aaf58 udis86:itab.obj - 0002:00015f64 ??_C@_08FFBFIOMO@pmovzxbd?$AA@ 100aaf64 udis86:itab.obj - 0002:00015f70 ??_C@_08GCKAGINK@pmovzxbq?$AA@ 100aaf70 udis86:itab.obj - 0002:00015f7c ??_C@_08DEPKMPFM@pmovzxbw?$AA@ 100aaf7c udis86:itab.obj - 0002:00015f88 ??_C@_08GGCNBEGI@pmovzxdq?$AA@ 100aaf88 udis86:itab.obj - 0002:00015f94 ??_C@_08EPPIOPFF@pmovzxwd?$AA@ 100aaf94 udis86:itab.obj - 0002:00015fa0 ??_C@_08HIENAJEB@pmovzxwq?$AA@ 100aafa0 udis86:itab.obj - 0002:00015fac ??_C@_06DKJOAGB@pmuldq?$AA@ 100aafac udis86:itab.obj - 0002:00015fb4 ??_C@_08DNGAMAOA@pmulhrsw?$AA@ 100aafb4 udis86:itab.obj - 0002:00015fc0 ??_C@_07BCFIBGPO@pmulhrw?$AA@ 100aafc0 udis86:itab.obj - 0002:00015fc8 ??_C@_07BHBHAAHL@pmulhuw?$AA@ 100aafc8 udis86:itab.obj - 0002:00015fd0 ??_C@_06FMOJLOID@pmulhw?$AA@ 100aafd0 udis86:itab.obj - 0002:00015fd8 ??_C@_06DKAPFHMN@pmulld?$AA@ 100aafd8 udis86:itab.obj - 0002:00015fe0 ??_C@_06FLOABGFP@pmullw?$AA@ 100aafe0 udis86:itab.obj - 0002:00015fe8 ??_C@_07PONKOBPI@pmuludq?$AA@ 100aafe8 udis86:itab.obj - 0002:00015ff0 ??_C@_03NJDAHFJE@pop?$AA@ 100aaff0 udis86:itab.obj - 0002:00015ff4 ??_C@_04ILFNDNMO@popa?$AA@ 100aaff4 udis86:itab.obj - 0002:00015ffc ??_C@_05HNMGBMCJ@popad?$AA@ 100aaffc udis86:itab.obj - 0002:00016004 ??_C@_06KOACKPNP@popcnt?$AA@ 100ab004 udis86:itab.obj - 0002:0001600c ??_C@_05HIIJAKKM@popfd?$AA@ 100ab00c udis86:itab.obj - 0002:00016014 ??_C@_05EPDMOMLI@popfq?$AA@ 100ab014 udis86:itab.obj - 0002:0001601c ??_C@_05BJGGELDO@popfw?$AA@ 100ab01c udis86:itab.obj - 0002:00016024 ??_C@_03OLAGBHBG@por?$AA@ 100ab024 udis86:itab.obj - 0002:00016028 ??_C@_08FCDJGKEM@prefetch?$AA@ 100ab028 udis86:itab.obj - 0002:00016034 ??_C@_0M@ENHAGFIJ@prefetchnta?$AA@ 100ab034 udis86:itab.obj - 0002:00016040 ??_C@_0L@HNBFCMAJ@prefetcht0?$AA@ 100ab040 udis86:itab.obj - 0002:0001604c ??_C@_0L@GEAOBNEI@prefetcht1?$AA@ 100ab04c udis86:itab.obj - 0002:00016058 ??_C@_0L@EPCDEOIL@prefetcht2?$AA@ 100ab058 udis86:itab.obj - 0002:00016064 ??_C@_06DIHGEBBD@psadbw?$AA@ 100ab064 udis86:itab.obj - 0002:0001606c ??_C@_06ONHPFNFA@pshufb?$AA@ 100ab06c udis86:itab.obj - 0002:00016074 ??_C@_06LLCFPKNG@pshufd?$AA@ 100ab074 udis86:itab.obj - 0002:0001607c ??_C@_07GGPEEEO@pshufhw?$AA@ 100ab07c udis86:itab.obj - 0002:00016084 ??_C@_07BGGOMJC@pshuflw?$AA@ 100ab084 udis86:itab.obj - 0002:0001608c ??_C@_06NKMKLLEE@pshufw?$AA@ 100ab08c udis86:itab.obj - 0002:00016094 ??_C@_06CEBMLKEM@psignb?$AA@ 100ab094 udis86:itab.obj - 0002:0001609c ??_C@_06HCEGBNMK@psignd?$AA@ 100ab09c udis86:itab.obj - 0002:000160a4 ??_C@_06BDKJFMFI@psignw?$AA@ 100ab0a4 udis86:itab.obj - 0002:000160ac ??_C@_05MKMBBNNO@pslld?$AA@ 100ab0ac udis86:itab.obj - 0002:000160b4 ??_C@_06FHIFHGHJ@pslldq?$AA@ 100ab0b4 udis86:itab.obj - 0002:000160bc ??_C@_05PNHEPLMK@psllq?$AA@ 100ab0bc udis86:itab.obj - 0002:000160c4 ??_C@_05KLCOFMEM@psllw?$AA@ 100ab0c4 udis86:itab.obj - 0002:000160cc ??_C@_05HCNPKOCB@psrad?$AA@ 100ab0cc udis86:itab.obj - 0002:000160d4 ??_C@_05BDDAOPLD@psraw?$AA@ 100ab0d4 udis86:itab.obj - 0002:000160dc ??_C@_05HKAHDNHC@psrld?$AA@ 100ab0dc udis86:itab.obj - 0002:000160e4 ??_C@_06IIFFFPJK@psrldq?$AA@ 100ab0e4 udis86:itab.obj - 0002:000160ec ??_C@_05ENLCNLGG@psrlq?$AA@ 100ab0ec udis86:itab.obj - 0002:000160f4 ??_C@_05BLOIHMOA@psrlw?$AA@ 100ab0f4 udis86:itab.obj - 0002:000160fc ??_C@_05LLBEIPEH@psubb?$AA@ 100ab0fc udis86:itab.obj - 0002:00016104 ??_C@_05ONEOCIMB@psubd?$AA@ 100ab104 udis86:itab.obj - 0002:0001610c ??_C@_05NKPLMONF@psubq?$AA@ 100ab10c udis86:itab.obj - 0002:00016114 ??_C@_06KCCMAANO@psubsb?$AA@ 100ab114 udis86:itab.obj - 0002:0001611c ??_C@_06JFJJOGMK@psubsw?$AA@ 100ab11c udis86:itab.obj - 0002:00016124 ??_C@_07OINEMGN@psubusb?$AA@ 100ab124 udis86:itab.obj - 0002:0001612c ??_C@_07DJDIKKHJ@psubusw?$AA@ 100ab12c udis86:itab.obj - 0002:00016134 ??_C@_05IMKBGJFD@psubw?$AA@ 100ab134 udis86:itab.obj - 0002:0001613c ??_C@_06JOEFOFIP@pswapd?$AA@ 100ab13c udis86:itab.obj - 0002:00016144 ??_C@_05FIFBHIFI@ptest?$AA@ 100ab144 udis86:itab.obj - 0002:0001614c ??_C@_09MMDMOCBC@punpckhbw?$AA@ 100ab14c udis86:itab.obj - 0002:00016158 ??_C@_09JOOLDJCG@punpckhdq?$AA@ 100ab158 udis86:itab.obj - 0002:00016164 ??_C@_0L@JJJNOAEF@punpckhqdq?$AA@ 100ab164 udis86:itab.obj - 0002:00016170 ??_C@_09LHDOMCBL@punpckhwd?$AA@ 100ab170 udis86:itab.obj - 0002:0001617c ??_C@_09EDFOHFEF@punpcklbw?$AA@ 100ab17c udis86:itab.obj - 0002:00016188 ??_C@_09BBIJKOHB@punpckldq?$AA@ 100ab188 udis86:itab.obj - 0002:00016194 ??_C@_0L@GMBNEGIF@punpcklqdq?$AA@ 100ab194 udis86:itab.obj - 0002:000161a0 ??_C@_09DIFMFFEM@punpcklwd?$AA@ 100ab1a0 udis86:itab.obj - 0002:000161ac ??_C@_04GHHNIPCF@push?$AA@ 100ab1ac udis86:itab.obj - 0002:000161b4 ??_C@_05DHIFPDCO@pusha?$AA@ 100ab1b4 udis86:itab.obj - 0002:000161bc ??_C@_06NNHACGJP@pushad?$AA@ 100ab1bc udis86:itab.obj - 0002:000161c4 ??_C@_06NIDPDABK@pushfd?$AA@ 100ab1c4 udis86:itab.obj - 0002:000161cc ??_C@_06OPIKNGAO@pushfq?$AA@ 100ab1cc udis86:itab.obj - 0002:000161d4 ??_C@_06LJNAHBII@pushfw?$AA@ 100ab1d4 udis86:itab.obj - 0002:000161dc ??_C@_04DAAGPHDH@pxor?$AA@ 100ab1dc udis86:itab.obj - 0002:000161e4 ??_C@_03JMFEBJCG@rcl?$AA@ 100ab1e4 udis86:itab.obj - 0002:000161e8 ??_C@_05ONJJBNPC@rcpps?$AA@ 100ab1e8 udis86:itab.obj - 0002:000161f0 ??_C@_05OPNPKDKL@rcpss?$AA@ 100ab1f0 udis86:itab.obj - 0002:000161f8 ??_C@_03EIBFCGPJ@rcr?$AA@ 100ab1f8 udis86:itab.obj - 0002:000161fc ??_C@_05OGJHMBLI@rdmsr?$AA@ 100ab1fc udis86:itab.obj - 0002:00016204 ??_C@_05BIFODJA@rdpmc?$AA@ 100ab204 udis86:itab.obj - 0002:0001620c ??_C@_06MJFBMHIP@rdrand?$AA@ 100ab20c udis86:itab.obj - 0002:00016214 ??_C@_05JIFPPKLN@rdtsc?$AA@ 100ab214 udis86:itab.obj - 0002:0001621c ??_C@_06JKHHOJDN@rdtscp?$AA@ 100ab21c udis86:itab.obj - 0002:00016224 ??_C@_03HOKODIMJ@rep?$AA@ 100ab224 udis86:itab.obj - 0002:00016228 ??_C@_05GIPJNDPP@repne?$AA@ 100ab228 udis86:itab.obj - 0002:00016230 ??_C@_03BKMCPNMN@ret?$AA@ 100ab230 udis86:itab.obj - 0002:00016234 ??_C@_04NGGILANB@retf?$AA@ 100ab234 udis86:itab.obj - 0002:0001623c ??_C@_03JFEOOAEC@rol?$AA@ 100ab23c udis86:itab.obj - 0002:00016240 ??_C@_03EBAPNPJN@ror?$AA@ 100ab240 udis86:itab.obj - 0002:00016244 ??_C@_07JFJPHJIO@roundpd?$AA@ 100ab244 udis86:itab.obj - 0002:0001624c ??_C@_07JABMPNBI@roundps?$AA@ 100ab24c udis86:itab.obj - 0002:00016254 ??_C@_07JHNJMHNH@roundsd?$AA@ 100ab254 udis86:itab.obj - 0002:0001625c ??_C@_07JCFKEDEB@roundss?$AA@ 100ab25c udis86:itab.obj - 0002:00016264 ??_C@_03JJGJILBH@rsm?$AA@ 100ab264 udis86:itab.obj - 0002:00016268 ??_C@_07FOPKGEKI@rsqrtps?$AA@ 100ab268 udis86:itab.obj - 0002:00016270 ??_C@_07FMLMNKPB@rsqrtss?$AA@ 100ab270 udis86:itab.obj - 0002:00016278 ??_C@_04HBFGFECC@sahf?$AA@ 100ab278 udis86:itab.obj - 0002:00016280 ??_C@_04LCIAILL@salc?$AA@ 100ab280 udis86:itab.obj - 0002:00016288 ??_C@_03PDCNJFPC@sar?$AA@ 100ab288 udis86:itab.obj - 0002:0001628c ??_C@_03LLKJDJPK@sbb?$AA@ 100ab28c udis86:itab.obj - 0002:00016290 ??_C@_05JPPPGDOE@scasb?$AA@ 100ab290 udis86:itab.obj - 0002:00016298 ??_C@_05MJKFMEGC@scasd?$AA@ 100ab298 udis86:itab.obj - 0002:000162a0 ??_C@_05POBACCHG@scasq?$AA@ 100ab2a0 udis86:itab.obj - 0002:000162a8 ??_C@_05KIEKIFPA@scasw?$AA@ 100ab2a8 udis86:itab.obj - 0002:000162b0 ??_C@_04KEEJAPKG@seta?$AA@ 100ab2b0 udis86:itab.obj - 0002:000162b8 ??_C@_05CHJLNADA@setae?$AA@ 100ab2b8 udis86:itab.obj - 0002:000162c0 ??_C@_04IPGEFMGF@setb?$AA@ 100ab2c0 udis86:itab.obj - 0002:000162c8 ??_C@_05CFNNGOGJ@setbe?$AA@ 100ab2c8 udis86:itab.obj - 0002:000162d0 ??_C@_04PCBDKICA@setg?$AA@ 100ab2d0 udis86:itab.obj - 0002:000162d8 ??_C@_05CDBGKMIC@setge?$AA@ 100ab2d8 udis86:itab.obj - 0002:000162e0 ??_C@_04BBOHHBOL@setl?$AA@ 100ab2e0 udis86:itab.obj - 0002:000162e8 ??_C@_05CPEDEDGD@setle?$AA@ 100ab2e8 udis86:itab.obj - 0002:000162f0 ??_C@_05NGCIHPIH@setno?$AA@ 100ab2f0 udis86:itab.obj - 0002:000162f8 ??_C@_05BLHCHBBJ@setnp?$AA@ 100ab2f8 udis86:itab.obj - 0002:00016300 ??_C@_05DAFPCCNK@setns?$AA@ 100ab300 udis86:itab.obj - 0002:00016308 ??_C@_05OBJNJJJD@setnz?$AA@ 100ab308 udis86:itab.obj - 0002:00016310 ??_C@_04DKMKCCCI@seto?$AA@ 100ab310 udis86:itab.obj - 0002:00016318 ??_C@_04PHJACMLG@setp?$AA@ 100ab318 udis86:itab.obj - 0002:00016320 ??_C@_04NMLNHPHF@sets?$AA@ 100ab320 udis86:itab.obj - 0002:00016328 ??_C@_04NHPMEDM@setz?$AA@ 100ab328 udis86:itab.obj - 0002:00016330 ??_C@_06LJIOJEOG@sfence?$AA@ 100ab330 udis86:itab.obj - 0002:00016338 ??_C@_04CFNDICEJ@sgdt?$AA@ 100ab338 udis86:itab.obj - 0002:00016340 ??_C@_03CILNJBKC@shl?$AA@ 100ab340 udis86:itab.obj - 0002:00016344 ??_C@_04DJGBNBPG@shld?$AA@ 100ab344 udis86:itab.obj - 0002:0001634c ??_C@_03PMPMKOHN@shr?$AA@ 100ab34c udis86:itab.obj - 0002:00016350 ??_C@_04CPNJFPIM@shrd?$AA@ 100ab350 udis86:itab.obj - 0002:00016358 ??_C@_06CBKLGGJD@shufpd?$AA@ 100ab358 udis86:itab.obj - 0002:00016360 ??_C@_06CECIOCAF@shufps?$AA@ 100ab360 udis86:itab.obj - 0002:00016368 ??_C@_04MFAMPFHK@sidt?$AA@ 100ab368 udis86:itab.obj - 0002:00016370 ??_C@_06JOKOMMPP@skinit?$AA@ 100ab370 udis86:itab.obj - 0002:00016378 ??_C@_04PCNCAFEI@sldt?$AA@ 100ab378 udis86:itab.obj - 0002:00016380 ??_C@_04HICKIEBL@smsw?$AA@ 100ab380 udis86:itab.obj - 0002:00016388 ??_C@_06ENECHGME@sqrtpd?$AA@ 100ab388 udis86:itab.obj - 0002:00016390 ??_C@_06EIMBPCFC@sqrtps?$AA@ 100ab390 udis86:itab.obj - 0002:00016398 ??_C@_06EPAEMIJN@sqrtsd?$AA@ 100ab398 udis86:itab.obj - 0002:000163a0 ??_C@_06EKIHEMAL@sqrtss?$AA@ 100ab3a0 udis86:itab.obj - 0002:000163a8 ??_C@_03LKBJNHHJ@stc?$AA@ 100ab3a8 udis86:itab.obj - 0002:000163ac ??_C@_03PFFIEBLO@std?$AA@ 100ab3ac udis86:itab.obj - 0002:000163b0 ??_C@_04JKFFKIHN@stgi?$AA@ 100ab3b0 udis86:itab.obj - 0002:000163b8 ??_C@_03EAPGDPPD@sti?$AA@ 100ab3b8 udis86:itab.obj - 0002:000163bc ??_C@_07LPMAGAMH@stmxcsr?$AA@ 100ab3bc udis86:itab.obj - 0002:000163c4 ??_C@_05KNOAFPEF@stosb?$AA@ 100ab3c4 udis86:itab.obj - 0002:000163cc ??_C@_05PLLKPIMD@stosd?$AA@ 100ab3cc udis86:itab.obj - 0002:000163d4 ??_C@_05MMAPBONH@stosq?$AA@ 100ab3d4 udis86:itab.obj - 0002:000163dc ??_C@_05JKFFLJFB@stosw?$AA@ 100ab3dc udis86:itab.obj - 0002:000163e4 ??_C@_03OJMAPEGJ@str?$AA@ 100ab3e4 udis86:itab.obj - 0002:000163e8 ??_C@_03KCMAIMAP@sub?$AA@ 100ab3e8 udis86:itab.obj - 0002:000163ec ??_C@_05DGPGLHPH@subpd?$AA@ 100ab3ec udis86:itab.obj - 0002:000163f4 ??_C@_05DDHFDDGB@subps?$AA@ 100ab3f4 udis86:itab.obj - 0002:000163fc ??_C@_05DELAAJKO@subsd?$AA@ 100ab3fc udis86:itab.obj - 0002:00016404 ??_C@_05DBDDINDI@subss?$AA@ 100ab404 udis86:itab.obj - 0002:0001640c ??_C@_06CPNDNOLP@swapgs?$AA@ 100ab40c udis86:itab.obj - 0002:00016414 ??_C@_07JJMJNHGG@syscall?$AA@ 100ab414 udis86:itab.obj - 0002:0001641c ??_C@_08HHDECGPN@sysenter?$AA@ 100ab41c udis86:itab.obj - 0002:00016428 ??_C@_07LPEIGAGB@sysexit?$AA@ 100ab428 udis86:itab.obj - 0002:00016430 ??_C@_06OJDFPBAP@sysret?$AA@ 100ab430 udis86:itab.obj - 0002:00016438 ??_C@_04CEJDCDCH@test?$AA@ 100ab438 udis86:itab.obj - 0002:00016440 ??_C@_07ENDLCHEK@ucomisd?$AA@ 100ab440 udis86:itab.obj - 0002:00016448 ??_C@_07EILIKDNM@ucomiss?$AA@ 100ab448 udis86:itab.obj - 0002:00016450 ??_C@_03CAPEEHMA@ud2?$AA@ 100ab450 udis86:itab.obj - 0002:00016454 ??_C@_08EBLLCNNO@unpckhpd?$AA@ 100ab454 udis86:itab.obj - 0002:00016460 ??_C@_08EEDIKJEI@unpckhps?$AA@ 100ab460 udis86:itab.obj - 0002:0001646c ??_C@_08MONJLKIJ@unpcklpd?$AA@ 100ab46c udis86:itab.obj - 0002:00016478 ??_C@_08MLFKDOBP@unpcklps?$AA@ 100ab478 udis86:itab.obj - 0002:00016484 ??_C@_06KDBFGOEF@vaddpd?$AA@ 100ab484 udis86:itab.obj - 0002:0001648c ??_C@_06KGJGOKND@vaddps?$AA@ 100ab48c udis86:itab.obj - 0002:00016494 ??_C@_06KBFDNABM@vaddsd?$AA@ 100ab494 udis86:itab.obj - 0002:0001649c ??_C@_06KENAFEIK@vaddss?$AA@ 100ab49c udis86:itab.obj - 0002:000164a4 ??_C@_09PPKJNIKN@vaddsubpd?$AA@ 100ab4a4 udis86:itab.obj - 0002:000164b0 ??_C@_09PKCKFMDL@vaddsubps?$AA@ 100ab4b0 udis86:itab.obj - 0002:000164bc ??_C@_07IPOAKKNN@vaesdec?$AA@ 100ab4bc udis86:itab.obj - 0002:000164c4 ??_C@_0M@OBBELEHO@vaesdeclast?$AA@ 100ab4c4 udis86:itab.obj - 0002:000164d0 ??_C@_07DLAJCCFJ@vaesenc?$AA@ 100ab4d0 udis86:itab.obj - 0002:000164d8 ??_C@_0M@CPLJOABK@vaesenclast?$AA@ 100ab4d8 udis86:itab.obj - 0002:000164e4 ??_C@_07HDJJCDLI@vaesimc?$AA@ 100ab4e4 udis86:itab.obj - 0002:000164ec ??_C@_0BB@PMMLANHC@vaeskeygenassist?$AA@ 100ab4ec udis86:itab.obj - 0002:00016500 ??_C@_07NPGAGLE@vandnpd?$AA@ 100ab500 udis86:itab.obj - 0002:00016508 ??_C@_07IHFICCC@vandnps?$AA@ 100ab508 udis86:itab.obj - 0002:00016510 ??_C@_06OJKFHGOE@vandpd?$AA@ 100ab510 udis86:itab.obj - 0002:00016518 ??_C@_06OMCGPCHC@vandps?$AA@ 100ab518 udis86:itab.obj - 0002:00016520 ??_C@_08NLIICBDL@vblendpd?$AA@ 100ab520 udis86:itab.obj - 0002:0001652c ??_C@_08NOALKFKN@vblendps?$AA@ 100ab52c udis86:itab.obj - 0002:00016538 ??_C@_09IOAFJLNG@vblendvpd?$AA@ 100ab538 udis86:itab.obj - 0002:00016544 ??_C@_09ILIGBPEA@vblendvps?$AA@ 100ab544 udis86:itab.obj - 0002:00016550 ??_C@_0N@MDBHDICD@vbroadcastsd?$AA@ 100ab550 udis86:itab.obj - 0002:00016560 ??_C@_0N@MGJELMLF@vbroadcastss?$AA@ 100ab560 udis86:itab.obj - 0002:00016570 ??_C@_06DMLGGNPH@vcmppd?$AA@ 100ab570 udis86:itab.obj - 0002:00016578 ??_C@_06DJDFOJGB@vcmpps?$AA@ 100ab578 udis86:itab.obj - 0002:00016580 ??_C@_06DOPANDKO@vcmpsd?$AA@ 100ab580 udis86:itab.obj - 0002:00016588 ??_C@_06DLHDFHDI@vcmpss?$AA@ 100ab588 udis86:itab.obj - 0002:00016590 ??_C@_07MDLECAKJ@vcomisd?$AA@ 100ab590 udis86:itab.obj - 0002:00016598 ??_C@_07MGDHKEDP@vcomiss?$AA@ 100ab598 udis86:itab.obj - 0002:000165a0 ??_C@_09KIEBMBPC@vcvtdq2pd?$AA@ 100ab5a0 udis86:itab.obj - 0002:000165ac ??_C@_09KNMCEFGE@vcvtdq2ps?$AA@ 100ab5ac udis86:itab.obj - 0002:000165b8 ??_C@_09LEJMHEDF@vcvtpd2dq?$AA@ 100ab5b8 udis86:itab.obj - 0002:000165c4 ??_C@_09JNIFBNBL@vcvtpd2ps?$AA@ 100ab5c4 udis86:itab.obj - 0002:000165d0 ??_C@_09GGFMDPKH@vcvtps2dq?$AA@ 100ab5d0 udis86:itab.obj - 0002:000165dc ??_C@_09EKMGNCBP@vcvtps2pd?$AA@ 100ab5dc udis86:itab.obj - 0002:000165e8 ??_C@_09KJHKCLDH@vcvtsd2si?$AA@ 100ab5e8 udis86:itab.obj - 0002:000165f4 ??_C@_09BJFHNBOM@vcvtsd2ss?$AA@ 100ab5f4 udis86:itab.obj - 0002:00016600 ??_C@_09OEEEJBML@vcvtsi2sd?$AA@ 100ab600 udis86:itab.obj - 0002:0001660c ??_C@_09OBMHBFFN@vcvtsi2ss?$AA@ 100ab60c udis86:itab.obj - 0002:00016618 ??_C@_09MOBEBOOI@vcvtss2sd?$AA@ 100ab618 udis86:itab.obj - 0002:00016624 ??_C@_09HLLKGAKF@vcvtss2si?$AA@ 100ab624 udis86:itab.obj - 0002:00016630 ??_C@_0L@EPPDHPPA@vcvttpd2dq?$AA@ 100ab630 udis86:itab.obj - 0002:0001663c ??_C@_0L@JNDDDEGC@vcvttps2dq?$AA@ 100ab63c udis86:itab.obj - 0002:00016648 ??_C@_0L@FCBFCAPC@vcvttsd2si?$AA@ 100ab648 udis86:itab.obj - 0002:00016654 ??_C@_0L@IANFGLGA@vcvttss2si?$AA@ 100ab654 udis86:itab.obj - 0002:00016660 ??_C@_06PBFIKEFD@vdivpd?$AA@ 100ab660 udis86:itab.obj - 0002:00016668 ??_C@_06PENLCAMF@vdivps?$AA@ 100ab668 udis86:itab.obj - 0002:00016670 ??_C@_06PDBOBKAK@vdivsd?$AA@ 100ab670 udis86:itab.obj - 0002:00016678 ??_C@_06PGJNJOJM@vdivss?$AA@ 100ab678 udis86:itab.obj - 0002:00016680 ??_C@_05MBKLAHGC@vdppd?$AA@ 100ab680 udis86:itab.obj - 0002:00016688 ??_C@_05MECIIDPE@vdpps?$AA@ 100ab688 udis86:itab.obj - 0002:00016690 ??_C@_04JMLLNPG@verr?$AA@ 100ab690 udis86:itab.obj - 0002:00016698 ??_C@_04HELMEJLD@verw?$AA@ 100ab698 udis86:itab.obj - 0002:000166a0 ??_C@_0N@GHEEFFJN@vextractf128?$AA@ 100ab6a0 udis86:itab.obj - 0002:000166b0 ??_C@_0L@EDDICPO@vextractps?$AA@ 100ab6b0 udis86:itab.obj - 0002:000166bc ??_C@_07GIFBBNG@vhaddpd?$AA@ 100ab6bc udis86:itab.obj - 0002:000166c4 ??_C@_07DAGJFEA@vhaddps?$AA@ 100ab6c4 udis86:itab.obj - 0002:000166cc ??_C@_07DAHAFDKI@vhsubpd?$AA@ 100ab6cc udis86:itab.obj - 0002:000166d4 ??_C@_07DFPDNHDO@vhsubps?$AA@ 100ab6d4 udis86:itab.obj - 0002:000166dc ??_C@_0M@HPBOMOMM@vinsertf128?$AA@ 100ab6dc udis86:itab.obj - 0002:000166e8 ??_C@_09GAJGHFHO@vinsertps?$AA@ 100ab6e8 udis86:itab.obj - 0002:000166f4 ??_C@_06ENJADELM@vlddqu?$AA@ 100ab6f4 udis86:itab.obj - 0002:000166fc ??_C@_0M@HIPJIAEN@vmaskmovdqu?$AA@ 100ab6fc udis86:itab.obj - 0002:00016708 ??_C@_0L@PCLMIHED@vmaskmovpd?$AA@ 100ab708 udis86:itab.obj - 0002:00016714 ??_C@_0L@PHDPADNF@vmaskmovps?$AA@ 100ab714 udis86:itab.obj - 0002:00016720 ??_C@_06GPIMJGJ@vmaxpd?$AA@ 100ab720 udis86:itab.obj - 0002:00016728 ??_C@_06DHLENPP@vmaxps?$AA@ 100ab728 udis86:itab.obj - 0002:00016730 ??_C@_06ELOHHDA@vmaxsd?$AA@ 100ab730 udis86:itab.obj - 0002:00016738 ??_C@_06BDNPDKG@vmaxss?$AA@ 100ab738 udis86:itab.obj - 0002:00016740 ??_C@_06IMMMFCAA@vmcall?$AA@ 100ab740 udis86:itab.obj - 0002:00016748 ??_C@_07JAMFMPEO@vmclear?$AA@ 100ab748 udis86:itab.obj - 0002:00016750 ??_C@_06EDPKIKOL@vminpd?$AA@ 100ab750 udis86:itab.obj - 0002:00016758 ??_C@_06EGHJAOHN@vminps?$AA@ 100ab758 udis86:itab.obj - 0002:00016760 ??_C@_06EBLMDELC@vminsd?$AA@ 100ab760 udis86:itab.obj - 0002:00016768 ??_C@_06EEDPLACE@vminss?$AA@ 100ab768 udis86:itab.obj - 0002:00016770 ??_C@_08FDGBGFFD@vmlaunch?$AA@ 100ab770 udis86:itab.obj - 0002:0001677c ??_C@_06COECKLLJ@vmload?$AA@ 100ab77c udis86:itab.obj - 0002:00016784 ??_C@_07HLGEACDE@vmmcall?$AA@ 100ab784 udis86:itab.obj - 0002:0001678c ??_C@_07EDEJGLNB@vmovapd?$AA@ 100ab78c udis86:itab.obj - 0002:00016794 ??_C@_07EGMKOPEH@vmovaps?$AA@ 100ab794 udis86:itab.obj - 0002:0001679c ??_C@_05MAEMFOGI@vmovd?$AA@ 100ab79c udis86:itab.obj - 0002:000167a4 ??_C@_08NENHFECA@vmovddup?$AA@ 100ab7a4 udis86:itab.obj - 0002:000167b0 ??_C@_07ICCAFJB@vmovdqa?$AA@ 100ab7b0 udis86:itab.obj - 0002:000167b8 ??_C@_07CGIMNCME@vmovdqu?$AA@ 100ab7b8 udis86:itab.obj - 0002:000167c0 ??_C@_08PJHFAAOG@vmovhlps?$AA@ 100ab7c0 udis86:itab.obj - 0002:000167cc ??_C@_07DOEBCEFL@vmovhpd?$AA@ 100ab7cc udis86:itab.obj - 0002:000167d4 ??_C@_07DLMCKAMN@vmovhps?$AA@ 100ab7d4 udis86:itab.obj - 0002:000167dc ??_C@_08IDJHDBHB@vmovlhps?$AA@ 100ab7dc udis86:itab.obj - 0002:000167e8 ??_C@_07LBCDLDAM@vmovlpd?$AA@ 100ab7e8 udis86:itab.obj - 0002:000167f0 ??_C@_07LEKADHJK@vmovlps?$AA@ 100ab7f0 udis86:itab.obj - 0002:000167f8 ??_C@_09HPCCGDMJ@vmovmskpd?$AA@ 100ab7f8 udis86:itab.obj - 0002:00016804 ??_C@_09HKKBOHFP@vmovmskps?$AA@ 100ab804 udis86:itab.obj - 0002:00016810 ??_C@_08MKIBODBI@vmovntdq?$AA@ 100ab810 udis86:itab.obj - 0002:0001681c ??_C@_09GPEAEDFD@vmovntdqa?$AA@ 100ab81c udis86:itab.obj - 0002:00016828 ??_C@_08OGBLAOKA@vmovntpd?$AA@ 100ab828 udis86:itab.obj - 0002:00016834 ??_C@_08ODJIIKDG@vmovntps?$AA@ 100ab834 udis86:itab.obj - 0002:00016840 ??_C@_05PHPJLIHM@vmovq?$AA@ 100ab840 udis86:itab.obj - 0002:00016848 ??_C@_06FLFBLOGC@vmovsd?$AA@ 100ab848 udis86:itab.obj - 0002:00016850 ??_C@_09CBMIKDFJ@vmovshdup?$AA@ 100ab850 udis86:itab.obj - 0002:0001685c ??_C@_09NEEIAFJJ@vmovsldup?$AA@ 100ab85c udis86:itab.obj - 0002:00016868 ??_C@_06FONCDKPE@vmovss?$AA@ 100ab868 udis86:itab.obj - 0002:00016870 ??_C@_07JMDCKLBJ@vmovupd?$AA@ 100ab870 udis86:itab.obj - 0002:00016878 ??_C@_07JJLBCPIP@vmovups?$AA@ 100ab878 udis86:itab.obj - 0002:00016880 ??_C@_08ILEEIFPG@vmpsadbw?$AA@ 100ab880 udis86:itab.obj - 0002:0001688c ??_C@_07JMJJCKJK@vmptrld?$AA@ 100ab88c udis86:itab.obj - 0002:00016894 ??_C@_07MBCBNMIG@vmptrst?$AA@ 100ab894 udis86:itab.obj - 0002:0001689c ??_C@_06JOCPGCDO@vmread?$AA@ 100ab89c udis86:itab.obj - 0002:000168a4 ??_C@_08EIHJLGKP@vmresume?$AA@ 100ab8a4 udis86:itab.obj - 0002:000168b0 ??_C@_05JKJGIHPJ@vmrun?$AA@ 100ab8b0 udis86:itab.obj - 0002:000168b8 ??_C@_06CMFPFIGN@vmsave?$AA@ 100ab8b8 udis86:itab.obj - 0002:000168c0 ??_C@_06EMODDIOD@vmulpd?$AA@ 100ab8c0 udis86:itab.obj - 0002:000168c8 ??_C@_06EJGALMHF@vmulps?$AA@ 100ab8c8 udis86:itab.obj - 0002:000168d0 ??_C@_06EOKFIGLK@vmulsd?$AA@ 100ab8d0 udis86:itab.obj - 0002:000168d8 ??_C@_06ELCGACCM@vmulss?$AA@ 100ab8d8 udis86:itab.obj - 0002:000168e0 ??_C@_07ICOKPMJF@vmwrite?$AA@ 100ab8e0 udis86:itab.obj - 0002:000168e8 ??_C@_06IMFLOOPM@vmxoff?$AA@ 100ab8e8 udis86:itab.obj - 0002:000168f0 ??_C@_05OEJKEBDL@vmxon?$AA@ 100ab8f0 udis86:itab.obj - 0002:000168f8 ??_C@_05BMHCPOPI@vorpd?$AA@ 100ab8f8 udis86:itab.obj - 0002:00016900 ??_C@_05BJPBHKGO@vorps?$AA@ 100ab900 udis86:itab.obj - 0002:00016908 ??_C@_06NCAIHGAI@vpabsb?$AA@ 100ab908 udis86:itab.obj - 0002:00016910 ??_C@_06IEFCNBIO@vpabsd?$AA@ 100ab910 udis86:itab.obj - 0002:00016918 ??_C@_06OFLNJABM@vpabsw?$AA@ 100ab918 udis86:itab.obj - 0002:00016920 ??_C@_09DLPFLBOH@vpackssdw?$AA@ 100ab920 udis86:itab.obj - 0002:0001692c ??_C@_09BCCAEKNK@vpacksswb?$AA@ 100ab92c udis86:itab.obj - 0002:00016938 ??_C@_09LELFEEEH@vpackusdw?$AA@ 100ab938 udis86:itab.obj - 0002:00016944 ??_C@_09JNGALPHK@vpackuswb?$AA@ 100ab944 udis86:itab.obj - 0002:00016950 ??_C@_06OOAKJMCB@vpaddb?$AA@ 100ab950 udis86:itab.obj - 0002:00016958 ??_C@_06LIFADLKH@vpaddd?$AA@ 100ab958 udis86:itab.obj - 0002:00016960 ??_C@_06IPOFNNLD@vpaddq?$AA@ 100ab960 udis86:itab.obj - 0002:00016968 ??_C@_07GKINKKA@vpaddsb?$AA@ 100ab968 udis86:itab.obj - 0002:00016970 ??_C@_07DBBNDMLE@vpaddsw?$AA@ 100ab970 udis86:itab.obj - 0002:00016978 ??_C@_08LJJEJEIM@vpaddusb?$AA@ 100ab978 udis86:itab.obj - 0002:00016984 ??_C@_08IOCBHCJI@vpaddusw?$AA@ 100ab984 udis86:itab.obj - 0002:00016990 ??_C@_06NJLPHKDF@vpaddw?$AA@ 100ab990 udis86:itab.obj - 0002:00016998 ??_C@_08JHLGPDG@vpalignr?$AA@ 100ab998 udis86:itab.obj - 0002:000169a4 ??_C@_05KKNGIIKA@vpand?$AA@ 100ab9a4 udis86:itab.obj - 0002:000169ac ??_C@_06CNACDDEJ@vpandn?$AA@ 100ab9ac udis86:itab.obj - 0002:000169b4 ??_C@_06BGFMLNGM@vpavgb?$AA@ 100ab9b4 udis86:itab.obj - 0002:000169bc ??_C@_06CBOJFLHI@vpavgw?$AA@ 100ab9bc udis86:itab.obj - 0002:000169c4 ??_C@_09EJBAKIC@vpblendvb?$AA@ 100ab9c4 udis86:itab.obj - 0002:000169d0 ??_C@_08PAILKGLD@vpblendw?$AA@ 100ab9d0 udis86:itab.obj - 0002:000169dc ??_C@_0L@NBDJJMAH@vpclmulqdq?$AA@ 100ab9dc udis86:itab.obj - 0002:000169e8 ??_C@_08MPPJGGNO@vpcmpeqb?$AA@ 100ab9e8 udis86:itab.obj - 0002:000169f4 ??_C@_08JJKDMBFI@vpcmpeqd?$AA@ 100ab9f4 udis86:itab.obj - 0002:00016a00 ??_C@_08KOBGCHEM@vpcmpeqq?$AA@ 100aba00 udis86:itab.obj - 0002:00016a0c ??_C@_08PIEMIAMK@vpcmpeqw?$AA@ 100aba0c udis86:itab.obj - 0002:00016a18 ??_C@_0L@FHJCNEPG@vpcmpestri?$AA@ 100aba18 udis86:itab.obj - 0002:00016a24 ??_C@_0L@DDPOBBPC@vpcmpestrm?$AA@ 100aba24 udis86:itab.obj - 0002:00016a30 ??_C@_08GDDLGMLO@vpcmpgtb?$AA@ 100aba30 udis86:itab.obj - 0002:00016a3c ??_C@_08DFGBMLDI@vpcmpgtd?$AA@ 100aba3c udis86:itab.obj - 0002:00016a48 ??_C@_08CNECNCM@vpcmpgtq?$AA@ 100aba48 udis86:itab.obj - 0002:00016a54 ??_C@_08FEIOIKKK@vpcmpgtw?$AA@ 100aba54 udis86:itab.obj - 0002:00016a60 ??_C@_0L@CAFABEIN@vpcmpistri?$AA@ 100aba60 udis86:itab.obj - 0002:00016a6c ??_C@_0L@EEDMNBIJ@vpcmpistrm?$AA@ 100aba6c udis86:itab.obj - 0002:00016a78 ??_C@_0L@EBGBBKJC@vperm2f128?$AA@ 100aba78 udis86:itab.obj - 0002:00016a84 ??_C@_09PAKFEJKO@vpermilpd?$AA@ 100aba84 udis86:itab.obj - 0002:00016a90 ??_C@_09PFCGMNDI@vpermilps?$AA@ 100aba90 udis86:itab.obj - 0002:00016a9c ??_C@_07GJPCNPJN@vpextrb?$AA@ 100aba9c udis86:itab.obj - 0002:00016aa4 ??_C@_07DPKIHIBL@vpextrd?$AA@ 100abaa4 udis86:itab.obj - 0002:00016aac ??_C@_07IBNJOAP@vpextrq?$AA@ 100abaac udis86:itab.obj - 0002:00016ab4 ??_C@_07FOEHDJIJ@vpextrw?$AA@ 100abab4 udis86:itab.obj - 0002:00016abc ??_C@_07KGHEBGGL@vphaddd?$AA@ 100ababc udis86:itab.obj - 0002:00016ac4 ??_C@_08KDNBJGAC@vphaddsw?$AA@ 100abac4 udis86:itab.obj - 0002:00016ad0 ??_C@_07MHJLFHPJ@vphaddw?$AA@ 100abad0 udis86:itab.obj - 0002:00016ad8 ??_C@_0M@JBMAEGIN@vphminposuw?$AA@ 100abad8 udis86:itab.obj - 0002:00016ae4 ??_C@_07FAHMJOMB@vphsubd?$AA@ 100abae4 udis86:itab.obj - 0002:00016aec ??_C@_08JFCENEHM@vphsubsw?$AA@ 100abaec udis86:itab.obj - 0002:00016af8 ??_C@_07DBJDNPFD@vphsubw?$AA@ 100abaf8 udis86:itab.obj - 0002:00016b00 ??_C@_07GMEHEFHN@vpinsrb?$AA@ 100abb00 udis86:itab.obj - 0002:00016b08 ??_C@_07DKBNOCPL@vpinsrd?$AA@ 100abb08 udis86:itab.obj - 0002:00016b10 ??_C@_07NKIAEOP@vpinsrq?$AA@ 100abb10 udis86:itab.obj - 0002:00016b18 ??_C@_07FLPCKDGJ@vpinsrw?$AA@ 100abb18 udis86:itab.obj - 0002:00016b20 ??_C@_0L@LPIDNJFI@vpmaddubsw?$AA@ 100abb20 udis86:itab.obj - 0002:00016b2c ??_C@_08JHAPFAOL@vpmaddwd?$AA@ 100abb2c udis86:itab.obj - 0002:00016b38 ??_C@_07KDEFHNIM@vpmaxsb?$AA@ 100abb38 udis86:itab.obj - 0002:00016b40 ??_C@_07PFBPNKAK@vpmaxsd?$AA@ 100abb40 udis86:itab.obj - 0002:00016b48 ??_C@_07JEPAJLJI@vpmaxsw?$AA@ 100abb48 udis86:itab.obj - 0002:00016b50 ??_C@_07KHMIABDO@vpmaxub?$AA@ 100abb50 udis86:itab.obj - 0002:00016b58 ??_C@_07PBJCKGLI@vpmaxud?$AA@ 100abb58 udis86:itab.obj - 0002:00016b60 ??_C@_07JAHNOHCK@vpmaxuw?$AA@ 100abb60 udis86:itab.obj - 0002:00016b68 ??_C@_07OGEHDOAO@vpminsb?$AA@ 100abb68 udis86:itab.obj - 0002:00016b70 ??_C@_07LABNJJII@vpminsd?$AA@ 100abb70 udis86:itab.obj - 0002:00016b78 ??_C@_07NBPCNIBK@vpminsw?$AA@ 100abb78 udis86:itab.obj - 0002:00016b80 ??_C@_07OCMKECLM@vpminub?$AA@ 100abb80 udis86:itab.obj - 0002:00016b88 ??_C@_07LEJAOFDK@vpminud?$AA@ 100abb88 udis86:itab.obj - 0002:00016b90 ??_C@_07NFHPKEKI@vpminuw?$AA@ 100abb90 udis86:itab.obj - 0002:00016b98 ??_C@_09PHILFHFD@vpmovmskb?$AA@ 100abb98 udis86:itab.obj - 0002:00016ba4 ??_C@_09KGNBGFLI@vpmovsxbd?$AA@ 100abba4 udis86:itab.obj - 0002:00016bb0 ??_C@_09JBGEIDKM@vpmovsxbq?$AA@ 100abbb0 udis86:itab.obj - 0002:00016bbc ??_C@_09MHDOCECK@vpmovsxbw?$AA@ 100abbbc udis86:itab.obj - 0002:00016bc8 ??_C@_09LMDMAECD@vpmovsxwd?$AA@ 100abbc8 udis86:itab.obj - 0002:00016bd4 ??_C@_09ILIJOCDH@vpmovsxwq?$AA@ 100abbd4 udis86:itab.obj - 0002:00016be0 ??_C@_09KLMBAHMJ@vpmovzxbd?$AA@ 100abbe0 udis86:itab.obj - 0002:00016bec ??_C@_09JMHEOBNN@vpmovzxbq?$AA@ 100abbec udis86:itab.obj - 0002:00016bf8 ??_C@_09MKCOEGFL@vpmovzxbw?$AA@ 100abbf8 udis86:itab.obj - 0002:00016c04 ??_C@_09JIPJJNGP@vpmovzxdq?$AA@ 100abc04 udis86:itab.obj - 0002:00016c10 ??_C@_09LBCMGGFC@vpmovzxwd?$AA@ 100abc10 udis86:itab.obj - 0002:00016c1c ??_C@_09IGJJIAEG@vpmovzxwq?$AA@ 100abc1c udis86:itab.obj - 0002:00016c28 ??_C@_07JBNIHIGB@vpmuldq?$AA@ 100abc28 udis86:itab.obj - 0002:00016c30 ??_C@_09MDLEEJOH@vpmulhrsw?$AA@ 100abc30 udis86:itab.obj - 0002:00016c3c ??_C@_08BHIFHBOD@vpmulhuw?$AA@ 100abc3c udis86:itab.obj - 0002:00016c48 ??_C@_07MOJICGID@vpmulhw?$AA@ 100abc48 udis86:itab.obj - 0002:00016c50 ??_C@_07KIHOMPMN@vpmulld?$AA@ 100abc50 udis86:itab.obj - 0002:00016c58 ??_C@_07MJJBIOFP@vpmullw?$AA@ 100abc58 udis86:itab.obj - 0002:00016c60 ??_C@_04HKPCCKHI@vpor?$AA@ 100abc60 udis86:itab.obj - 0002:00016c68 ??_C@_07KKAHNJBD@vpsadbw?$AA@ 100abc68 udis86:itab.obj - 0002:00016c70 ??_C@_07HPAOMFFA@vpshufb?$AA@ 100abc70 udis86:itab.obj - 0002:00016c78 ??_C@_07CJFEGCNG@vpshufd?$AA@ 100abc78 udis86:itab.obj - 0002:00016c80 ??_C@_08GPNDFNG@vpshufhw?$AA@ 100abc80 udis86:itab.obj - 0002:00016c8c ??_C@_08BPEJNAK@vpshuflw?$AA@ 100abc8c udis86:itab.obj - 0002:00016c98 ??_C@_07LGGNCCEM@vpsignb?$AA@ 100abc98 udis86:itab.obj - 0002:00016ca0 ??_C@_07OADHIFMK@vpsignd?$AA@ 100abca0 udis86:itab.obj - 0002:00016ca8 ??_C@_07IBNIMEFI@vpsignw?$AA@ 100abca8 udis86:itab.obj - 0002:00016cb0 ??_C@_06GJNHIGBC@vpslld?$AA@ 100abcb0 udis86:itab.obj - 0002:00016cb8 ??_C@_07MFPEOOHJ@vpslldq?$AA@ 100abcb8 udis86:itab.obj - 0002:00016cc0 ??_C@_06FOGCGAAG@vpsllq?$AA@ 100abcc0 udis86:itab.obj - 0002:00016cc8 ??_C@_06IDIMHIA@vpsllw?$AA@ 100abcc8 udis86:itab.obj - 0002:00016cd0 ??_C@_06NBMJDFON@vpsrad?$AA@ 100abcd0 udis86:itab.obj - 0002:00016cd8 ??_C@_06LACGHEHP@vpsraw?$AA@ 100abcd8 udis86:itab.obj - 0002:00016ce0 ??_C@_06NJBBKGLO@vpsrld?$AA@ 100abce0 udis86:itab.obj - 0002:00016ce8 ??_C@_07BKCEMHJK@vpsrldq?$AA@ 100abce8 udis86:itab.obj - 0002:00016cf0 ??_C@_06OOKEEAKK@vpsrlq?$AA@ 100abcf0 udis86:itab.obj - 0002:00016cf8 ??_C@_06LIPOOHCM@vpsrlw?$AA@ 100abcf8 udis86:itab.obj - 0002:00016d00 ??_C@_06BIACBEIL@vpsubb?$AA@ 100abd00 udis86:itab.obj - 0002:00016d08 ??_C@_06EOFILDAN@vpsubd?$AA@ 100abd08 udis86:itab.obj - 0002:00016d10 ??_C@_06HJONFFBJ@vpsubq?$AA@ 100abd10 udis86:itab.obj - 0002:00016d18 ??_C@_07DAFNJINO@vpsubsb?$AA@ 100abd18 udis86:itab.obj - 0002:00016d20 ??_C@_07HOIHOMK@vpsubsw?$AA@ 100abd20 udis86:itab.obj - 0002:00016d28 ??_C@_08OBPDNPF@vpsubusb?$AA@ 100abd28 udis86:itab.obj - 0002:00016d34 ??_C@_08DJKKNLOB@vpsubusw?$AA@ 100abd34 udis86:itab.obj - 0002:00016d40 ??_C@_06CPLHPCJP@vpsubw?$AA@ 100abd40 udis86:itab.obj - 0002:00016d48 ??_C@_06PLEHODJE@vptest?$AA@ 100abd48 udis86:itab.obj - 0002:00016d50 ??_C@_0L@FCKGKDDI@vpunpckhbw?$AA@ 100abd50 udis86:itab.obj - 0002:00016d5c ??_C@_0L@HBHIAM@vpunpckhdq?$AA@ 100abd5c udis86:itab.obj - 0002:00016d68 ??_C@_0M@ECLILDNC@vpunpckhqdq?$AA@ 100abd68 udis86:itab.obj - 0002:00016d74 ??_C@_0L@CJKEIDDB@vpunpckhwd?$AA@ 100abd74 udis86:itab.obj - 0002:00016d80 ??_C@_0L@NNMEDEGP@vpunpcklbw?$AA@ 100abd80 udis86:itab.obj - 0002:00016d8c ??_C@_0L@IPBDOPFL@vpunpckldq?$AA@ 100abd8c udis86:itab.obj - 0002:00016d98 ??_C@_0M@LHDIBFBC@vpunpcklqdq?$AA@ 100abd98 udis86:itab.obj - 0002:00016da4 ??_C@_0L@KGMGBEGG@vpunpcklwd?$AA@ 100abda4 udis86:itab.obj - 0002:00016db0 ??_C@_05JKJNEPFF@vpxor?$AA@ 100abdb0 udis86:itab.obj - 0002:00016db8 ??_C@_06EOIPIGDO@vrcpps?$AA@ 100abdb8 udis86:itab.obj - 0002:00016dc0 ??_C@_06EMMJDIGH@vrcpss?$AA@ 100abdc0 udis86:itab.obj - 0002:00016dc8 ??_C@_08JFANAIBG@vroundpd?$AA@ 100abdc8 udis86:itab.obj - 0002:00016dd4 ??_C@_08JAIOIMIA@vroundps?$AA@ 100abdd4 udis86:itab.obj - 0002:00016de0 ??_C@_08JHELLGEP@vroundsd?$AA@ 100abde0 udis86:itab.obj - 0002:00016dec ??_C@_08JCMIDCNJ@vroundss?$AA@ 100abdec udis86:itab.obj - 0002:00016df8 ??_C@_08FOGIBFDA@vrsqrtps?$AA@ 100abdf8 udis86:itab.obj - 0002:00016e04 ??_C@_08FMCOKLGJ@vrsqrtss?$AA@ 100abe04 udis86:itab.obj - 0002:00016e10 ??_C@_07LDNKPOJD@vshufpd?$AA@ 100abe10 udis86:itab.obj - 0002:00016e18 ??_C@_07LGFJHKAF@vshufps?$AA@ 100abe18 udis86:itab.obj - 0002:00016e20 ??_C@_07NPDDOOME@vsqrtpd?$AA@ 100abe20 udis86:itab.obj - 0002:00016e28 ??_C@_07NKLAGKFC@vsqrtps?$AA@ 100abe28 udis86:itab.obj - 0002:00016e30 ??_C@_07NNHFFAJN@vsqrtsd?$AA@ 100abe30 udis86:itab.obj - 0002:00016e38 ??_C@_07NIPGNEAL@vsqrtss?$AA@ 100abe38 udis86:itab.obj - 0002:00016e40 ??_C@_08LPFCBBFP@vstmxcsr?$AA@ 100abe40 udis86:itab.obj - 0002:00016e4c ??_C@_06JFOACMDL@vsubpd?$AA@ 100abe4c udis86:itab.obj - 0002:00016e54 ??_C@_06JAGDKIKN@vsubps?$AA@ 100abe54 udis86:itab.obj - 0002:00016e5c ??_C@_06JHKGJCGC@vsubsd?$AA@ 100abe5c udis86:itab.obj - 0002:00016e64 ??_C@_06JCCFBGPE@vsubss?$AA@ 100abe64 udis86:itab.obj - 0002:00016e6c ??_C@_07LPLDLJHH@vtestpd?$AA@ 100abe6c udis86:itab.obj - 0002:00016e74 ??_C@_07LKDADNOB@vtestps?$AA@ 100abe74 udis86:itab.obj - 0002:00016e7c ??_C@_08ENKJFGNC@vucomisd?$AA@ 100abe7c udis86:itab.obj - 0002:00016e88 ??_C@_08EICKNCEE@vucomiss?$AA@ 100abe88 udis86:itab.obj - 0002:00016e94 ??_C@_09LPGPKENJ@vunpckhpd?$AA@ 100abe94 udis86:itab.obj - 0002:00016ea0 ??_C@_09LKOMCAEP@vunpckhps?$AA@ 100abea0 udis86:itab.obj - 0002:00016eac ??_C@_09DAANDDIO@vunpcklpd?$AA@ 100abeac udis86:itab.obj - 0002:00016eb8 ??_C@_09DFIOLHBI@vunpcklps?$AA@ 100abeb8 udis86:itab.obj - 0002:00016ec4 ??_C@_06IFGOAEEE@vxorpd?$AA@ 100abec4 udis86:itab.obj - 0002:00016ecc ??_C@_06IAONIANC@vxorps?$AA@ 100abecc udis86:itab.obj - 0002:00016ed4 ??_C@_08CIMGHFML@vzeroall?$AA@ 100abed4 udis86:itab.obj - 0002:00016ee0 ??_C@_0L@HMOMGDGG@vzeroupper?$AA@ 100abee0 udis86:itab.obj - 0002:00016eec ??_C@_04PNOAOIAG@wait?$AA@ 100abeec udis86:itab.obj - 0002:00016ef4 ??_C@_06BAFGEPDI@wbinvd?$AA@ 100abef4 udis86:itab.obj - 0002:00016efc ??_C@_05FJPKDCCJ@wrmsr?$AA@ 100abefc udis86:itab.obj - 0002:00016f04 ??_C@_04DNKKPONF@xadd?$AA@ 100abf04 udis86:itab.obj - 0002:00016f0c ??_C@_04LFJEJMPJ@xchg?$AA@ 100abf0c udis86:itab.obj - 0002:00016f14 ??_C@_09CAOANIJI@xcryptcbc?$AA@ 100abf14 udis86:itab.obj - 0002:00016f20 ??_C@_09DOPCEBAF@xcryptcfb?$AA@ 100abf20 udis86:itab.obj - 0002:00016f2c ??_C@_09GLJCCEEK@xcryptctr?$AA@ 100abf2c udis86:itab.obj - 0002:00016f38 ??_C@_09BNFCNMDC@xcryptecb?$AA@ 100abf38 udis86:itab.obj - 0002:00016f44 ??_C@_09HECEPOLN@xcryptofb?$AA@ 100abf44 udis86:itab.obj - 0002:00016f50 ??_C@_06CPFMIPOH@xgetbv?$AA@ 100abf50 udis86:itab.obj - 0002:00016f58 ??_C@_05HCCHBCHD@xlatb?$AA@ 100abf58 udis86:itab.obj - 0002:00016f60 ??_C@_03COLCDPPJ@xor?$AA@ 100abf60 udis86:itab.obj - 0002:00016f64 ??_C@_05CGHIJPII@xorpd?$AA@ 100abf64 udis86:itab.obj - 0002:00016f6c ??_C@_05CDPLBLBO@xorps?$AA@ 100abf6c udis86:itab.obj - 0002:00016f74 ??_C@_06PPFDCILK@xrstor?$AA@ 100abf74 udis86:itab.obj - 0002:00016f7c ??_C@_05NMFCFAIJ@xsave?$AA@ 100abf7c udis86:itab.obj - 0002:00016f84 ??_C@_06LHBLMPGK@xsetbv?$AA@ 100abf84 udis86:itab.obj - 0002:00016f8c ??_C@_05GGOEDCKG@xsha1?$AA@ 100abf8c udis86:itab.obj - 0002:00016f94 ??_C@_07IJIDDFOL@xsha256?$AA@ 100abf94 udis86:itab.obj - 0002:00016f9c ??_C@_06BAEKEDCE@xstore?$AA@ 100abf9c udis86:itab.obj - 0002:00016fa4 ??_C@_07MALOAKCI@invalid?$AA@ 100abfa4 udis86:itab.obj - 0002:00016fac ??_C@_05FIGNBJMO@3dnow?$AA@ 100abfac udis86:itab.obj - 0002:00016fb4 ??_C@_04CGFJFPFD@none?$AA@ 100abfb4 udis86:itab.obj - 0002:00016fbc ??_C@_02BIKLEMDE@db?$AA@ 100abfbc udis86:itab.obj - 0002:00016fc0 ??_C@_05PDJBBECF@pause?$AA@ 100abfc0 udis86:itab.obj - 0002:00017b70 _ud_itab__0 100acb70 udis86:itab.obj - 0002:000197a0 _ud_reg_tab 100ae7a0 udis86:syn.obj - 0002:00019a0c ??_C@_02IAODKDFB@al?$AA@ 100aea0c udis86:syn.obj - 0002:00019a10 ??_C@_02IDGHHHDP@cl?$AA@ 100aea10 udis86:syn.obj - 0002:00019a14 ??_C@_02IGCIGBLK@dl?$AA@ 100aea14 udis86:syn.obj - 0002:00019a18 ??_C@_02ICKFBNAI@bl?$AA@ 100aea18 udis86:syn.obj - 0002:00019a1c ??_C@_02OEIPGGFF@ah?$AA@ 100aea1c udis86:syn.obj - 0002:00019a20 ??_C@_02OHALLCDL@ch?$AA@ 100aea20 udis86:syn.obj - 0002:00019a24 ??_C@_02OCEEKELO@dh?$AA@ 100aea24 udis86:syn.obj - 0002:00019a28 ??_C@_02OGMJNIAM@bh?$AA@ 100aea28 udis86:syn.obj - 0002:00019a2c ??_C@_03DKIIGDGK@spl?$AA@ 100aea2c udis86:syn.obj - 0002:00019a30 ??_C@_03NCCNFDJA@bpl?$AA@ 100aea30 udis86:syn.obj - 0002:00019a34 ??_C@_03CJHPPLJF@sil?$AA@ 100aea34 udis86:syn.obj - 0002:00019a38 ??_C@_03OELBJELD@dil?$AA@ 100aea38 udis86:syn.obj - 0002:00019a3c ??_C@_03GCDOPFPJ@r8b?$AA@ 100aea3c udis86:syn.obj - 0002:00019a40 ??_C@_03GDPMJPMO@r9b?$AA@ 100aea40 udis86:syn.obj - 0002:00019a44 ??_C@_04IBPIMIDM@r10b?$AA@ 100aea44 udis86:syn.obj - 0002:00019a4c ??_C@_04IADKKCAL@r11b?$AA@ 100aea4c udis86:syn.obj - 0002:00019a54 ??_C@_04ICHMBMFC@r12b?$AA@ 100aea54 udis86:syn.obj - 0002:00019a5c ??_C@_04IDLOHGGF@r13b?$AA@ 100aea5c udis86:syn.obj - 0002:00019a64 ??_C@_04IGPBGAOA@r14b?$AA@ 100aea64 udis86:syn.obj - 0002:00019a6c ??_C@_04IHDDAKNH@r15b?$AA@ 100aea6c udis86:syn.obj - 0002:00019a74 ??_C@_02KOENHEAE@ax?$AA@ 100aea74 udis86:syn.obj - 0002:00019a78 ??_C@_02KNMJKAGK@cx?$AA@ 100aea78 udis86:syn.obj - 0002:00019a7c ??_C@_02KIIGLGOP@dx?$AA@ 100aea7c udis86:syn.obj - 0002:00019a80 ??_C@_02KMALMKFN@bx?$AA@ 100aea80 udis86:syn.obj - 0002:00019a84 ??_C@_02HJDGIJBC@sp?$AA@ 100aea84 udis86:syn.obj - 0002:00019a88 ??_C@_02GENCEAFF@bp?$AA@ 100aea88 udis86:syn.obj - 0002:00019a8c ??_C@_02OCDGCAAK@si?$AA@ 100aea8c udis86:syn.obj - 0002:00019a90 ??_C@_02PLFPJFPP@di?$AA@ 100aea90 udis86:syn.obj - 0002:00019a94 ??_C@_03FFILBDON@r8w?$AA@ 100aea94 udis86:syn.obj - 0002:00019a98 ??_C@_03FEEJHJNK@r9w?$AA@ 100aea98 udis86:syn.obj - 0002:00019a9c ??_C@_04LGENCOCI@r10w?$AA@ 100aea9c udis86:syn.obj - 0002:00019aa4 ??_C@_04LHIPEEBP@r11w?$AA@ 100aeaa4 udis86:syn.obj - 0002:00019aac ??_C@_04LFMJPKEG@r12w?$AA@ 100aeaac udis86:syn.obj - 0002:00019ab4 ??_C@_04LEALJAHB@r13w?$AA@ 100aeab4 udis86:syn.obj - 0002:00019abc ??_C@_04LBEEIGPE@r14w?$AA@ 100aeabc udis86:syn.obj - 0002:00019ac4 ??_C@_04LAIGOMMD@r15w?$AA@ 100aeac4 udis86:syn.obj - 0002:00019acc ??_C@_03HMLAHFDL@eax?$AA@ 100aeacc udis86:syn.obj - 0002:00019ad0 ??_C@_03HPDEKBFF@ecx?$AA@ 100aead0 udis86:syn.obj - 0002:00019ad4 ??_C@_03HKHLLHNA@edx?$AA@ 100aead4 udis86:syn.obj - 0002:00019ad8 ??_C@_03HOPGMLGC@ebx?$AA@ 100aead8 udis86:syn.obj - 0002:00019adc ??_C@_03KLMLIICN@esp?$AA@ 100aeadc udis86:syn.obj - 0002:00019ae0 ??_C@_03LGCPEBGK@ebp?$AA@ 100aeae0 udis86:syn.obj - 0002:00019ae4 ??_C@_03DAMLCBDF@esi?$AA@ 100aeae4 udis86:syn.obj - 0002:00019ae8 ??_C@_03CJKCJEMA@edi?$AA@ 100aeae8 udis86:syn.obj - 0002:00019aec ??_C@_03DEGEFCHP@r8d?$AA@ 100aeaec udis86:syn.obj - 0002:00019af0 ??_C@_03DFKGDIEI@r9d?$AA@ 100aeaf0 udis86:syn.obj - 0002:00019af4 ??_C@_04NHKCGPLK@r10d?$AA@ 100aeaf4 udis86:syn.obj - 0002:00019afc ??_C@_04NGGAAFIN@r11d?$AA@ 100aeafc udis86:syn.obj - 0002:00019b04 ??_C@_04NECGLLNE@r12d?$AA@ 100aeb04 udis86:syn.obj - 0002:00019b0c ??_C@_04NFOENBOD@r13d?$AA@ 100aeb0c udis86:syn.obj - 0002:00019b14 ??_C@_04NAKLMHGG@r14d?$AA@ 100aeb14 udis86:syn.obj - 0002:00019b1c ??_C@_04NBGJKNFB@r15d?$AA@ 100aeb1c udis86:syn.obj - 0002:00019b24 ??_C@_03LBHOBKBN@rax?$AA@ 100aeb24 udis86:syn.obj - 0002:00019b28 ??_C@_03LCPKMOHD@rcx?$AA@ 100aeb28 udis86:syn.obj - 0002:00019b2c ??_C@_03LHLFNIPG@rdx?$AA@ 100aeb2c udis86:syn.obj - 0002:00019b30 ??_C@_03LDDIKEEE@rbx?$AA@ 100aeb30 udis86:syn.obj - 0002:00019b34 ??_C@_03GGAFOHAL@rsp?$AA@ 100aeb34 udis86:syn.obj - 0002:00019b38 ??_C@_03HLOBCOEM@rbp?$AA@ 100aeb38 udis86:syn.obj - 0002:00019b3c ??_C@_03PNAFEOBD@rsi?$AA@ 100aeb3c udis86:syn.obj - 0002:00019b40 ??_C@_03OEGMPLOG@rdi?$AA@ 100aeb40 udis86:syn.obj - 0002:00019b44 ??_C@_02EAFECGCI@r8?$AA@ 100aeb44 udis86:syn.obj - 0002:00019b48 ??_C@_02FJEPBHGJ@r9?$AA@ 100aeb48 udis86:syn.obj - 0002:00019b4c ??_C@_03OFGCPBKA@r10?$AA@ 100aeb4c udis86:syn.obj - 0002:00019b50 ??_C@_03PMHJMAOB@r11?$AA@ 100aeb50 udis86:syn.obj - 0002:00019b54 ??_C@_03NHFEJDCC@r12?$AA@ 100aeb54 udis86:syn.obj - 0002:00019b58 ??_C@_03MOEPKCGD@r13?$AA@ 100aeb58 udis86:syn.obj - 0002:00019b5c ??_C@_03IBAODEKE@r14?$AA@ 100aeb5c udis86:syn.obj - 0002:00019b60 ??_C@_03JIBFAFOF@r15?$AA@ 100aeb60 udis86:syn.obj - 0002:00019b64 ??_C@_02EKLAAFBD@es?$AA@ 100aeb64 udis86:syn.obj - 0002:00019b68 ??_C@_02EODNHJKB@cs?$AA@ 100aeb68 udis86:syn.obj - 0002:00019b6c ??_C@_02FCBLNKNB@ss?$AA@ 100aeb6c udis86:syn.obj - 0002:00019b70 ??_C@_02ELHCGPCE@ds?$AA@ 100aeb70 udis86:syn.obj - 0002:00019b74 ??_C@_02EIPGLLEK@fs?$AA@ 100aeb74 udis86:syn.obj - 0002:00019b78 ??_C@_02EJDENBHN@gs?$AA@ 100aeb78 udis86:syn.obj - 0002:00019b7c ??_C@_03HPBLPCMD@cr0?$AA@ 100aeb7c udis86:syn.obj - 0002:00019b80 ??_C@_03GGAAMDIC@cr1?$AA@ 100aeb80 udis86:syn.obj - 0002:00019b84 ??_C@_03ENCNJAEB@cr2?$AA@ 100aeb84 udis86:syn.obj - 0002:00019b88 ??_C@_03FEDGKBAA@cr3?$AA@ 100aeb88 udis86:syn.obj - 0002:00019b8c ??_C@_03BLHHDHMH@cr4?$AA@ 100aeb8c udis86:syn.obj - 0002:00019b90 ??_C@_03CGMAGIG@cr5?$AA@ 100aeb90 udis86:syn.obj - 0002:00019b94 ??_C@_03CJEBFFEF@cr6?$AA@ 100aeb94 udis86:syn.obj - 0002:00019b98 ??_C@_03DAFKGEAE@cr7?$AA@ 100aeb98 udis86:syn.obj - 0002:00019b9c ??_C@_03LHMCHIML@cr8?$AA@ 100aeb9c udis86:syn.obj - 0002:00019ba0 ??_C@_03KONJEJIK@cr9?$AA@ 100aeba0 udis86:syn.obj - 0002:00019ba4 ??_C@_04NMJGNEDM@cr10?$AA@ 100aeba4 udis86:syn.obj - 0002:00019bac ??_C@_04MFINOFHN@cr11?$AA@ 100aebac udis86:syn.obj - 0002:00019bb4 ??_C@_04OOKALGLO@cr12?$AA@ 100aebb4 udis86:syn.obj - 0002:00019bbc ??_C@_04PHLLIHPP@cr13?$AA@ 100aebbc udis86:syn.obj - 0002:00019bc4 ??_C@_04LIPKBBDI@cr14?$AA@ 100aebc4 udis86:syn.obj - 0002:00019bcc ??_C@_04KBOBCAHJ@cr15?$AA@ 100aebcc udis86:syn.obj - 0002:00019bd4 ??_C@_03OCMMMKHK@dr0?$AA@ 100aebd4 udis86:syn.obj - 0002:00019bd8 ??_C@_03PLNHPLDL@dr1?$AA@ 100aebd8 udis86:syn.obj - 0002:00019bdc ??_C@_03NAPKKIPI@dr2?$AA@ 100aebdc udis86:syn.obj - 0002:00019be0 ??_C@_03MJOBJJLJ@dr3?$AA@ 100aebe0 udis86:syn.obj - 0002:00019be4 ??_C@_03IGKAAPHO@dr4?$AA@ 100aebe4 udis86:syn.obj - 0002:00019be8 ??_C@_03JPLLDODP@dr5?$AA@ 100aebe8 udis86:syn.obj - 0002:00019bec ??_C@_03LEJGGNPM@dr6?$AA@ 100aebec udis86:syn.obj - 0002:00019bf0 ??_C@_03KNINFMLN@dr7?$AA@ 100aebf0 udis86:syn.obj - 0002:00019bf4 ??_C@_03CKBFEAHC@dr8?$AA@ 100aebf4 udis86:syn.obj - 0002:00019bf8 ??_C@_03DDAOHBDD@dr9?$AA@ 100aebf8 udis86:syn.obj - 0002:00019bfc ??_C@_04GOLGAICM@dr10?$AA@ 100aebfc udis86:syn.obj - 0002:00019c04 ??_C@_04HHKNDJGN@dr11?$AA@ 100aec04 udis86:syn.obj - 0002:00019c0c ??_C@_04FMIAGKKO@dr12?$AA@ 100aec0c udis86:syn.obj - 0002:00019c14 ??_C@_04EFJLFLOP@dr13?$AA@ 100aec14 udis86:syn.obj - 0002:00019c1c ??_C@_04KNKMNCI@dr14?$AA@ 100aec1c udis86:syn.obj - 0002:00019c24 ??_C@_04BDMBPMGJ@dr15?$AA@ 100aec24 udis86:syn.obj - 0002:00019c2c ??_C@_03IILOGBLN@mm0?$AA@ 100aec2c udis86:syn.obj - 0002:00019c30 ??_C@_03JBKFFAPM@mm1?$AA@ 100aec30 udis86:syn.obj - 0002:00019c34 ??_C@_03LKIIADDP@mm2?$AA@ 100aec34 udis86:syn.obj - 0002:00019c38 ??_C@_03KDJDDCHO@mm3?$AA@ 100aec38 udis86:syn.obj - 0002:00019c3c ??_C@_03OMNCKELJ@mm4?$AA@ 100aec3c udis86:syn.obj - 0002:00019c40 ??_C@_03PFMJJFPI@mm5?$AA@ 100aec40 udis86:syn.obj - 0002:00019c44 ??_C@_03NOOEMGDL@mm6?$AA@ 100aec44 udis86:syn.obj - 0002:00019c48 ??_C@_03MHPPPHHK@mm7?$AA@ 100aec48 udis86:syn.obj - 0002:00019c4c ??_C@_03CLIPNJOO@st0?$AA@ 100aec4c udis86:syn.obj - 0002:00019c50 ??_C@_03DCJEOIKP@st1?$AA@ 100aec50 udis86:syn.obj - 0002:00019c54 ??_C@_03BJLJLLGM@st2?$AA@ 100aec54 udis86:syn.obj - 0002:00019c58 ??_C@_03KCIKCN@st3?$AA@ 100aec58 udis86:syn.obj - 0002:00019c5c ??_C@_03EPODBMOK@st4?$AA@ 100aec5c udis86:syn.obj - 0002:00019c60 ??_C@_03FGPICNKL@st5?$AA@ 100aec60 udis86:syn.obj - 0002:00019c64 ??_C@_03HNNFHOGI@st6?$AA@ 100aec64 udis86:syn.obj - 0002:00019c68 ??_C@_03GEMOEPCJ@st7?$AA@ 100aec68 udis86:syn.obj - 0002:00019c6c ??_C@_04KGHKOCLC@xmm0?$AA@ 100aec6c udis86:syn.obj - 0002:00019c74 ??_C@_04LPGBNDPD@xmm1?$AA@ 100aec74 udis86:syn.obj - 0002:00019c7c ??_C@_04JEEMIADA@xmm2?$AA@ 100aec7c udis86:syn.obj - 0002:00019c84 ??_C@_04INFHLBHB@xmm3?$AA@ 100aec84 udis86:syn.obj - 0002:00019c8c ??_C@_04MCBGCHLG@xmm4?$AA@ 100aec8c udis86:syn.obj - 0002:00019c94 ??_C@_04NLANBGPH@xmm5?$AA@ 100aec94 udis86:syn.obj - 0002:00019c9c ??_C@_04PACAEFDE@xmm6?$AA@ 100aec9c udis86:syn.obj - 0002:00019ca4 ??_C@_04OJDLHEHF@xmm7?$AA@ 100aeca4 udis86:syn.obj - 0002:00019cac ??_C@_04GOKDGILK@xmm8?$AA@ 100aecac udis86:syn.obj - 0002:00019cb4 ??_C@_04HHLIFJPL@xmm9?$AA@ 100aecb4 udis86:syn.obj - 0002:00019cbc ??_C@_05PLENPEIG@xmm10?$AA@ 100aecbc udis86:syn.obj - 0002:00019cc4 ??_C@_05OCFGMFMH@xmm11?$AA@ 100aecc4 udis86:syn.obj - 0002:00019ccc ??_C@_05MJHLJGAE@xmm12?$AA@ 100aeccc udis86:syn.obj - 0002:00019cd4 ??_C@_05NAGAKHEF@xmm13?$AA@ 100aecd4 udis86:syn.obj - 0002:00019cdc ??_C@_05JPCBDBIC@xmm14?$AA@ 100aecdc udis86:syn.obj - 0002:00019ce4 ??_C@_05IGDKAAMD@xmm15?$AA@ 100aece4 udis86:syn.obj - 0002:00019cec ??_C@_04JLBKMLAC@ymm0?$AA@ 100aecec udis86:syn.obj - 0002:00019cf4 ??_C@_04ICABPKED@ymm1?$AA@ 100aecf4 udis86:syn.obj - 0002:00019cfc ??_C@_04KJCMKJIA@ymm2?$AA@ 100aecfc udis86:syn.obj - 0002:00019d04 ??_C@_04LADHJIMB@ymm3?$AA@ 100aed04 udis86:syn.obj - 0002:00019d0c ??_C@_04PPHGAOAG@ymm4?$AA@ 100aed0c udis86:syn.obj - 0002:00019d14 ??_C@_04OGGNDPEH@ymm5?$AA@ 100aed14 udis86:syn.obj - 0002:00019d1c ??_C@_04MNEAGMIE@ymm6?$AA@ 100aed1c udis86:syn.obj - 0002:00019d24 ??_C@_04NEFLFNMF@ymm7?$AA@ 100aed24 udis86:syn.obj - 0002:00019d2c ??_C@_04FDMDEBAK@ymm8?$AA@ 100aed2c udis86:syn.obj - 0002:00019d34 ??_C@_04EKNIHAEL@ymm9?$AA@ 100aed34 udis86:syn.obj - 0002:00019d3c ??_C@_05DABBCHCD@ymm10?$AA@ 100aed3c udis86:syn.obj - 0002:00019d44 ??_C@_05CJAKBGGC@ymm11?$AA@ 100aed44 udis86:syn.obj - 0002:00019d4c ??_C@_05CCHEFKB@ymm12?$AA@ 100aed4c udis86:syn.obj - 0002:00019d54 ??_C@_05BLDMHEOA@ymm13?$AA@ 100aed54 udis86:syn.obj - 0002:00019d5c ??_C@_05FEHNOCCH@ymm14?$AA@ 100aed5c udis86:syn.obj - 0002:00019d64 ??_C@_05ENGGNDGG@ymm15?$AA@ 100aed64 udis86:syn.obj - 0002:00019d6c ??_C@_03HHLEMBKN@rip?$AA@ 100aed6c udis86:syn.obj - 0002:00019d70 ??_C@_08KBPBCHKK@?$CFs?$CF?$CLI64d?$AA@ 100aed70 udis86:syn.obj - 0002:00019d7c ??_C@_07NDNBFKNF@0x?$CFI64x?$AA@ 100aed7c udis86:syn.obj - 0002:00019d84 ??_C@_08CDEEPEOG@?90x?$CFI64x?$AA@ 100aed84 udis86:syn.obj - 0002:00019d90 ??_C@_09DFCDNKEO@?$CFs0x?$CFI64x?$AA@ 100aed90 udis86:syn.obj - 0002:00019da0 __load_config_used 100aeda0 LIBCMT:loadcfg.obj - 0002:00019e80 __tls_used 100aee80 LIBCMT:tlssup.obj - 0002:00019e98 ??_R4exception@std@@6B@ 100aee98 logging.cpp.obj - 0002:00019eac ??_R3exception@std@@8 100aeeac logging.cpp.obj - 0002:00019ebc ??_R2exception@std@@8 100aeebc logging.cpp.obj - 0002:00019ec4 ??_R1A@?0A@EA@exception@std@@8 100aeec4 logging.cpp.obj - 0002:00019ee0 ??_R4bad_array_new_length@std@@6B@ 100aeee0 logging.cpp.obj - 0002:00019ef4 ??_R3bad_array_new_length@std@@8 100aeef4 logging.cpp.obj - 0002:00019f04 ??_R2bad_array_new_length@std@@8 100aef04 logging.cpp.obj - 0002:00019f14 ??_R1A@?0A@EA@bad_array_new_length@std@@8 100aef14 logging.cpp.obj - 0002:00019f30 ??_R1A@?0A@EA@bad_alloc@std@@8 100aef30 logging.cpp.obj - 0002:00019f4c ??_R3bad_alloc@std@@8 100aef4c logging.cpp.obj - 0002:00019f5c ??_R2bad_alloc@std@@8 100aef5c logging.cpp.obj - 0002:00019f68 ??_R4bad_alloc@std@@6B@ 100aef68 logging.cpp.obj - 0002:00019f7c ??_R4ios_base@std@@6B@ 100aef7c logging.cpp.obj - 0002:00019f90 ??_R3ios_base@std@@8 100aef90 logging.cpp.obj - 0002:00019fa0 ??_R2ios_base@std@@8 100aefa0 logging.cpp.obj - 0002:00019fac ??_R1A@?0A@EA@ios_base@std@@8 100aefac logging.cpp.obj - 0002:00019fc8 ??_R17?0A@EA@?$_Iosb@H@std@@8 100aefc8 logging.cpp.obj - 0002:00019fe4 ??_R3?$_Iosb@H@std@@8 100aefe4 logging.cpp.obj - 0002:00019ff4 ??_R2?$_Iosb@H@std@@8 100aeff4 logging.cpp.obj - 0002:00019ffc ??_R1A@?0A@EA@?$_Iosb@H@std@@8 100aeffc logging.cpp.obj - 0002:0001a018 ??_R4?$basic_ios@DU?$char_traits@D@std@@@std@@6B@ 100af018 logging.cpp.obj - 0002:0001a02c ??_R3?$basic_ios@DU?$char_traits@D@std@@@std@@8 100af02c logging.cpp.obj - 0002:0001a03c ??_R2?$basic_ios@DU?$char_traits@D@std@@@std@@8 100af03c logging.cpp.obj - 0002:0001a04c ??_R1A@?0A@EA@?$basic_ios@DU?$char_traits@D@std@@@std@@8 100af04c logging.cpp.obj - 0002:0001a068 ??_R4?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@ 100af068 logging.cpp.obj - 0002:0001a07c ??_R3?$basic_streambuf@DU?$char_traits@D@std@@@std@@8 100af07c logging.cpp.obj - 0002:0001a08c ??_R2?$basic_streambuf@DU?$char_traits@D@std@@@std@@8 100af08c logging.cpp.obj - 0002:0001a094 ??_R1A@?0A@EA@?$basic_streambuf@DU?$char_traits@D@std@@@std@@8 100af094 logging.cpp.obj - 0002:0001a0b0 ??_R4?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@ 100af0b0 logging.cpp.obj - 0002:0001a0c4 ??_R3?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100af0c4 logging.cpp.obj - 0002:0001a0d4 ??_R2?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100af0d4 logging.cpp.obj - 0002:0001a0e8 ??_R1A@?0A@EA@?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100af0e8 logging.cpp.obj - 0002:0001a104 ??_R1A@A@3FA@?$basic_ios@DU?$char_traits@D@std@@@std@@8 100af104 logging.cpp.obj - 0002:0001a120 ??_R1A@A@3EA@ios_base@std@@8 100af120 logging.cpp.obj - 0002:0001a13c ??_R17A@3EA@?$_Iosb@H@std@@8 100af13c logging.cpp.obj - 0002:0001a158 ??_R4?$basic_filebuf@DU?$char_traits@D@std@@@std@@6B@ 100af158 logging.cpp.obj - 0002:0001a16c ??_R3?$basic_filebuf@DU?$char_traits@D@std@@@std@@8 100af16c logging.cpp.obj - 0002:0001a17c ??_R2?$basic_filebuf@DU?$char_traits@D@std@@@std@@8 100af17c logging.cpp.obj - 0002:0001a188 ??_R1A@?0A@EA@?$basic_filebuf@DU?$char_traits@D@std@@@std@@8 100af188 logging.cpp.obj - 0002:0001a1a4 ??_R4?$basic_ofstream@DU?$char_traits@D@std@@@std@@6B@ 100af1a4 logging.cpp.obj - 0002:0001a1b8 ??_R3?$basic_ofstream@DU?$char_traits@D@std@@@std@@8 100af1b8 logging.cpp.obj - 0002:0001a1c8 ??_R2?$basic_ofstream@DU?$char_traits@D@std@@@std@@8 100af1c8 logging.cpp.obj - 0002:0001a1e0 ??_R1A@?0A@EA@?$basic_ofstream@DU?$char_traits@D@std@@@std@@8 100af1e0 logging.cpp.obj - 0002:0001a1fc ??_R4runtime_error@std@@6B@ 100af1fc logging.cpp.obj - 0002:0001a210 ??_R3runtime_error@std@@8 100af210 logging.cpp.obj - 0002:0001a220 ??_R2runtime_error@std@@8 100af220 logging.cpp.obj - 0002:0001a22c ??_R1A@?0A@EA@runtime_error@std@@8 100af22c logging.cpp.obj - 0002:0001a248 ??_R3error_category@std@@8 100af248 logging.cpp.obj - 0002:0001a258 ??_R2error_category@std@@8 100af258 logging.cpp.obj - 0002:0001a260 ??_R1A@?0A@EA@error_category@std@@8 100af260 logging.cpp.obj - 0002:0001a27c ??_R4_System_error@std@@6B@ 100af27c logging.cpp.obj - 0002:0001a290 ??_R3_System_error@std@@8 100af290 logging.cpp.obj - 0002:0001a2a0 ??_R2_System_error@std@@8 100af2a0 logging.cpp.obj - 0002:0001a2b0 ??_R1A@?0A@EA@_System_error@std@@8 100af2b0 logging.cpp.obj - 0002:0001a2cc ??_R4system_error@std@@6B@ 100af2cc logging.cpp.obj - 0002:0001a2e0 ??_R3system_error@std@@8 100af2e0 logging.cpp.obj - 0002:0001a2f0 ??_R2system_error@std@@8 100af2f0 logging.cpp.obj - 0002:0001a304 ??_R1A@?0A@EA@system_error@std@@8 100af304 logging.cpp.obj - 0002:0001a320 ??_R4_Iostream_error_category2@std@@6B@ 100af320 logging.cpp.obj - 0002:0001a334 ??_R3_Iostream_error_category2@std@@8 100af334 logging.cpp.obj - 0002:0001a344 ??_R2_Iostream_error_category2@std@@8 100af344 logging.cpp.obj - 0002:0001a350 ??_R1A@?0A@EA@_Iostream_error_category2@std@@8 100af350 logging.cpp.obj - 0002:0001a36c ??_R4bad_cast@std@@6B@ 100af36c logging.cpp.obj - 0002:0001a380 ??_R3bad_cast@std@@8 100af380 logging.cpp.obj - 0002:0001a390 ??_R2bad_cast@std@@8 100af390 logging.cpp.obj - 0002:0001a39c ??_R1A@?0A@EA@bad_cast@std@@8 100af39c logging.cpp.obj - 0002:0001a3b8 ??_R4_Facet_base@std@@6B@ 100af3b8 logging.cpp.obj - 0002:0001a3cc ??_R3_Facet_base@std@@8 100af3cc logging.cpp.obj - 0002:0001a3dc ??_R2_Facet_base@std@@8 100af3dc logging.cpp.obj - 0002:0001a3e4 ??_R1A@?0A@EA@_Facet_base@std@@8 100af3e4 logging.cpp.obj - 0002:0001a400 ??_R3facet@locale@std@@8 100af400 logging.cpp.obj - 0002:0001a410 ??_R2facet@locale@std@@8 100af410 logging.cpp.obj - 0002:0001a420 ??_R1A@?0A@EA@facet@locale@std@@8 100af420 logging.cpp.obj - 0002:0001a43c ??_R13?0A@EA@_Crt_new_delete@std@@8 100af43c logging.cpp.obj - 0002:0001a458 ??_R3_Crt_new_delete@std@@8 100af458 logging.cpp.obj - 0002:0001a468 ??_R2_Crt_new_delete@std@@8 100af468 logging.cpp.obj - 0002:0001a470 ??_R1A@?0A@EA@_Crt_new_delete@std@@8 100af470 logging.cpp.obj - 0002:0001a48c ??_R3codecvt_base@std@@8 100af48c logging.cpp.obj - 0002:0001a49c ??_R2codecvt_base@std@@8 100af49c logging.cpp.obj - 0002:0001a4b0 ??_R1A@?0A@EA@codecvt_base@std@@8 100af4b0 logging.cpp.obj - 0002:0001a4cc ??_R3ctype_base@std@@8 100af4cc logging.cpp.obj - 0002:0001a4dc ??_R2ctype_base@std@@8 100af4dc logging.cpp.obj - 0002:0001a4f0 ??_R1A@?0A@EA@ctype_base@std@@8 100af4f0 logging.cpp.obj - 0002:0001a50c ??_R4?$ctype@D@std@@6B@ 100af50c logging.cpp.obj - 0002:0001a520 ??_R3?$ctype@D@std@@8 100af520 logging.cpp.obj - 0002:0001a530 ??_R2?$ctype@D@std@@8 100af530 logging.cpp.obj - 0002:0001a548 ??_R1A@?0A@EA@?$ctype@D@std@@8 100af548 logging.cpp.obj - 0002:0001a564 ??_R4failure@ios_base@std@@6B@ 100af564 logging.cpp.obj - 0002:0001a578 ??_R3failure@ios_base@std@@8 100af578 logging.cpp.obj - 0002:0001a588 ??_R2failure@ios_base@std@@8 100af588 logging.cpp.obj - 0002:0001a5a0 ??_R1A@?0A@EA@failure@ios_base@std@@8 100af5a0 logging.cpp.obj - 0002:0001a5bc ??_R4?$codecvt@DDU_Mbstatet@@@std@@6B@ 100af5bc logging.cpp.obj - 0002:0001a5d0 ??_R3?$codecvt@DDU_Mbstatet@@@std@@8 100af5d0 logging.cpp.obj - 0002:0001a5e0 ??_R2?$codecvt@DDU_Mbstatet@@@std@@8 100af5e0 logging.cpp.obj - 0002:0001a5f8 ??_R1A@?0A@EA@?$codecvt@DDU_Mbstatet@@@std@@8 100af5f8 logging.cpp.obj - 0002:0001a614 ??_R4bad_exception@std@@6B@ 100af614 main.cpp.obj - 0002:0001a628 ??_R3bad_exception@std@@8 100af628 main.cpp.obj - 0002:0001a638 ??_R2bad_exception@std@@8 100af638 main.cpp.obj - 0002:0001a644 ??_R1A@?0A@EA@bad_exception@std@@8 100af644 main.cpp.obj - 0002:0001a660 ??_R4?$basic_istream@DU?$char_traits@D@std@@@std@@6B@ 100af660 main.cpp.obj - 0002:0001a674 ??_R3?$basic_istream@DU?$char_traits@D@std@@@std@@8 100af674 main.cpp.obj - 0002:0001a684 ??_R2?$basic_istream@DU?$char_traits@D@std@@@std@@8 100af684 main.cpp.obj - 0002:0001a698 ??_R1A@?0A@EA@?$basic_istream@DU?$char_traits@D@std@@@std@@8 100af698 main.cpp.obj - 0002:0001a6b4 ??_R4?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@ 100af6b4 main.cpp.obj - 0002:0001a6c8 ??_R3?$basic_iostream@DU?$char_traits@D@std@@@std@@8 100af6c8 main.cpp.obj - 0002:0001a6d8 ??_R2?$basic_iostream@DU?$char_traits@D@std@@@std@@8 100af6d8 main.cpp.obj - 0002:0001a700 ??_R1A@?0A@EA@?$basic_iostream@DU?$char_traits@D@std@@@std@@8 100af700 main.cpp.obj - 0002:0001a71c ??_R1BA@?0A@EA@?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100af71c main.cpp.obj - 0002:0001a738 ??_R4?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 100af738 main.cpp.obj - 0002:0001a74c ??_R3?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af74c main.cpp.obj - 0002:0001a75c ??_R2?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af75c main.cpp.obj - 0002:0001a768 ??_R1A@?0A@EA@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af768 main.cpp.obj - 0002:0001a784 ??_R4?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 100af784 main.cpp.obj - 0002:0001a798 ??_R3?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af798 main.cpp.obj - 0002:0001a7a8 ??_R2?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af7a8 main.cpp.obj - 0002:0001a7c0 ??_R1A@?0A@EA@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af7c0 main.cpp.obj - 0002:0001a7dc ??_R4?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 100af7dc main.cpp.obj - 0002:0001a7f0 ??_R3?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af7f0 main.cpp.obj - 0002:0001a800 ??_R2?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af800 main.cpp.obj - 0002:0001a82c ??_R1A@?0A@EA@?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100af82c main.cpp.obj - 0002:0001a848 ??_R3_Ref_count_base@std@@8 100af848 main.cpp.obj - 0002:0001a858 ??_R2_Ref_count_base@std@@8 100af858 main.cpp.obj - 0002:0001a860 ??_R1A@?0A@EA@_Ref_count_base@std@@8 100af860 main.cpp.obj - 0002:0001a87c ??_R4exception@boost@@6B@ 100af87c main.cpp.obj - 0002:0001a890 ??_R3exception@boost@@8 100af890 main.cpp.obj - 0002:0001a8a0 ??_R2exception@boost@@8 100af8a0 main.cpp.obj - 0002:0001a8a8 ??_R1A@?0A@EA@exception@boost@@8 100af8a8 main.cpp.obj - 0002:0001a8c4 ??_R4error_info_base@exception_detail@boost@@6B@ 100af8c4 main.cpp.obj - 0002:0001a8d8 ??_R3error_info_base@exception_detail@boost@@8 100af8d8 main.cpp.obj - 0002:0001a8e8 ??_R2error_info_base@exception_detail@boost@@8 100af8e8 main.cpp.obj - 0002:0001a8f0 ??_R1A@?0A@EA@error_info_base@exception_detail@boost@@8 100af8f0 main.cpp.obj - 0002:0001a90c ??_R4error_info_container@exception_detail@boost@@6B@ 100af90c main.cpp.obj - 0002:0001a920 ??_R3error_info_container@exception_detail@boost@@8 100af920 main.cpp.obj - 0002:0001a930 ??_R2error_info_container@exception_detail@boost@@8 100af930 main.cpp.obj - 0002:0001a938 ??_R1A@?0A@EA@error_info_container@exception_detail@boost@@8 100af938 main.cpp.obj - 0002:0001a954 ??_R4clone_base@exception_detail@boost@@6B@ 100af954 main.cpp.obj - 0002:0001a968 ??_R3clone_base@exception_detail@boost@@8 100af968 main.cpp.obj - 0002:0001a978 ??_R2clone_base@exception_detail@boost@@8 100af978 main.cpp.obj - 0002:0001a980 ??_R1A@?0A@EA@clone_base@exception_detail@boost@@8 100af980 main.cpp.obj - 0002:0001a99c ??_R4sp_counted_base@detail@boost@@6B@ 100af99c main.cpp.obj - 0002:0001a9b0 ??_R3sp_counted_base@detail@boost@@8 100af9b0 main.cpp.obj - 0002:0001a9c0 ??_R2sp_counted_base@detail@boost@@8 100af9c0 main.cpp.obj - 0002:0001a9c8 ??_R1A@?0A@EA@sp_counted_base@detail@boost@@8 100af9c8 main.cpp.obj - 0002:0001a9e4 ??_R4error_info_container_impl@exception_detail@boost@@6B@ 100af9e4 main.cpp.obj - 0002:0001a9f8 ??_R3error_info_container_impl@exception_detail@boost@@8 100af9f8 main.cpp.obj - 0002:0001aa08 ??_R2error_info_container_impl@exception_detail@boost@@8 100afa08 main.cpp.obj - 0002:0001aa14 ??_R1A@?0A@EA@error_info_container_impl@exception_detail@boost@@8 100afa14 main.cpp.obj - 0002:0001aa30 ??_R4?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 100afa30 main.cpp.obj - 0002:0001aa44 ??_R3?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100afa44 main.cpp.obj - 0002:0001aa54 ??_R2?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100afa54 main.cpp.obj - 0002:0001aa68 ??_R1A@?0A@EA@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100afa68 main.cpp.obj - 0002:0001aa84 ??_R4bad_alloc_@exception_detail@boost@@6Bexception@2@@ 100afa84 main.cpp.obj - 0002:0001aa98 ??_R3bad_alloc_@exception_detail@boost@@8 100afa98 main.cpp.obj - 0002:0001aaa8 ??_R2bad_alloc_@exception_detail@boost@@8 100afaa8 main.cpp.obj - 0002:0001aabc ??_R1A@?0A@EA@bad_alloc_@exception_detail@boost@@8 100afabc main.cpp.obj - 0002:0001aad8 ??_R1BI@?0A@EA@bad_alloc@std@@8 100afad8 main.cpp.obj - 0002:0001aaf4 ??_R1BI@?0A@EA@exception@std@@8 100afaf4 main.cpp.obj - 0002:0001ab10 ??_R4bad_alloc_@exception_detail@boost@@6Bbad_alloc@std@@@ 100afb10 main.cpp.obj - 0002:0001ab24 ??_R4bad_exception_@exception_detail@boost@@6Bexception@2@@ 100afb24 main.cpp.obj - 0002:0001ab38 ??_R3bad_exception_@exception_detail@boost@@8 100afb38 main.cpp.obj - 0002:0001ab48 ??_R2bad_exception_@exception_detail@boost@@8 100afb48 main.cpp.obj - 0002:0001ab5c ??_R1A@?0A@EA@bad_exception_@exception_detail@boost@@8 100afb5c main.cpp.obj - 0002:0001ab78 ??_R1BI@?0A@EA@bad_exception@std@@8 100afb78 main.cpp.obj - 0002:0001ab94 ??_R4bad_exception_@exception_detail@boost@@6Bbad_exception@std@@@ 100afb94 main.cpp.obj - 0002:0001aba8 ??_R4Error@hadesmem@@6Bexception@std@@@ 100afba8 main.cpp.obj - 0002:0001abbc ??_R3Error@hadesmem@@8 100afbbc main.cpp.obj - 0002:0001abcc ??_R2Error@hadesmem@@8 100afbcc main.cpp.obj - 0002:0001abdc ??_R1A@?0A@EA@Error@hadesmem@@8 100afbdc main.cpp.obj - 0002:0001abf8 ??_R1A@A@3FA@exception@std@@8 100afbf8 main.cpp.obj - 0002:0001ac14 ??_R1A@A@7FA@exception@boost@@8 100afc14 main.cpp.obj - 0002:0001ac30 ??_R4Error@hadesmem@@6Bexception@boost@@@ 100afc30 main.cpp.obj - 0002:0001ac44 ??_R4?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@6B@ 100afc44 main.cpp.obj - 0002:0001ac58 ??_R3?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@8 100afc58 main.cpp.obj - 0002:0001ac68 ??_R2?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@8 100afc68 main.cpp.obj - 0002:0001ac74 ??_R1A@?0A@EA@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@8 100afc74 main.cpp.obj - 0002:0001ac90 ??_R4?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@6B@ 100afc90 main.cpp.obj - 0002:0001aca4 ??_R3?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@8 100afca4 main.cpp.obj - 0002:0001acb4 ??_R2?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@8 100afcb4 main.cpp.obj - 0002:0001acc0 ??_R1A@?0A@EA@?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@8 100afcc0 main.cpp.obj - 0002:0001acdc ??_R3PatchDetourBase@hadesmem@@8 100afcdc main.cpp.obj - 0002:0001acec ??_R2PatchDetourBase@hadesmem@@8 100afcec main.cpp.obj - 0002:0001acf4 ??_R1A@?0A@EA@PatchDetourBase@hadesmem@@8 100afcf4 main.cpp.obj - 0002:0001ad10 ??_R4CDataStore@Nampower@@6B@ 100afd10 main.cpp.obj - 0002:0001ad24 ??_R3CDataStore@Nampower@@8 100afd24 main.cpp.obj - 0002:0001ad34 ??_R2CDataStore@Nampower@@8 100afd34 main.cpp.obj - 0002:0001ad3c ??_R1A@?0A@EA@CDataStore@Nampower@@8 100afd3c main.cpp.obj - 0002:0001ad58 ??_R4?$PatchDetour@P6IXXZPAX@hadesmem@@6B@ 100afd58 main.cpp.obj - 0002:0001ad6c ??_R3?$PatchDetour@P6IXXZPAX@hadesmem@@8 100afd6c main.cpp.obj - 0002:0001ad7c ??_R2?$PatchDetour@P6IXXZPAX@hadesmem@@8 100afd7c main.cpp.obj - 0002:0001ad88 ??_R1A@?0A@EA@?$PatchDetour@P6IXXZPAX@hadesmem@@8 100afd88 main.cpp.obj - 0002:0001ada4 ??_R4?$PatchDetour@P6GXXZPAX@hadesmem@@6B@ 100afda4 main.cpp.obj - 0002:0001adb8 ??_R3?$PatchDetour@P6GXXZPAX@hadesmem@@8 100afdb8 main.cpp.obj - 0002:0001adc8 ??_R2?$PatchDetour@P6GXXZPAX@hadesmem@@8 100afdc8 main.cpp.obj - 0002:0001add4 ??_R1A@?0A@EA@?$PatchDetour@P6GXXZPAX@hadesmem@@8 100afdd4 main.cpp.obj - 0002:0001adf0 ??_R4?$PatchDetour@P6IXHI@ZPAX@hadesmem@@6B@ 100afdf0 main.cpp.obj - 0002:0001ae04 ??_R3?$PatchDetour@P6IXHI@ZPAX@hadesmem@@8 100afe04 main.cpp.obj - 0002:0001ae14 ??_R2?$PatchDetour@P6IXHI@ZPAX@hadesmem@@8 100afe14 main.cpp.obj - 0002:0001ae20 ??_R1A@?0A@EA@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@8 100afe20 main.cpp.obj - 0002:0001ae3c ??_R4?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@6B@ 100afe3c main.cpp.obj - 0002:0001ae50 ??_R3?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@8 100afe50 main.cpp.obj - 0002:0001ae60 ??_R2?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@8 100afe60 main.cpp.obj - 0002:0001ae6c ??_R1A@?0A@EA@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@8 100afe6c main.cpp.obj - 0002:0001ae88 ??_R4?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@6B@ 100afe88 main.cpp.obj - 0002:0001ae9c ??_R3?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@8 100afe9c main.cpp.obj - 0002:0001aeac ??_R2?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@8 100afeac main.cpp.obj - 0002:0001aeb8 ??_R1A@?0A@EA@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@8 100afeb8 main.cpp.obj - 0002:0001aed4 ??_R4?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@6B@ 100afed4 main.cpp.obj - 0002:0001aee8 ??_R3?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@8 100afee8 main.cpp.obj - 0002:0001aef8 ??_R2?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@8 100afef8 main.cpp.obj - 0002:0001af04 ??_R1A@?0A@EA@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@8 100aff04 main.cpp.obj - 0002:0001af20 ??_R4?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@6B@ 100aff20 main.cpp.obj - 0002:0001af34 ??_R3?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@8 100aff34 main.cpp.obj - 0002:0001af44 ??_R2?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@8 100aff44 main.cpp.obj - 0002:0001af50 ??_R1A@?0A@EA@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@8 100aff50 main.cpp.obj - 0002:0001af6c ??_R4?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@6B@ 100aff6c main.cpp.obj - 0002:0001af80 ??_R3?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@8 100aff80 main.cpp.obj - 0002:0001af90 ??_R2?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@8 100aff90 main.cpp.obj - 0002:0001af9c ??_R1A@?0A@EA@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@8 100aff9c main.cpp.obj - 0002:0001afb8 ??_R4?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@6B@ 100affb8 main.cpp.obj - 0002:0001afcc ??_R3?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@8 100affcc main.cpp.obj - 0002:0001afdc ??_R2?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@8 100affdc main.cpp.obj - 0002:0001afe8 ??_R1A@?0A@EA@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@8 100affe8 main.cpp.obj - 0002:0001b004 ??_R4?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@6B@ 100b0004 main.cpp.obj - 0002:0001b018 ??_R3?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@8 100b0018 main.cpp.obj - 0002:0001b028 ??_R2?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@8 100b0028 main.cpp.obj - 0002:0001b034 ??_R1A@?0A@EA@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@8 100b0034 main.cpp.obj - 0002:0001b050 ??_R4?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@6B@ 100b0050 main.cpp.obj - 0002:0001b064 ??_R3?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@8 100b0064 main.cpp.obj - 0002:0001b074 ??_R2?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@8 100b0074 main.cpp.obj - 0002:0001b080 ??_R1A@?0A@EA@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@8 100b0080 main.cpp.obj - 0002:0001b09c ??_R4?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b009c main.cpp.obj - 0002:0001b0b0 ??_R3?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b00b0 main.cpp.obj - 0002:0001b0c0 ??_R2?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b00c0 main.cpp.obj - 0002:0001b0cc ??_R1A@?0A@EA@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b00cc main.cpp.obj - 0002:0001b0e8 ??_R4?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@6B@ 100b00e8 main.cpp.obj - 0002:0001b0fc ??_R3?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@8 100b00fc main.cpp.obj - 0002:0001b10c ??_R2?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@8 100b010c main.cpp.obj - 0002:0001b118 ??_R1A@?0A@EA@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@8 100b0118 main.cpp.obj - 0002:0001b134 ??_R4?$PatchDetour@P6IH_K@ZPAX@hadesmem@@6B@ 100b0134 main.cpp.obj - 0002:0001b148 ??_R3?$PatchDetour@P6IH_K@ZPAX@hadesmem@@8 100b0148 main.cpp.obj - 0002:0001b158 ??_R2?$PatchDetour@P6IH_K@ZPAX@hadesmem@@8 100b0158 main.cpp.obj - 0002:0001b164 ??_R1A@?0A@EA@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@8 100b0164 main.cpp.obj - 0002:0001b180 ??_R4?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@6B@ 100b0180 main.cpp.obj - 0002:0001b194 ??_R3?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@8 100b0194 main.cpp.obj - 0002:0001b1a4 ??_R2?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@8 100b01a4 main.cpp.obj - 0002:0001b1b0 ??_R1A@?0A@EA@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@8 100b01b0 main.cpp.obj - 0002:0001b1cc ??_R4?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@6B@ 100b01cc main.cpp.obj - 0002:0001b1e0 ??_R3?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@8 100b01e0 main.cpp.obj - 0002:0001b1f0 ??_R2?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@8 100b01f0 main.cpp.obj - 0002:0001b1fc ??_R1A@?0A@EA@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@8 100b01fc main.cpp.obj - 0002:0001b218 ??_R4?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@6B@ 100b0218 main.cpp.obj - 0002:0001b22c ??_R3?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@8 100b022c main.cpp.obj - 0002:0001b23c ??_R2?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@8 100b023c main.cpp.obj - 0002:0001b248 ??_R1A@?0A@EA@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@8 100b0248 main.cpp.obj - 0002:0001b264 ??_R4?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b0264 main.cpp.obj - 0002:0001b278 ??_R3?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b0278 main.cpp.obj - 0002:0001b288 ??_R2?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b0288 main.cpp.obj - 0002:0001b294 ??_R1A@?0A@EA@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b0294 main.cpp.obj - 0002:0001b2b0 ??_R4?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b02b0 main.cpp.obj - 0002:0001b2c4 ??_R3?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b02c4 main.cpp.obj - 0002:0001b2d4 ??_R2?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b02d4 main.cpp.obj - 0002:0001b2e0 ??_R1A@?0A@EA@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b02e0 main.cpp.obj - 0002:0001b2fc ??_R4?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b02fc main.cpp.obj - 0002:0001b310 ??_R3?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b0310 main.cpp.obj - 0002:0001b320 ??_R2?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b0320 main.cpp.obj - 0002:0001b32c ??_R1A@?0A@EA@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b032c main.cpp.obj - 0002:0001b348 ??_R4?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@6B@ 100b0348 main.cpp.obj - 0002:0001b35c ??_R3?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@8 100b035c main.cpp.obj - 0002:0001b36c ??_R2?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@8 100b036c main.cpp.obj - 0002:0001b378 ??_R1A@?0A@EA@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@8 100b0378 main.cpp.obj - 0002:0001b394 ??_R4?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@6B@ 100b0394 main.cpp.obj - 0002:0001b3a8 ??_R3?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@8 100b03a8 main.cpp.obj - 0002:0001b3b8 ??_R2?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@8 100b03b8 main.cpp.obj - 0002:0001b3c4 ??_R1A@?0A@EA@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@8 100b03c4 main.cpp.obj - 0002:0001b3e0 ??_R4?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@6B@ 100b03e0 main.cpp.obj - 0002:0001b3f4 ??_R3?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@8 100b03f4 main.cpp.obj - 0002:0001b404 ??_R2?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@8 100b0404 main.cpp.obj - 0002:0001b410 ??_R1A@?0A@EA@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@8 100b0410 main.cpp.obj - 0002:0001b42c ??_R4?$PatchDetour@P6IX_K@ZPAX@hadesmem@@6B@ 100b042c main.cpp.obj - 0002:0001b440 ??_R3?$PatchDetour@P6IX_K@ZPAX@hadesmem@@8 100b0440 main.cpp.obj - 0002:0001b450 ??_R2?$PatchDetour@P6IX_K@ZPAX@hadesmem@@8 100b0450 main.cpp.obj - 0002:0001b45c ??_R1A@?0A@EA@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@8 100b045c main.cpp.obj - 0002:0001b478 ??_R4?$PatchDetour@P6IXEH@ZPAX@hadesmem@@6B@ 100b0478 main.cpp.obj - 0002:0001b48c ??_R3?$PatchDetour@P6IXEH@ZPAX@hadesmem@@8 100b048c main.cpp.obj - 0002:0001b49c ??_R2?$PatchDetour@P6IXEH@ZPAX@hadesmem@@8 100b049c main.cpp.obj - 0002:0001b4a8 ??_R1A@?0A@EA@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@8 100b04a8 main.cpp.obj - 0002:0001b4c4 ??_R4?$PatchDetour@P6IXI@ZPAX@hadesmem@@6B@ 100b04c4 main.cpp.obj - 0002:0001b4d8 ??_R3?$PatchDetour@P6IXI@ZPAX@hadesmem@@8 100b04d8 main.cpp.obj - 0002:0001b4e8 ??_R2?$PatchDetour@P6IXI@ZPAX@hadesmem@@8 100b04e8 main.cpp.obj - 0002:0001b4f4 ??_R1A@?0A@EA@?$PatchDetour@P6IXI@ZPAX@hadesmem@@8 100b04f4 main.cpp.obj - 0002:0001b510 ??_R4?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@6B@ 100b0510 main.cpp.obj - 0002:0001b524 ??_R3?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@8 100b0524 main.cpp.obj - 0002:0001b534 ??_R2?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@8 100b0534 main.cpp.obj - 0002:0001b540 ??_R1A@?0A@EA@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@8 100b0540 main.cpp.obj - 0002:0001b55c ??_R4?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@6B@ 100b055c main.cpp.obj - 0002:0001b570 ??_R3?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@8 100b0570 main.cpp.obj - 0002:0001b580 ??_R2?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@8 100b0580 main.cpp.obj - 0002:0001b58c ??_R1A@?0A@EA@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@8 100b058c main.cpp.obj - 0002:0001b5a8 ??_R4?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@6B@ 100b05a8 main.cpp.obj - 0002:0001b5bc ??_R3?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@8 100b05bc main.cpp.obj - 0002:0001b5cc ??_R2?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@8 100b05cc main.cpp.obj - 0002:0001b5d8 ??_R1A@?0A@EA@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@8 100b05d8 main.cpp.obj - 0002:0001b5f4 ??_R4?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@6B@ 100b05f4 main.cpp.obj - 0002:0001b608 ??_R3?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@8 100b0608 main.cpp.obj - 0002:0001b618 ??_R2?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@8 100b0618 main.cpp.obj - 0002:0001b624 ??_R1A@?0A@EA@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@8 100b0624 main.cpp.obj - 0002:0001b640 ??_R4?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@6B@ 100b0640 main.cpp.obj - 0002:0001b654 ??_R3?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@8 100b0654 main.cpp.obj - 0002:0001b664 ??_R2?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@8 100b0664 main.cpp.obj - 0002:0001b670 ??_R1A@?0A@EA@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@8 100b0670 main.cpp.obj - 0002:0001b68c ??_R4?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@6B@ 100b068c main.cpp.obj - 0002:0001b6a0 ??_R3?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@8 100b06a0 main.cpp.obj - 0002:0001b6b0 ??_R2?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@8 100b06b0 main.cpp.obj - 0002:0001b6bc ??_R1A@?0A@EA@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@8 100b06bc main.cpp.obj - 0002:0001b6d8 ??_R4?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@6B@ 100b06d8 main.cpp.obj - 0002:0001b6ec ??_R3?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@8 100b06ec main.cpp.obj - 0002:0001b6fc ??_R2?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@8 100b06fc main.cpp.obj - 0002:0001b708 ??_R1A@?0A@EA@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@8 100b0708 main.cpp.obj - 0002:0001b724 ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0724 main.cpp.obj - 0002:0001b734 ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0734 main.cpp.obj - 0002:0001b73c ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b073c main.cpp.obj - 0002:0001b758 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@8 100b0758 main.cpp.obj - 0002:0001b768 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@8 100b0768 main.cpp.obj - 0002:0001b770 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@8 100b0770 main.cpp.obj - 0002:0001b78c ??_R4?$numpunct@D@std@@6B@ 100b078c main.cpp.obj - 0002:0001b7a0 ??_R3?$numpunct@D@std@@8 100b07a0 main.cpp.obj - 0002:0001b7b0 ??_R2?$numpunct@D@std@@8 100b07b0 main.cpp.obj - 0002:0001b7c4 ??_R1A@?0A@EA@?$numpunct@D@std@@8 100b07c4 main.cpp.obj - 0002:0001b7e0 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@8 100b07e0 main.cpp.obj - 0002:0001b7f0 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@8 100b07f0 main.cpp.obj - 0002:0001b7f8 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@8 100b07f8 main.cpp.obj - 0002:0001b814 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0814 main.cpp.obj - 0002:0001b824 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0824 main.cpp.obj - 0002:0001b82c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b082c main.cpp.obj - 0002:0001b848 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@8 100b0848 main.cpp.obj - 0002:0001b858 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@8 100b0858 main.cpp.obj - 0002:0001b860 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@8 100b0860 main.cpp.obj - 0002:0001b87c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@8 100b087c main.cpp.obj - 0002:0001b88c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@8 100b088c main.cpp.obj - 0002:0001b894 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@8 100b0894 main.cpp.obj - 0002:0001b8b0 ??_R3?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@8 100b08b0 main.cpp.obj - 0002:0001b8c0 ??_R2?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@8 100b08c0 main.cpp.obj - 0002:0001b8c8 ??_R1A@?0A@EA@?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@8 100b08c8 main.cpp.obj - 0002:0001b8e4 ??_R3?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@8 100b08e4 main.cpp.obj - 0002:0001b8f4 ??_R2?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@8 100b08f4 main.cpp.obj - 0002:0001b8fc ??_R1A@?0A@EA@?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@8 100b08fc main.cpp.obj - 0002:0001b918 ??_R3?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@8 100b0918 main.cpp.obj - 0002:0001b928 ??_R2?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@8 100b0928 main.cpp.obj - 0002:0001b930 ??_R1A@?0A@EA@?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@8 100b0930 main.cpp.obj - 0002:0001b94c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@8 100b094c main.cpp.obj - 0002:0001b95c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@8 100b095c main.cpp.obj - 0002:0001b964 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@8 100b0964 main.cpp.obj - 0002:0001b980 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@8 100b0980 main.cpp.obj - 0002:0001b990 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@8 100b0990 main.cpp.obj - 0002:0001b998 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@8 100b0998 main.cpp.obj - 0002:0001b9b4 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@8 100b09b4 main.cpp.obj - 0002:0001b9c4 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@8 100b09c4 main.cpp.obj - 0002:0001b9cc ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@8 100b09cc main.cpp.obj - 0002:0001b9e8 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@8 100b09e8 main.cpp.obj - 0002:0001b9f8 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@8 100b09f8 main.cpp.obj - 0002:0001ba00 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@8 100b0a00 main.cpp.obj - 0002:0001ba1c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@8 100b0a1c main.cpp.obj - 0002:0001ba2c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@8 100b0a2c main.cpp.obj - 0002:0001ba34 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@8 100b0a34 main.cpp.obj - 0002:0001ba50 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@8 100b0a50 main.cpp.obj - 0002:0001ba60 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@8 100b0a60 main.cpp.obj - 0002:0001ba68 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@8 100b0a68 main.cpp.obj - 0002:0001ba84 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@8 100b0a84 main.cpp.obj - 0002:0001ba94 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@8 100b0a94 main.cpp.obj - 0002:0001ba9c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@8 100b0a9c main.cpp.obj - 0002:0001bab8 ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@8 100b0ab8 main.cpp.obj - 0002:0001bac8 ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@8 100b0ac8 main.cpp.obj - 0002:0001bad0 ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@8 100b0ad0 main.cpp.obj - 0002:0001baec ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@8 100b0aec main.cpp.obj - 0002:0001bafc ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@8 100b0afc main.cpp.obj - 0002:0001bb04 ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@8 100b0b04 main.cpp.obj - 0002:0001bb20 ??_R3?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@8 100b0b20 main.cpp.obj - 0002:0001bb30 ??_R2?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@8 100b0b30 main.cpp.obj - 0002:0001bb38 ??_R1A@?0A@EA@?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@8 100b0b38 main.cpp.obj - 0002:0001bb54 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@8 100b0b54 main.cpp.obj - 0002:0001bb64 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@8 100b0b64 main.cpp.obj - 0002:0001bb6c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@8 100b0b6c main.cpp.obj - 0002:0001bb88 ??_R3?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@8 100b0b88 main.cpp.obj - 0002:0001bb98 ??_R2?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@8 100b0b98 main.cpp.obj - 0002:0001bba0 ??_R1A@?0A@EA@?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@8 100b0ba0 main.cpp.obj - 0002:0001bbbc ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@8 100b0bbc main.cpp.obj - 0002:0001bbcc ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@8 100b0bcc main.cpp.obj - 0002:0001bbd4 ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@8 100b0bd4 main.cpp.obj - 0002:0001bbf0 ??_R3?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0bf0 main.cpp.obj - 0002:0001bc00 ??_R2?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0c00 main.cpp.obj - 0002:0001bc08 ??_R1A@?0A@EA@?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0c08 main.cpp.obj - 0002:0001bc24 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@8 100b0c24 main.cpp.obj - 0002:0001bc34 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@8 100b0c34 main.cpp.obj - 0002:0001bc3c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@8 100b0c3c main.cpp.obj - 0002:0001bc58 ??_R3?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0c58 main.cpp.obj - 0002:0001bc68 ??_R2?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0c68 main.cpp.obj - 0002:0001bc70 ??_R1A@?0A@EA@?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b0c70 main.cpp.obj - 0002:0001bc8c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@8 100b0c8c main.cpp.obj - 0002:0001bc9c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@8 100b0c9c main.cpp.obj - 0002:0001bca4 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@8 100b0ca4 main.cpp.obj - 0002:0001bcc0 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@8 100b0cc0 main.cpp.obj - 0002:0001bcd0 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@8 100b0cd0 main.cpp.obj - 0002:0001bcd8 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@8 100b0cd8 main.cpp.obj - 0002:0001bcf4 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@8 100b0cf4 main.cpp.obj - 0002:0001bd04 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@8 100b0d04 main.cpp.obj - 0002:0001bd0c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@8 100b0d0c main.cpp.obj - 0002:0001bd28 ??_R3?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@8 100b0d28 main.cpp.obj - 0002:0001bd38 ??_R2?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@8 100b0d38 main.cpp.obj - 0002:0001bd40 ??_R1A@?0A@EA@?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@8 100b0d40 main.cpp.obj - 0002:0001bd5c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@8 100b0d5c main.cpp.obj - 0002:0001bd6c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@8 100b0d6c main.cpp.obj - 0002:0001bd74 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@8 100b0d74 main.cpp.obj - 0002:0001bd90 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@8 100b0d90 main.cpp.obj - 0002:0001bda0 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@8 100b0da0 main.cpp.obj - 0002:0001bda8 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@8 100b0da8 main.cpp.obj - 0002:0001bdc4 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@8 100b0dc4 main.cpp.obj - 0002:0001bdd4 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@8 100b0dd4 main.cpp.obj - 0002:0001bddc ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@8 100b0ddc main.cpp.obj - 0002:0001bdf8 ??_R4?$wrapexcept@VError@hadesmem@@@boost@@6B@ 100b0df8 main.cpp.obj - 0002:0001be0c ??_R3?$wrapexcept@VError@hadesmem@@@boost@@8 100b0e0c main.cpp.obj - 0002:0001be1c ??_R2?$wrapexcept@VError@hadesmem@@@boost@@8 100b0e1c main.cpp.obj - 0002:0001be38 ??_R1A@?0A@EA@?$wrapexcept@VError@hadesmem@@@boost@@8 100b0e38 main.cpp.obj - 0002:0001be54 ??_R13?0A@EA@Error@hadesmem@@8 100b0e54 main.cpp.obj - 0002:0001be70 ??_R1A@33FA@exception@std@@8 100b0e70 main.cpp.obj - 0002:0001be8c ??_R1A@37FA@exception@boost@@8 100b0e8c main.cpp.obj - 0002:0001bea8 ??_R17?0A@EA@type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b0ea8 main.cpp.obj - 0002:0001bec4 ??_R3type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b0ec4 main.cpp.obj - 0002:0001bed4 ??_R2type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b0ed4 main.cpp.obj - 0002:0001bedc ??_R1A@?0A@EA@type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b0edc main.cpp.obj - 0002:0001bef8 ??_R4?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@std@@@ 100b0ef8 main.cpp.obj - 0002:0001bf0c ??_R4?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@1@@ 100b0f0c main.cpp.obj - 0002:0001bf20 ??_R4?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 100b0f20 main.cpp.obj - 0002:0001bf34 ??_R3?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b0f34 main.cpp.obj - 0002:0001bf44 ??_R2?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b0f44 main.cpp.obj - 0002:0001bf58 ??_R1A@?0A@EA@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b0f58 main.cpp.obj - 0002:0001bf74 ??_R4?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 100b0f74 main.cpp.obj - 0002:0001bf88 ??_R3?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b0f88 main.cpp.obj - 0002:0001bf98 ??_R2?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b0f98 main.cpp.obj - 0002:0001bfa4 ??_R1A@?0A@EA@?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b0fa4 main.cpp.obj - 0002:0001bfc0 ??_R4?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 100b0fc0 main.cpp.obj - 0002:0001bfd4 ??_R3?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b0fd4 main.cpp.obj - 0002:0001bfe4 ??_R2?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b0fe4 main.cpp.obj - 0002:0001bff0 ??_R1A@?0A@EA@?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b0ff0 main.cpp.obj - 0002:0001c00c ??_R4?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 100b100c main.cpp.obj - 0002:0001c020 ??_R3?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@8 100b1020 main.cpp.obj - 0002:0001c030 ??_R2?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@8 100b1030 main.cpp.obj - 0002:0001c04c ??_R1A@?0A@EA@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@8 100b104c main.cpp.obj - 0002:0001c068 ??_R1A@CE@3FA@clone_base@exception_detail@boost@@8 100b1068 main.cpp.obj - 0002:0001c084 ??_R4?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bbad_alloc@std@@@ 100b1084 main.cpp.obj - 0002:0001c098 ??_R4?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6B@ 100b1098 main.cpp.obj - 0002:0001c0ac ??_R4?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 100b10ac main.cpp.obj - 0002:0001c0c0 ??_R3?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@8 100b10c0 main.cpp.obj - 0002:0001c0d0 ??_R2?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@8 100b10d0 main.cpp.obj - 0002:0001c0ec ??_R1A@?0A@EA@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@8 100b10ec main.cpp.obj - 0002:0001c108 ??_R4?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bbad_exception@std@@@ 100b1108 main.cpp.obj - 0002:0001c11c ??_R4?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6B@ 100b111c main.cpp.obj - 0002:0001c130 ??_R4?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@6B@ 100b1130 main.cpp.obj - 0002:0001c144 ??_R3?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@8 100b1144 main.cpp.obj - 0002:0001c154 ??_R2?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@8 100b1154 main.cpp.obj - 0002:0001c160 ??_R1A@?0A@EA@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@8 100b1160 main.cpp.obj - 0002:0001c17c ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@6B@ 100b117c main.cpp.obj - 0002:0001c190 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@8 100b1190 main.cpp.obj - 0002:0001c1a0 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@8 100b11a0 main.cpp.obj - 0002:0001c1ac ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@8 100b11ac main.cpp.obj - 0002:0001c1c8 ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@6B@ 100b11c8 main.cpp.obj - 0002:0001c1dc ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@8 100b11dc main.cpp.obj - 0002:0001c1ec ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@8 100b11ec main.cpp.obj - 0002:0001c1f8 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@8 100b11f8 main.cpp.obj - 0002:0001c214 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@6B@ 100b1214 main.cpp.obj - 0002:0001c228 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@8 100b1228 main.cpp.obj - 0002:0001c238 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@8 100b1238 main.cpp.obj - 0002:0001c244 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@8 100b1244 main.cpp.obj - 0002:0001c260 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@6B@ 100b1260 main.cpp.obj - 0002:0001c274 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@8 100b1274 main.cpp.obj - 0002:0001c284 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@8 100b1284 main.cpp.obj - 0002:0001c290 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@8 100b1290 main.cpp.obj - 0002:0001c2ac ??_R4?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@6B@ 100b12ac main.cpp.obj - 0002:0001c2c0 ??_R3?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@8 100b12c0 main.cpp.obj - 0002:0001c2d0 ??_R2?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@8 100b12d0 main.cpp.obj - 0002:0001c2dc ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@8 100b12dc main.cpp.obj - 0002:0001c2f8 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@6B@ 100b12f8 main.cpp.obj - 0002:0001c30c ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@8 100b130c main.cpp.obj - 0002:0001c31c ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@8 100b131c main.cpp.obj - 0002:0001c328 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@8 100b1328 main.cpp.obj - 0002:0001c344 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@6B@ 100b1344 main.cpp.obj - 0002:0001c358 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@8 100b1358 main.cpp.obj - 0002:0001c368 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@8 100b1368 main.cpp.obj - 0002:0001c374 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@8 100b1374 main.cpp.obj - 0002:0001c390 ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@6B@ 100b1390 main.cpp.obj - 0002:0001c3a4 ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@8 100b13a4 main.cpp.obj - 0002:0001c3b4 ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@8 100b13b4 main.cpp.obj - 0002:0001c3c0 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@8 100b13c0 main.cpp.obj - 0002:0001c3dc ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@6B@ 100b13dc main.cpp.obj - 0002:0001c3f0 ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@8 100b13f0 main.cpp.obj - 0002:0001c400 ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@8 100b1400 main.cpp.obj - 0002:0001c40c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@8 100b140c main.cpp.obj - 0002:0001c428 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@6B@ 100b1428 main.cpp.obj - 0002:0001c43c ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@8 100b143c main.cpp.obj - 0002:0001c44c ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@8 100b144c main.cpp.obj - 0002:0001c458 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@8 100b1458 main.cpp.obj - 0002:0001c474 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@6B@ 100b1474 main.cpp.obj - 0002:0001c488 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@8 100b1488 main.cpp.obj - 0002:0001c498 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@8 100b1498 main.cpp.obj - 0002:0001c4a4 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@8 100b14a4 main.cpp.obj - 0002:0001c4c0 ??_R4?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@6B@ 100b14c0 main.cpp.obj - 0002:0001c4d4 ??_R3?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@8 100b14d4 main.cpp.obj - 0002:0001c4e4 ??_R2?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@8 100b14e4 main.cpp.obj - 0002:0001c4f0 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@8 100b14f0 main.cpp.obj - 0002:0001c50c ??_R4?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@6B@ 100b150c main.cpp.obj - 0002:0001c520 ??_R3?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@8 100b1520 main.cpp.obj - 0002:0001c530 ??_R2?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@8 100b1530 main.cpp.obj - 0002:0001c53c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@8 100b153c main.cpp.obj - 0002:0001c558 ??_R4?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@6B@ 100b1558 main.cpp.obj - 0002:0001c56c ??_R3?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@8 100b156c main.cpp.obj - 0002:0001c57c ??_R2?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@8 100b157c main.cpp.obj - 0002:0001c588 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@8 100b1588 main.cpp.obj - 0002:0001c5a4 ??_R4?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@6B@ 100b15a4 main.cpp.obj - 0002:0001c5b8 ??_R3?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@8 100b15b8 main.cpp.obj - 0002:0001c5c8 ??_R2?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@8 100b15c8 main.cpp.obj - 0002:0001c5d4 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@8 100b15d4 main.cpp.obj - 0002:0001c5f0 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@6B@ 100b15f0 main.cpp.obj - 0002:0001c604 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@8 100b1604 main.cpp.obj - 0002:0001c614 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@8 100b1614 main.cpp.obj - 0002:0001c620 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@8 100b1620 main.cpp.obj - 0002:0001c63c ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@6B@ 100b163c main.cpp.obj - 0002:0001c650 ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@8 100b1650 main.cpp.obj - 0002:0001c660 ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@8 100b1660 main.cpp.obj - 0002:0001c66c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@8 100b166c main.cpp.obj - 0002:0001c688 ??_R4?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@6B@ 100b1688 main.cpp.obj - 0002:0001c69c ??_R3?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@8 100b169c main.cpp.obj - 0002:0001c6ac ??_R2?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@8 100b16ac main.cpp.obj - 0002:0001c6b8 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@8 100b16b8 main.cpp.obj - 0002:0001c6d4 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@6B@ 100b16d4 main.cpp.obj - 0002:0001c6e8 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@8 100b16e8 main.cpp.obj - 0002:0001c6f8 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@8 100b16f8 main.cpp.obj - 0002:0001c704 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@8 100b1704 main.cpp.obj - 0002:0001c720 ??_R4?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@6B@ 100b1720 main.cpp.obj - 0002:0001c734 ??_R3?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@8 100b1734 main.cpp.obj - 0002:0001c744 ??_R2?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@8 100b1744 main.cpp.obj - 0002:0001c750 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@8 100b1750 main.cpp.obj - 0002:0001c76c ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@6B@ 100b176c main.cpp.obj - 0002:0001c780 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@8 100b1780 main.cpp.obj - 0002:0001c790 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@8 100b1790 main.cpp.obj - 0002:0001c79c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@8 100b179c main.cpp.obj - 0002:0001c7b8 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@6B@ 100b17b8 main.cpp.obj - 0002:0001c7cc ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@8 100b17cc main.cpp.obj - 0002:0001c7dc ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@8 100b17dc main.cpp.obj - 0002:0001c7e8 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@8 100b17e8 main.cpp.obj - 0002:0001c804 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@6B@ 100b1804 main.cpp.obj - 0002:0001c818 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@8 100b1818 main.cpp.obj - 0002:0001c828 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@8 100b1828 main.cpp.obj - 0002:0001c834 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@8 100b1834 main.cpp.obj - 0002:0001c850 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@6B@ 100b1850 main.cpp.obj - 0002:0001c864 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@8 100b1864 main.cpp.obj - 0002:0001c874 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@8 100b1874 main.cpp.obj - 0002:0001c880 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@8 100b1880 main.cpp.obj - 0002:0001c89c ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@6B@ 100b189c main.cpp.obj - 0002:0001c8b0 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@8 100b18b0 main.cpp.obj - 0002:0001c8c0 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@8 100b18c0 main.cpp.obj - 0002:0001c8cc ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@8 100b18cc main.cpp.obj - 0002:0001c8e8 ??_R4?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@6B@ 100b18e8 main.cpp.obj - 0002:0001c8fc ??_R3?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@8 100b18fc main.cpp.obj - 0002:0001c90c ??_R2?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@8 100b190c main.cpp.obj - 0002:0001c918 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@8 100b1918 main.cpp.obj - 0002:0001c934 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@6B@ 100b1934 main.cpp.obj - 0002:0001c948 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@8 100b1948 main.cpp.obj - 0002:0001c958 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@8 100b1958 main.cpp.obj - 0002:0001c964 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@8 100b1964 main.cpp.obj - 0002:0001c980 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@6B@ 100b1980 main.cpp.obj - 0002:0001c994 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@8 100b1994 main.cpp.obj - 0002:0001c9a4 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@8 100b19a4 main.cpp.obj - 0002:0001c9b0 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@8 100b19b0 main.cpp.obj - 0002:0001c9cc ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@6B@ 100b19cc main.cpp.obj - 0002:0001c9e0 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@8 100b19e0 main.cpp.obj - 0002:0001c9f0 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@8 100b19f0 main.cpp.obj - 0002:0001c9fc ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@8 100b19fc main.cpp.obj - 0002:0001ca18 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@6B@ 100b1a18 main.cpp.obj - 0002:0001ca2c ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@8 100b1a2c main.cpp.obj - 0002:0001ca3c ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@8 100b1a3c main.cpp.obj - 0002:0001ca48 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@8 100b1a48 main.cpp.obj - 0002:0001ca64 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@6B@ 100b1a64 main.cpp.obj - 0002:0001ca78 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@8 100b1a78 main.cpp.obj - 0002:0001ca88 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@8 100b1a88 main.cpp.obj - 0002:0001ca94 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@8 100b1a94 main.cpp.obj - 0002:0001cab0 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@6B@ 100b1ab0 main.cpp.obj - 0002:0001cac4 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@8 100b1ac4 main.cpp.obj - 0002:0001cad4 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@8 100b1ad4 main.cpp.obj - 0002:0001cae0 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@8 100b1ae0 main.cpp.obj - 0002:0001cafc ??_R4?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 100b1afc main.cpp.obj - 0002:0001cb10 ??_R3?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b1b10 main.cpp.obj - 0002:0001cb20 ??_R2?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b1b20 main.cpp.obj - 0002:0001cb2c ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b1b2c main.cpp.obj - 0002:0001cb48 ??_R4?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 100b1b48 main.cpp.obj - 0002:0001cb5c ??_R3?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b1b5c main.cpp.obj - 0002:0001cb6c ??_R2?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b1b6c main.cpp.obj - 0002:0001cb78 ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b1b78 main.cpp.obj - 0002:0001cb94 ??_R4?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@6B@ 100b1b94 main.cpp.obj - 0002:0001cba8 ??_R3?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@8 100b1ba8 main.cpp.obj - 0002:0001cbb8 ??_R2?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@8 100b1bb8 main.cpp.obj - 0002:0001cbc4 ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@8 100b1bc4 main.cpp.obj - 0002:0001cbe0 ??_R4?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@6B@ 100b1be0 main.cpp.obj - 0002:0001cbf4 ??_R3?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@8 100b1bf4 main.cpp.obj - 0002:0001cc04 ??_R2?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@8 100b1c04 main.cpp.obj - 0002:0001cc10 ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@8 100b1c10 main.cpp.obj - 0002:0001cc2c ??_R4bad_typeid@std@@6B@ 100b1c2c libvcruntime:rtti.obj - 0002:0001cc40 ??_R3bad_typeid@std@@8 100b1c40 libvcruntime:rtti.obj - 0002:0001cc50 ??_R2bad_typeid@std@@8 100b1c50 libvcruntime:rtti.obj - 0002:0001cc5c ??_R1A@?0A@EA@bad_typeid@std@@8 100b1c5c libvcruntime:rtti.obj - 0002:0001cc78 ??_R4__non_rtti_object@std@@6B@ 100b1c78 libvcruntime:rtti.obj - 0002:0001cc8c ??_R3__non_rtti_object@std@@8 100b1c8c libvcruntime:rtti.obj - 0002:0001cc9c ??_R2__non_rtti_object@std@@8 100b1c9c libvcruntime:rtti.obj - 0002:0001ccac ??_R1A@?0A@EA@__non_rtti_object@std@@8 100b1cac libvcruntime:rtti.obj - 0002:0001ccc8 ??_R4DNameNode@@6B@ 100b1cc8 libvcruntime:undname.obj - 0002:0001ccdc ??_R3DNameNode@@8 100b1cdc libvcruntime:undname.obj - 0002:0001ccec ??_R2DNameNode@@8 100b1cec libvcruntime:undname.obj - 0002:0001ccf4 ??_R1A@?0A@EA@DNameNode@@8 100b1cf4 libvcruntime:undname.obj - 0002:0001cd10 ??_R4charNode@@6B@ 100b1d10 libvcruntime:undname.obj - 0002:0001cd24 ??_R3charNode@@8 100b1d24 libvcruntime:undname.obj - 0002:0001cd34 ??_R2charNode@@8 100b1d34 libvcruntime:undname.obj - 0002:0001cd40 ??_R1A@?0A@EA@charNode@@8 100b1d40 libvcruntime:undname.obj - 0002:0001cd5c ??_R4pcharNode@@6B@ 100b1d5c libvcruntime:undname.obj - 0002:0001cd70 ??_R3pcharNode@@8 100b1d70 libvcruntime:undname.obj - 0002:0001cd80 ??_R2pcharNode@@8 100b1d80 libvcruntime:undname.obj - 0002:0001cd8c ??_R1A@?0A@EA@pcharNode@@8 100b1d8c libvcruntime:undname.obj - 0002:0001cda8 ??_R4pDNameNode@@6B@ 100b1da8 libvcruntime:undname.obj - 0002:0001cdbc ??_R3pDNameNode@@8 100b1dbc libvcruntime:undname.obj - 0002:0001cdcc ??_R2pDNameNode@@8 100b1dcc libvcruntime:undname.obj - 0002:0001cdd8 ??_R1A@?0A@EA@pDNameNode@@8 100b1dd8 libvcruntime:undname.obj - 0002:0001cdf4 ??_R4DNameStatusNode@@6B@ 100b1df4 libvcruntime:undname.obj - 0002:0001ce08 ??_R3DNameStatusNode@@8 100b1e08 libvcruntime:undname.obj - 0002:0001ce18 ??_R2DNameStatusNode@@8 100b1e18 libvcruntime:undname.obj - 0002:0001ce24 ??_R1A@?0A@EA@DNameStatusNode@@8 100b1e24 libvcruntime:undname.obj - 0002:0001ce40 ??_R4pairNode@@6B@ 100b1e40 libvcruntime:undname.obj - 0002:0001ce54 ??_R3pairNode@@8 100b1e54 libvcruntime:undname.obj - 0002:0001ce64 ??_R2pairNode@@8 100b1e64 libvcruntime:undname.obj - 0002:0001ce70 ??_R1A@?0A@EA@pairNode@@8 100b1e70 libvcruntime:undname.obj - 0002:0001ce8c ??_R4bad_function_call@std@@6B@ 100b1e8c libcpmt:xthrow.obj - 0002:0001cea0 ??_R3bad_function_call@std@@8 100b1ea0 libcpmt:xthrow.obj - 0002:0001ceb0 ??_R2bad_function_call@std@@8 100b1eb0 libcpmt:xthrow.obj - 0002:0001cebc ??_R1A@?0A@EA@bad_function_call@std@@8 100b1ebc libcpmt:xthrow.obj - 0002:0001ced8 ??_R4logic_error@std@@6B@ 100b1ed8 libcpmt:xthrow.obj - 0002:0001ceec ??_R3logic_error@std@@8 100b1eec libcpmt:xthrow.obj - 0002:0001cefc ??_R2logic_error@std@@8 100b1efc libcpmt:xthrow.obj - 0002:0001cf08 ??_R1A@?0A@EA@logic_error@std@@8 100b1f08 libcpmt:xthrow.obj - 0002:0001cf24 ??_R4invalid_argument@std@@6B@ 100b1f24 libcpmt:xthrow.obj - 0002:0001cf38 ??_R3invalid_argument@std@@8 100b1f38 libcpmt:xthrow.obj - 0002:0001cf48 ??_R2invalid_argument@std@@8 100b1f48 libcpmt:xthrow.obj - 0002:0001cf58 ??_R1A@?0A@EA@invalid_argument@std@@8 100b1f58 libcpmt:xthrow.obj - 0002:0001cf74 ??_R4length_error@std@@6B@ 100b1f74 libcpmt:xthrow.obj - 0002:0001cf88 ??_R3length_error@std@@8 100b1f88 libcpmt:xthrow.obj - 0002:0001cf98 ??_R2length_error@std@@8 100b1f98 libcpmt:xthrow.obj - 0002:0001cfa8 ??_R1A@?0A@EA@length_error@std@@8 100b1fa8 libcpmt:xthrow.obj - 0002:0001cfc4 ??_R4out_of_range@std@@6B@ 100b1fc4 libcpmt:xthrow.obj - 0002:0001cfd8 ??_R3out_of_range@std@@8 100b1fd8 libcpmt:xthrow.obj - 0002:0001cfe8 ??_R2out_of_range@std@@8 100b1fe8 libcpmt:xthrow.obj - 0002:0001cff8 ??_R1A@?0A@EA@out_of_range@std@@8 100b1ff8 libcpmt:xthrow.obj - 0002:0001d014 ??_R4_Locimp@locale@std@@6B@ 100b2014 libcpmt:locale0.obj - 0002:0001d028 ??_R3_Locimp@locale@std@@8 100b2028 libcpmt:locale0.obj - 0002:0001d038 ??_R2_Locimp@locale@std@@8 100b2038 libcpmt:locale0.obj - 0002:0001d04c ??_R1A@?0A@EA@_Locimp@locale@std@@8 100b204c libcpmt:locale0.obj - 0002:0001d068 ??_R4type_info@@6B@ 100b2068 LIBCMT:std_type_info_static.obj - 0002:0001d07c ??_R3type_info@@8 100b207c LIBCMT:std_type_info_static.obj - 0002:0001d08c ??_R2type_info@@8 100b208c LIBCMT:std_type_info_static.obj - 0002:0001d094 ??_R1A@?0A@EA@type_info@@8 100b2094 LIBCMT:std_type_info_static.obj - 0002:0001d0b0 ___safe_se_handler_table 100b20b0 - 0002:0001d4ac ___volatile_metadata 100b24ac - 0002:0001d95c ___rtc_iaa 100b295c LIBCMT:initsect.obj - 0002:0001d960 ___rtc_izz 100b2960 LIBCMT:initsect.obj - 0002:0001d964 ___rtc_taa 100b2964 LIBCMT:initsect.obj - 0002:0001d968 ___rtc_tzz 100b2968 LIBCMT:initsect.obj - 0002:0001d96c __tls_start 100b296c LIBCMT:tlssup.obj - 0002:0001d970 ?orig_user_ptr@?1??GetOriginalArbitraryUserPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ@4PAXA 100b2970 main.cpp.obj - 0002:0001d974 ?ret_address_ptr@?1??GetReturnAddressPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ@4PAXA 100b2974 main.cpp.obj - 0002:0001d978 __Init_thread_epoch 100b2978 LIBCMT:thread_safe_statics.obj - 0002:0001d97c __tls_end 100b297c LIBCMT:tlssup.obj - 0002:0001dc08 __CT??_R0?AVexception@std@@@8??0exception@std@@QAE@ABV01@@Z12 100b2c08 logging.cpp.obj - 0002:0001dc24 __TI3?AVbad_array_new_length@std@@ 100b2c24 logging.cpp.obj - 0002:0001dc34 __CTA3?AVbad_array_new_length@std@@ 100b2c34 logging.cpp.obj - 0002:0001dc44 __CT??_R0?AVbad_array_new_length@std@@@8??0bad_array_new_length@std@@QAE@ABV01@@Z12 100b2c44 logging.cpp.obj - 0002:0001dc60 __CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QAE@ABV01@@Z12 100b2c60 logging.cpp.obj - 0002:0001dc7c __CT??_R0?AVruntime_error@std@@@8??0runtime_error@std@@QAE@ABV01@@Z12 100b2c7c logging.cpp.obj - 0002:0001dc98 __CT??_R0?AVsystem_error@std@@@8??0system_error@std@@QAE@ABV01@@Z20 100b2c98 logging.cpp.obj - 0002:0001dcb4 __CT??_R0?AV_System_error@std@@@8??0_System_error@std@@QAE@ABV01@@Z20 100b2cb4 logging.cpp.obj - 0002:0001dcd0 __TI2?AVbad_cast@std@@ 100b2cd0 logging.cpp.obj - 0002:0001dce0 __CTA2?AVbad_cast@std@@ 100b2ce0 logging.cpp.obj - 0002:0001dcec __CT??_R0?AVbad_cast@std@@@8??0bad_cast@std@@QAE@ABV01@@Z12 100b2cec logging.cpp.obj - 0002:0001dd08 __TI5?AVfailure@ios_base@std@@ 100b2d08 logging.cpp.obj - 0002:0001dd18 __CTA5?AVfailure@ios_base@std@@ 100b2d18 logging.cpp.obj - 0002:0001dd30 __CT??_R0?AVfailure@ios_base@std@@@8??0failure@ios_base@std@@QAE@ABV012@@Z20 100b2d30 logging.cpp.obj - 0002:00022c3c __CT??_R0?AVclone_base@exception_detail@boost@@@8??0clone_base@exception_detail@boost@@QAE@ABV012@@Z4 100b7c3c main.cpp.obj - 0002:00022c58 __TI6?AU?$wrapexcept@VError@hadesmem@@@boost@@ 100b7c58 main.cpp.obj - 0002:00022c68 __CTA6?AU?$wrapexcept@VError@hadesmem@@@boost@@ 100b7c68 main.cpp.obj - 0002:00022c84 __CT??_R0?AU?$wrapexcept@VError@hadesmem@@@boost@@@8??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z44 100b7c84 main.cpp.obj - 0002:00022ca0 __CT??_R0?AVError@hadesmem@@@8??0Error@hadesmem@@QAE@ABV01@@Z404 100b7ca0 main.cpp.obj - 0002:00022cbc __CT??_R0?AVexception@std@@@8??0exception@std@@QAE@ABV01@@Z12044 100b7cbc main.cpp.obj - 0002:00022cd8 __CT??_R0?AVexception@boost@@@8??0exception@boost@@QAE@ABV01@@Z24048 100b7cd8 main.cpp.obj - 0002:00022cf4 __CT??_R0?AUtype@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@@818 100b7cf4 main.cpp.obj - 0002:00022d10 __TI6?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@ 100b7d10 main.cpp.obj - 0002:00022d20 __CTA6?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@ 100b7d20 main.cpp.obj - 0002:00022d3c __CT??_R0?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@8??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z48 100b7d3c main.cpp.obj - 0002:00022d58 __CT??_R0?AUbad_exception_@exception_detail@boost@@@8??0bad_exception_@exception_detail@boost@@QAE@ABU012@@Z36 100b7d58 main.cpp.obj - 0002:00022d74 __CT??_R0?AVexception@boost@@@8??0exception@boost@@QAE@ABV01@@Z24 100b7d74 main.cpp.obj - 0002:00022d90 __CT??_R0?AVbad_exception@std@@@8??0bad_exception@std@@QAE@ABV01@@Z1224 100b7d90 main.cpp.obj - 0002:00022dac __CT??_R0?AVexception@std@@@8??0exception@std@@QAE@ABV01@@Z1224 100b7dac main.cpp.obj - 0002:00022dc8 __CT??_R0?AVclone_base@exception_detail@boost@@@8??0clone_base@exception_detail@boost@@QAE@ABV012@@Z40364 100b7dc8 main.cpp.obj - 0002:00022de4 __TI6?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@ 100b7de4 main.cpp.obj - 0002:00022df4 __CTA6?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@ 100b7df4 main.cpp.obj - 0002:00022e10 __CT??_R0?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@8??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z48 100b7e10 main.cpp.obj - 0002:00022e2c __CT??_R0?AUbad_alloc_@exception_detail@boost@@@8??0bad_alloc_@exception_detail@boost@@QAE@ABU012@@Z36 100b7e2c main.cpp.obj - 0002:00022e48 __CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QAE@ABV01@@Z1224 100b7e48 main.cpp.obj - 0002:00023a5c __TI3?AV__non_rtti_object@std@@ 100b8a5c libvcruntime:rtti.obj - 0002:00023a6c __CTA3?AV__non_rtti_object@std@@ 100b8a6c libvcruntime:rtti.obj - 0002:00023a7c __CT??_R0?AV__non_rtti_object@std@@@8??0__non_rtti_object@std@@QAE@ABV01@@Z12 100b8a7c libvcruntime:rtti.obj - 0002:00023a98 __CT??_R0?AVbad_typeid@std@@@8??0bad_typeid@std@@QAE@ABV01@@Z12 100b8a98 libvcruntime:rtti.obj - 0002:00023ab4 __TI2?AVbad_typeid@std@@ 100b8ab4 libvcruntime:rtti.obj - 0002:00023ac4 __CTA2?AVbad_typeid@std@@ 100b8ac4 libvcruntime:rtti.obj - 0002:00023bb4 __TI2?AVbad_exception@std@@ 100b8bb4 libvcruntime:frame.obj - 0002:00023bc4 __CTA2?AVbad_exception@std@@ 100b8bc4 libvcruntime:frame.obj - 0002:00023bd0 __CT??_R0?AVbad_exception@std@@@8??0bad_exception@std@@QAE@ABV01@@Z12 100b8bd0 libvcruntime:frame.obj - 0002:00024208 __TI2?AVbad_alloc@std@@ 100b9208 libcpmt:xthrow.obj - 0002:00024218 __CTA2?AVbad_alloc@std@@ 100b9218 libcpmt:xthrow.obj - 0002:00024224 __TI3?AVinvalid_argument@std@@ 100b9224 libcpmt:xthrow.obj - 0002:00024234 __CTA3?AVinvalid_argument@std@@ 100b9234 libcpmt:xthrow.obj - 0002:00024244 __CT??_R0?AVinvalid_argument@std@@@8??0invalid_argument@std@@QAE@ABV01@@Z12 100b9244 libcpmt:xthrow.obj - 0002:00024260 __CT??_R0?AVlogic_error@std@@@8??0logic_error@std@@QAE@ABV01@@Z12 100b9260 libcpmt:xthrow.obj - 0002:0002427c __TI3?AVlength_error@std@@ 100b927c libcpmt:xthrow.obj - 0002:0002428c __CTA3?AVlength_error@std@@ 100b928c libcpmt:xthrow.obj - 0002:0002429c __CT??_R0?AVlength_error@std@@@8??0length_error@std@@QAE@ABV01@@Z12 100b929c libcpmt:xthrow.obj - 0002:000242b8 __TI3?AVout_of_range@std@@ 100b92b8 libcpmt:xthrow.obj - 0002:000242c8 __CTA3?AVout_of_range@std@@ 100b92c8 libcpmt:xthrow.obj - 0002:000242d8 __CT??_R0?AVout_of_range@std@@@8??0out_of_range@std@@QAE@ABV01@@Z12 100b92d8 libcpmt:xthrow.obj - 0002:000242f4 __TI2?AVruntime_error@std@@ 100b92f4 libcpmt:xthrow.obj - 0002:00024304 __CTA2?AVruntime_error@std@@ 100b9304 libcpmt:xthrow.obj - 0002:00024310 __TI2?AVbad_function_call@std@@ 100b9310 libcpmt:xthrow.obj - 0002:00024320 __CTA2?AVbad_function_call@std@@ 100b9320 libcpmt:xthrow.obj - 0002:0002432c __CT??_R0?AVbad_function_call@std@@@8??0bad_function_call@std@@QAE@ABV01@@Z12 100b932c libcpmt:xthrow.obj - 0002:000244c4 __IMPORT_DESCRIPTOR_KERNEL32 100b94c4 kernel32:KERNEL32.dll - 0002:000244d8 __IMPORT_DESCRIPTOR_USER32 100b94d8 user32:USER32.dll - 0002:000244ec __NULL_IMPORT_DESCRIPTOR 100b94ec kernel32:KERNEL32.dll - 0003:00000000 ?debugLogFile@Nampower@@3V?$basic_ofstream@DU?$char_traits@D@std@@@std@@A 100ba000 logging.cpp.obj - 0003:000000b0 ?_Static@?1???$_Immortalize_memcpy_image@V_Iostream_error_category2@std@@@std@@YAABV_Iostream_error_category2@1@XZ@4U?$_Constexpr_immortalize_impl@V_Iostream_error_category2@std@@@1@A 100ba0b0 logging.cpp.obj - 0003:000000b8 ?gNextCastId@Nampower@@3_KA 100ba0b8 main.cpp.obj - 0003:000000c0 ?gUserSettings@Nampower@@3UUserSettings@@A 100ba0c0 main.cpp.obj - 0003:00000108 ?lua_error@Nampower@@3P6AXPAIPBD@ZA 100ba108 helper.cpp.obj - 0003:0000010c ?lua_gettop@Nampower@@3P6IHPAI@ZA 100ba10c helper.cpp.obj - 0003:00000110 ?lua_settop@Nampower@@3P6IXPAIH@ZA 100ba110 helper.cpp.obj - 0003:00000114 ?lua_type@Nampower@@3P6IHPAIH@ZA 100ba114 helper.cpp.obj - 0003:00000118 ?lua_isstring@Nampower@@3P6I_NPAIH@ZA 100ba118 helper.cpp.obj - 0003:0000011c ?lua_isnumber@Nampower@@3P6I_NPAIH@ZA 100ba11c helper.cpp.obj - 0003:00000120 ?lua_toflag@Nampower@@3P6IIPAIHI@ZA 100ba120 helper.cpp.obj - 0003:00000124 ?lua_tostring@Nampower@@3P6IPADPAIH@ZA 100ba124 helper.cpp.obj - 0003:00000128 ?lua_tonumber@Nampower@@3P6INPAIH@ZA 100ba128 helper.cpp.obj - 0003:0000012c ?lua_pushnumber@Nampower@@3P6IXPAIN@ZA 100ba12c helper.cpp.obj - 0003:00000130 ?lua_pushstring@Nampower@@3P6IXPAIPAD@ZA 100ba130 helper.cpp.obj - 0003:00000134 ?lua_pushnil@Nampower@@3P6IXPAI@ZA 100ba134 helper.cpp.obj - 0003:00000138 ?lua_newtable@Nampower@@3P6IXPAI@ZA 100ba138 helper.cpp.obj - 0003:0000013c ?lua_settable@Nampower@@3P6IXPAIH@ZA 100ba13c helper.cpp.obj - 0003:00000140 ?luaL_ref@Nampower@@3P6IHPAIH@ZA 100ba140 helper.cpp.obj - 0003:00000144 ?lua_touserdata@Nampower@@3P6IPAXPAIH@ZA 100ba144 helper.cpp.obj - 0003:00000148 ?lua_rawgeti@Nampower@@3P6IXPAIHH@ZA 100ba148 helper.cpp.obj - 0003:0000014c ?luaL_unref@Nampower@@3P6IXPAIHH@ZA 100ba14c helper.cpp.obj - 0003:00000238 ?gScriptPriority@Nampower@@3HA 100ba238 misc_scripts.cpp.obj - 0003:00000590 __NLG_Destination 100ba590 libvcruntime:exsup.obj - 0003:000005a0 __iob 100ba5a0 libucrt:_file.obj - 0003:00000650 ___abort_behavior 100ba650 libucrt:abort.obj - 0003:00000660 ___acrt_lconv_c 100ba660 libucrt:localeconv.obj - 0003:000006b0 ___acrt_lconv 100ba6b0 libucrt:localeconv.obj - 0003:000006b4 ___acrt_lconv_static_decimal 100ba6b4 libucrt:localeconv.obj - 0003:000006b8 ___acrt_lconv_static_W_decimal 100ba6b8 libucrt:localeconv.obj - 0003:000006c8 ___acrt_initial_locale_data 100ba6c8 libucrt:nlsdata.obj - 0003:00000780 ___acrt_initial_locale_pointers 100ba780 libucrt:nlsdata.obj - 0003:00000788 ___acrt_wide_c_locale_string 100ba788 libucrt:nlsdata.obj - 0003:0000078c ___mb_cur_max 100ba78c libucrt:nlsdata.obj - 0003:00000790 ___badioinfo 100ba790 libucrt:ioinit.obj - 0003:000007c8 __lookuptrailbytes 100ba7c8 libucrt:read.obj - 0003:000008cc __pctype 100ba8cc libucrt:ctype.obj - 0003:000008d0 __pwctype 100ba8d0 libucrt:ctype.obj - 0003:00000a80 ___acrt_initial_multibyte_data 100baa80 libucrt:mbctype.obj - 0003:00000fa0 ___globallocalestatus 100bafa0 libucrt:glstatus.obj - 0003:00000fc4 ?_Sync@ios_base@std@@0_NA 100bafc4 libcpmt:ios.obj - 0003:0000101c ___scrt_native_dllmain_reason 100bb01c LIBCMT:utility.obj - 0003:00001040 ___security_cookie 100bb040 LIBCMT:gs_cookie.obj - 0003:00001080 ___security_cookie_complement 100bb080 LIBCMT:gs_cookie.obj - 0003:00001090 __Init_global_epoch 100bb090 LIBCMT:thread_safe_statics.obj - 0003:000010a0 __fltused 100bb0a0 LIBCMT:fltused.obj - 0003:000010b0 ___isa_inverted 100bb0b0 LIBCMT:cpu_disp.obj - 0003:000010b8 ___isa_enabled 100bb0b8 LIBCMT:cpu_disp.obj - 0003:000010c0 _ud_lookup_table_list 100bb0c0 udis86:itab.obj - 0003:000025b8 _ud_itab 100bc5b8 udis86:itab.obj - 0003:000138e0 ??_R0?AVexception@std@@@8 100cd8e0 logging.cpp.obj - 0003:000138fc ??_R0?AVbad_array_new_length@std@@@8 100cd8fc logging.cpp.obj - 0003:00013924 ??_R0?AVbad_alloc@std@@@8 100cd924 logging.cpp.obj - 0003:00013940 ??_R0?AVruntime_error@std@@@8 100cd940 logging.cpp.obj - 0003:00013960 ??_R0?AVsystem_error@std@@@8 100cd960 logging.cpp.obj - 0003:00013980 ??_R0?AV_System_error@std@@@8 100cd980 logging.cpp.obj - 0003:000139a0 ??_R0?AVbad_cast@std@@@8 100cd9a0 logging.cpp.obj - 0003:000139bc ??_R0?AVfailure@ios_base@std@@@8 100cd9bc logging.cpp.obj - 0003:000139e0 ??_R0?AVexception@boost@@@8 100cd9e0 main.cpp.obj - 0003:00013a00 ??_R0?AVclone_base@exception_detail@boost@@@8 100cda00 main.cpp.obj - 0003:00013a30 ??_R0?AVbad_exception@std@@@8 100cda30 main.cpp.obj - 0003:00013a50 ??_R0?AVError@hadesmem@@@8 100cda50 main.cpp.obj - 0003:00013a70 ??_R0?AU?$wrapexcept@VError@hadesmem@@@boost@@@8 100cda70 main.cpp.obj - 0003:00013aa8 ??_R0?AUtype@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@@8 100cdaa8 main.cpp.obj - 0003:00013b08 ??_R0P6IXPAVPatchDetourBase@hadesmem@@@Z@8 100cdb08 main.cpp.obj - 0003:00013b38 ??_R0P6IHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100cdb38 main.cpp.obj - 0003:00013b68 ??_R0P6GXPAVPatchDetourBase@hadesmem@@@Z@8 100cdb68 main.cpp.obj - 0003:00013b98 ??_R0P6IXPAVPatchDetourBase@hadesmem@@HI@Z@8 100cdb98 main.cpp.obj - 0003:00013bc8 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAX1I@Z@8 100cdbc8 main.cpp.obj - 0003:00013bfc ??_R0P6IXPAVPatchDetourBase@hadesmem@@IH_K@Z@8 100cdbfc main.cpp.obj - 0003:00013c30 ??_R0P6I_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@8 100cdc30 main.cpp.obj - 0003:00013c78 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@8 100cdc78 main.cpp.obj - 0003:00013cc0 ??_R0P6IXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@8 100cdcc0 main.cpp.obj - 0003:00013d08 ??_R0P6IXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@8 100cdd08 main.cpp.obj - 0003:00013d54 ??_R0P6IPAHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100cdd54 main.cpp.obj - 0003:00013d88 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@8 100cdd88 main.cpp.obj - 0003:00013dd4 ??_R0P6IIPAVPatchDetourBase@hadesmem@@PAI@Z@8 100cddd4 main.cpp.obj - 0003:00013e04 ??_R0P6IHPAVPatchDetourBase@hadesmem@@_K@Z@8 100cde04 main.cpp.obj - 0003:00013e38 ??_R0P6IIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@8 100cde38 main.cpp.obj - 0003:00013e84 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAXHH@Z@8 100cde84 main.cpp.obj - 0003:00013eb8 ??_R0P6I_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@8 100cdeb8 main.cpp.obj - 0003:00013ef0 ??_R0P6GHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@8 100cdef0 main.cpp.obj - 0003:00013f38 ??_R0P6IHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@8 100cdf38 main.cpp.obj - 0003:00013f80 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@8 100cdf80 main.cpp.obj - 0003:00013fcc ??_R0P6IXPAVPatchDetourBase@hadesmem@@IHH@Z@8 100cdfcc main.cpp.obj - 0003:00013ffc ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@8 100cdffc main.cpp.obj - 0003:00014034 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@8 100ce034 main.cpp.obj - 0003:0001406c ??_R0P6IXPAVPatchDetourBase@hadesmem@@_K@Z@8 100ce06c main.cpp.obj - 0003:0001409c ??_R0P6IXPAVPatchDetourBase@hadesmem@@EH@Z@8 100ce09c main.cpp.obj - 0003:000140cc ??_R0P6IXPAVPatchDetourBase@hadesmem@@I@Z@8 100ce0cc main.cpp.obj - 0003:000140fc ??_R0P6IIPAVPatchDetourBase@hadesmem@@PAI11@Z@8 100ce0fc main.cpp.obj - 0003:00014130 ??_R0P6I_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@8 100ce130 main.cpp.obj - 0003:00014174 ??_R0P6I_KPAVPatchDetourBase@hadesmem@@PBD@Z@8 100ce174 main.cpp.obj - 0003:000141a8 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PA_KI@Z@8 100ce1a8 main.cpp.obj - 0003:000141dc ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAX1II@Z@8 100ce1dc main.cpp.obj - 0003:00014210 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAI@Z@8 100ce210 main.cpp.obj - 0003:00014240 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@8 100ce240 main.cpp.obj - 0003:00014278 ??_R0?AV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@8 100ce278 main.cpp.obj - 0003:000142c0 ??_R0?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@8 100ce2c0 main.cpp.obj - 0003:0001431c ??_R0?AUbad_exception_@exception_detail@boost@@@8 100ce31c main.cpp.obj - 0003:00014350 ??_R0?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@8 100ce350 main.cpp.obj - 0003:000143a8 ??_R0?AUbad_alloc_@exception_detail@boost@@@8 100ce3a8 main.cpp.obj - 0003:000143d8 ??_R0?AV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@8 100ce3d8 main.cpp.obj - 0003:00014454 ??_R0P6AXPAVPatchDetourBase@hadesmem@@@Z@8 100ce454 main.cpp.obj - 0003:00014484 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@8 100ce484 main.cpp.obj - 0003:000144b8 ??_R0P6AXPAVPatchDetourBase@hadesmem@@HI@Z@8 100ce4b8 main.cpp.obj - 0003:000144e8 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@8 100ce4e8 main.cpp.obj - 0003:00014520 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAI@Z@8 100ce520 main.cpp.obj - 0003:00014550 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@8 100ce550 main.cpp.obj - 0003:00014584 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@8 100ce584 main.cpp.obj - 0003:000145b8 ??_R0P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@8 100ce5b8 main.cpp.obj - 0003:00014600 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@8 100ce600 main.cpp.obj - 0003:0001464c ??_R0P6AXPAVPatchDetourBase@hadesmem@@EH@Z@8 100ce64c main.cpp.obj - 0003:0001467c ??_R0P6AXPAVPatchDetourBase@hadesmem@@_K@Z@8 100ce67c main.cpp.obj - 0003:000146ac ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@8 100ce6ac main.cpp.obj - 0003:000146e4 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@8 100ce6e4 main.cpp.obj - 0003:0001471c ??_R0P6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@8 100ce71c main.cpp.obj - 0003:00014750 ??_R0P6AXPAVPatchDetourBase@hadesmem@@I@Z@8 100ce750 main.cpp.obj - 0003:00014780 ??_R0P6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100ce780 main.cpp.obj - 0003:000147b4 ??_R0P6AHPAVPatchDetourBase@hadesmem@@_K@Z@8 100ce7b4 main.cpp.obj - 0003:000147e4 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@8 100ce7e4 main.cpp.obj - 0003:00014818 ??_R0P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@8 100ce818 main.cpp.obj - 0003:00014864 ??_R0P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@8 100ce864 main.cpp.obj - 0003:00014898 ??_R0P6AIPAVPatchDetourBase@hadesmem@@PAI@Z@8 100ce898 main.cpp.obj - 0003:000148c8 ??_R0P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@8 100ce8c8 main.cpp.obj - 0003:00014900 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@8 100ce900 main.cpp.obj - 0003:00014950 ??_R0P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@8 100ce950 main.cpp.obj - 0003:000149a0 ??_R0P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@8 100ce9a0 main.cpp.obj - 0003:000149e8 ??_R0P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@8 100ce9e8 main.cpp.obj - 0003:00014a30 ??_R0P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@8 100cea30 main.cpp.obj - 0003:00014a78 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@8 100cea78 main.cpp.obj - 0003:00014ac0 ??_R0P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@8 100ceac0 main.cpp.obj - 0003:00014b08 ??_R0P6AXPAVPatchDetourBase@hadesmem@@IHH@Z@8 100ceb08 main.cpp.obj - 0003:00014b38 ??_R0P6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@8 100ceb38 main.cpp.obj - 0003:00014b6c ??_R0P6AHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100ceb6c main.cpp.obj - 0003:00014b9c ??_R0PAUTagErrorString@hadesmem@@@8 100ceb9c main.cpp.obj - 0003:00014bc4 ??_R0PAUTagErrorCodeWinLast@hadesmem@@@8 100cebc4 main.cpp.obj - 0003:00014bf0 ??_R0?AV__non_rtti_object@std@@@8 100cebf0 libvcruntime:rtti.obj - 0003:00014c14 ??_R0?AVbad_typeid@std@@@8 100cec14 libvcruntime:rtti.obj - 0003:00014c34 ??_R0?AVinvalid_argument@std@@@8 100cec34 libcpmt:xthrow.obj - 0003:00014c58 ??_R0?AVlogic_error@std@@@8 100cec58 libcpmt:xthrow.obj - 0003:00014c78 ??_R0?AVlength_error@std@@@8 100cec78 libcpmt:xthrow.obj - 0003:00014c98 ??_R0?AVout_of_range@std@@@8 100cec98 libcpmt:xthrow.obj - 0003:00014cb8 ??_R0?AVbad_function_call@std@@@8 100cecb8 libcpmt:xthrow.obj - 0003:00014ce0 ??_R0?AVios_base@std@@@8 100cece0 logging.cpp.obj - 0003:00014cfc ??_R0?AV?$_Iosb@H@std@@@8 100cecfc logging.cpp.obj - 0003:00014d18 ??_R0?AV?$basic_ios@DU?$char_traits@D@std@@@std@@@8 100ced18 logging.cpp.obj - 0003:00014d50 ??_R0?AV?$basic_streambuf@DU?$char_traits@D@std@@@std@@@8 100ced50 logging.cpp.obj - 0003:00014d8c ??_R0?AV?$basic_ostream@DU?$char_traits@D@std@@@std@@@8 100ced8c logging.cpp.obj - 0003:00014dc8 ??_R0?AV?$basic_filebuf@DU?$char_traits@D@std@@@std@@@8 100cedc8 logging.cpp.obj - 0003:00014e04 ??_R0?AV?$basic_ofstream@DU?$char_traits@D@std@@@std@@@8 100cee04 logging.cpp.obj - 0003:00014e40 ??_R0?AVerror_category@std@@@8 100cee40 logging.cpp.obj - 0003:00014e64 ??_R0?AV_Iostream_error_category2@std@@@8 100cee64 logging.cpp.obj - 0003:00014e90 ??_R0?AV_Facet_base@std@@@8 100cee90 logging.cpp.obj - 0003:00014eb0 ??_R0?AVfacet@locale@std@@@8 100ceeb0 logging.cpp.obj - 0003:00014ed0 ??_R0?AU_Crt_new_delete@std@@@8 100ceed0 logging.cpp.obj - 0003:00014ef4 ??_R0?AVcodecvt_base@std@@@8 100ceef4 logging.cpp.obj - 0003:00014f14 ??_R0?AUctype_base@std@@@8 100cef14 logging.cpp.obj - 0003:00014f34 ??_R0?AV?$ctype@D@std@@@8 100cef34 logging.cpp.obj - 0003:00014f50 ??_R0?AV?$codecvt@DDU_Mbstatet@@@std@@@8 100cef50 logging.cpp.obj - 0003:00014f7c ??_R0?AV?$basic_istream@DU?$char_traits@D@std@@@std@@@8 100cef7c main.cpp.obj - 0003:00014fb8 ??_R0?AV?$basic_iostream@DU?$char_traits@D@std@@@std@@@8 100cefb8 main.cpp.obj - 0003:00014ff8 ??_R0?AV?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@8 100ceff8 main.cpp.obj - 0003:00015048 ??_R0?AV?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@8 100cf048 main.cpp.obj - 0003:000150a0 ??_R0?AV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@8 100cf0a0 main.cpp.obj - 0003:000150f0 ??_R0?AV_Ref_count_base@std@@@8 100cf0f0 main.cpp.obj - 0003:00015114 ??_R0?AVerror_info_base@exception_detail@boost@@@8 100cf114 main.cpp.obj - 0003:0001514c ??_R0?AUerror_info_container@exception_detail@boost@@@8 100cf14c main.cpp.obj - 0003:00015188 ??_R0?AVsp_counted_base@detail@boost@@@8 100cf188 main.cpp.obj - 0003:000151b4 ??_R0?AVerror_info_container_impl@exception_detail@boost@@@8 100cf1b4 main.cpp.obj - 0003:000151f8 ??_R0?AV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@8 100cf1f8 main.cpp.obj - 0003:0001524c ??_R0?AVPatchDetourBase@hadesmem@@@8 100cf24c main.cpp.obj - 0003:00015274 ??_R0?AVCDataStore@Nampower@@@8 100cf274 main.cpp.obj - 0003:00015298 ??_R0?AV?$PatchDetour@P6IXXZPAX@hadesmem@@@8 100cf298 main.cpp.obj - 0003:000152c8 ??_R0?AV?$PatchDetour@P6GXXZPAX@hadesmem@@@8 100cf2c8 main.cpp.obj - 0003:000152f8 ??_R0?AV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@8 100cf2f8 main.cpp.obj - 0003:0001532c ??_R0?AV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@8 100cf32c main.cpp.obj - 0003:00015360 ??_R0?AV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@8 100cf360 main.cpp.obj - 0003:00015394 ??_R0?AV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@8 100cf394 main.cpp.obj - 0003:000153c8 ??_R0?AV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@8 100cf3c8 main.cpp.obj - 0003:00015410 ??_R0?AV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@8 100cf410 main.cpp.obj - 0003:00015458 ??_R0?AV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@8 100cf458 main.cpp.obj - 0003:000154a8 ??_R0?AV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@8 100cf4a8 main.cpp.obj - 0003:000154f4 ??_R0?AV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@8 100cf4f4 main.cpp.obj - 0003:00015528 ??_R0?AV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100cf528 main.cpp.obj - 0003:00015578 ??_R0?AV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@8 100cf578 main.cpp.obj - 0003:000155ac ??_R0?AV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@8 100cf5ac main.cpp.obj - 0003:000155e0 ??_R0?AV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@8 100cf5e0 main.cpp.obj - 0003:0001562c ??_R0?AV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@8 100cf62c main.cpp.obj - 0003:00015660 ??_R0?AV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@8 100cf660 main.cpp.obj - 0003:00015698 ??_R0?AV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100cf698 main.cpp.obj - 0003:000156e8 ??_R0?AV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100cf6e8 main.cpp.obj - 0003:00015738 ??_R0?AV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100cf738 main.cpp.obj - 0003:00015784 ??_R0?AV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@8 100cf784 main.cpp.obj - 0003:000157b8 ??_R0?AV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@8 100cf7b8 main.cpp.obj - 0003:000157f0 ??_R0?AV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@8 100cf7f0 main.cpp.obj - 0003:00015828 ??_R0?AV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@8 100cf828 main.cpp.obj - 0003:0001585c ??_R0?AV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@8 100cf85c main.cpp.obj - 0003:00015890 ??_R0?AV?$PatchDetour@P6IXI@ZPAX@hadesmem@@@8 100cf890 main.cpp.obj - 0003:000158c0 ??_R0?AV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@8 100cf8c0 main.cpp.obj - 0003:000158f8 ??_R0?AV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@8 100cf8f8 main.cpp.obj - 0003:0001593c ??_R0?AV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@8 100cf93c main.cpp.obj - 0003:00015970 ??_R0?AV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@8 100cf970 main.cpp.obj - 0003:000159a4 ??_R0?AV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@8 100cf9a4 main.cpp.obj - 0003:000159dc ??_R0?AV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@8 100cf9dc main.cpp.obj - 0003:00015a10 ??_R0?AV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@8 100cfa10 main.cpp.obj - 0003:00015a50 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100cfa50 main.cpp.obj - 0003:00015a94 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@@8 100cfa94 main.cpp.obj - 0003:00015ad4 ??_R0?AV?$numpunct@D@std@@@8 100cfad4 main.cpp.obj - 0003:00015af8 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@@8 100cfaf8 main.cpp.obj - 0003:00015b40 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100cfb40 main.cpp.obj - 0003:00015b88 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@@8 100cfb88 main.cpp.obj - 0003:00015bd0 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@@8 100cfbd0 main.cpp.obj - 0003:00015c18 ??_R0?AV?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@@8 100cfc18 main.cpp.obj - 0003:00015c60 ??_R0?AV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@@8 100cfc60 main.cpp.obj - 0003:00015cb8 ??_R0?AV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@@8 100cfcb8 main.cpp.obj - 0003:00015d00 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@@8 100cfd00 main.cpp.obj - 0003:00015d40 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@@8 100cfd40 main.cpp.obj - 0003:00015d80 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@@8 100cfd80 main.cpp.obj - 0003:00015dc0 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@@8 100cfdc0 main.cpp.obj - 0003:00015e08 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@@8 100cfe08 main.cpp.obj - 0003:00015e50 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@@8 100cfe50 main.cpp.obj - 0003:00015e98 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@@8 100cfe98 main.cpp.obj - 0003:00015ef8 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@@8 100cfef8 main.cpp.obj - 0003:00015f58 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@@8 100cff58 main.cpp.obj - 0003:00015fb8 ??_R0?AV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@@8 100cffb8 main.cpp.obj - 0003:00016000 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@@8 100d0000 main.cpp.obj - 0003:00016048 ??_R0?AV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@@8 100d0048 main.cpp.obj - 0003:000160a8 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@@8 100d00a8 main.cpp.obj - 0003:000160e8 ??_R0?AV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100d00e8 main.cpp.obj - 0003:00016130 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@@8 100d0130 main.cpp.obj - 0003:00016190 ??_R0?AV?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100d0190 main.cpp.obj - 0003:000161d8 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@@8 100d01d8 main.cpp.obj - 0003:00016238 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@@8 100d0238 main.cpp.obj - 0003:00016298 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@@8 100d0298 main.cpp.obj - 0003:000162f0 ??_R0?AV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@@8 100d02f0 main.cpp.obj - 0003:00016348 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@@8 100d0348 main.cpp.obj - 0003:00016390 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@@8 100d0390 main.cpp.obj - 0003:000163d8 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@@8 100d03d8 main.cpp.obj - 0003:00016418 ??_R0?AV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@8 100d0418 main.cpp.obj - 0003:00016470 ??_R0?AV?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@@8 100d0470 main.cpp.obj - 0003:000164d8 ??_R0?AV?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@@8 100d04d8 main.cpp.obj - 0003:00016538 ??_R0?AV?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@@8 100d0538 main.cpp.obj - 0003:00016598 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@@8 100d0598 main.cpp.obj - 0003:000165f0 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@@8 100d05f0 main.cpp.obj - 0003:00016650 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@@8 100d0650 main.cpp.obj - 0003:000166b0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@@8 100d06b0 main.cpp.obj - 0003:00016710 ??_R0?AV?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@@8 100d0710 main.cpp.obj - 0003:00016790 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@@8 100d0790 main.cpp.obj - 0003:00016800 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@@8 100d0800 main.cpp.obj - 0003:00016878 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@@8 100d0878 main.cpp.obj - 0003:000168f0 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@@8 100d08f0 main.cpp.obj - 0003:00016968 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@@8 100d0968 main.cpp.obj - 0003:000169e8 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@@8 100d09e8 main.cpp.obj - 0003:00016a68 ??_R0?AV?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@@8 100d0a68 main.cpp.obj - 0003:00016ac8 ??_R0?AV?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@@8 100d0ac8 main.cpp.obj - 0003:00016b28 ??_R0?AV?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@@8 100d0b28 main.cpp.obj - 0003:00016b90 ??_R0?AV?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@@8 100d0b90 main.cpp.obj - 0003:00016c08 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@@8 100d0c08 main.cpp.obj - 0003:00016c68 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@@8 100d0c68 main.cpp.obj - 0003:00016cc0 ??_R0?AV?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@@8 100d0cc0 main.cpp.obj - 0003:00016d20 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@@8 100d0d20 main.cpp.obj - 0003:00016d78 ??_R0?AV?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@@8 100d0d78 main.cpp.obj - 0003:00016de0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@@8 100d0de0 main.cpp.obj - 0003:00016e48 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@@8 100d0e48 main.cpp.obj - 0003:00016eb0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@@8 100d0eb0 main.cpp.obj - 0003:00016f08 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@@8 100d0f08 main.cpp.obj - 0003:00016f60 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@@8 100d0f60 main.cpp.obj - 0003:00016fe0 ??_R0?AV?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@@8 100d0fe0 main.cpp.obj - 0003:00017050 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@@8 100d1050 main.cpp.obj - 0003:000170b0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@@8 100d10b0 main.cpp.obj - 0003:00017118 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@@8 100d1118 main.cpp.obj - 0003:00017178 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@@8 100d1178 main.cpp.obj - 0003:000171e0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@@8 100d11e0 main.cpp.obj - 0003:00017238 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@@8 100d1238 main.cpp.obj - 0003:00017298 ??_R0?AV?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@@8 100d1298 main.cpp.obj - 0003:00017318 ??_R0?AV?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@@8 100d1318 main.cpp.obj - 0003:00017398 ??_R0?AV?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@@8 100d1398 main.cpp.obj - 0003:00017438 ??_R0?AV?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@@8 100d1438 main.cpp.obj - 0003:000174a0 ??_R0?AVDNameNode@@@8 100d14a0 libvcruntime:undname.obj - 0003:000174b8 ??_R0?AVcharNode@@@8 100d14b8 libvcruntime:undname.obj - 0003:000174d0 ??_R0?AVpcharNode@@@8 100d14d0 libvcruntime:undname.obj - 0003:000174e8 ??_R0?AVpDNameNode@@@8 100d14e8 libvcruntime:undname.obj - 0003:00017504 ??_R0?AVDNameStatusNode@@@8 100d1504 libvcruntime:undname.obj - 0003:00017524 ??_R0?AVpairNode@@@8 100d1524 libvcruntime:undname.obj - 0003:0001753c ??_R0?AV_Locimp@locale@std@@@8 100d153c libcpmt:locale0.obj - 0003:00017560 ??_R0?AVtype_info@@@8 100d1560 LIBCMT:std_type_info_static.obj - 0003:00017578 ?gStartTime@Nampower@@3IA 100d1578 logging.cpp.obj - 0003:0001757c ?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A 100d157c logging.cpp.obj - 0003:00017580 ?_Stinit@?1??_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@23@@Z@4U_Mbstatet@@A 100d1580 logging.cpp.obj - 0003:00017588 ?_Psave@?$_Facetptr@V?$ctype@D@std@@@std@@2PBVfacet@locale@2@B 100d1588 logging.cpp.obj - 0003:0001758c ?_Psave@?$_Facetptr@V?$codecvt@DDU_Mbstatet@@@std@@@std@@2PBVfacet@locale@2@B 100d158c logging.cpp.obj - 0003:00017590 ?gLastErrorTimeMs@Nampower@@3IA 100d1590 main.cpp.obj - 0003:00017594 ?gLastBufferIncreaseTimeMs@Nampower@@3IA 100d1594 main.cpp.obj - 0003:00017598 ?gLastBufferDecreaseTimeMs@Nampower@@3IA 100d1598 main.cpp.obj - 0003:0001759c ?gBufferTimeMs@Nampower@@3IA 100d159c main.cpp.obj - 0003:000175a0 ?gDisenchantItemId@Nampower@@3IA 100d15a0 main.cpp.obj - 0003:000175a4 ?gDisenchantQuality@Nampower@@3IA 100d15a4 main.cpp.obj - 0003:000175a8 ?gDisenchantIncludeSoulbound@Nampower@@3_NA 100d15a8 main.cpp.obj - 0003:000175a9 ?gForceQueueCast@Nampower@@3_NA 100d15a9 main.cpp.obj - 0003:000175aa ?gNoQueueCast@Nampower@@3_NA 100d15aa main.cpp.obj - 0003:000175ab ?gQueuesProcessed@Nampower@@3_NA 100d15ab main.cpp.obj - 0003:000175ac ?gNextDisenchantTimeMs@Nampower@@3IA 100d15ac main.cpp.obj - 0003:000175b0 ?gRunningAverageLatencyMs@Nampower@@3IA 100d15b0 main.cpp.obj - 0003:000175b4 ?gLastServerSpellDelayMs@Nampower@@3IA 100d15b4 main.cpp.obj - 0003:000175b8 ?castSpellDetour@Nampower@@3PAVPatchDetourBase@hadesmem@@A 100d15b8 main.cpp.obj - 0003:000175bc ?gLastCastData@Nampower@@3ULastCastData@@A 100d15bc main.cpp.obj - 0003:000175d8 ?gCastData@Nampower@@3UCastData@@A 100d15d8 main.cpp.obj - 0003:00017630 ?gLastNormalCastParams@Nampower@@3UCastSpellParams@@A 100d1630 main.cpp.obj - 0003:00017668 ?gLastOnSwingCastParams@Nampower@@3UCastSpellParams@@A 100d1668 main.cpp.obj - 0003:000176a0 ?lastCastUsedServerDelay@Nampower@@3_NA 100d16a0 main.cpp.obj - 0003:000176a4 ?loadFlag@Nampower@@3Uonce_flag@std@@A 100d16a4 main.cpp.obj - 0003:000176a8 ?initHooksFlag@Nampower@@3Uonce_flag@std@@A 100d16a8 main.cpp.obj - 0003:000176ac ?gNonGcdCastQueue@Nampower@@3VCastQueue@1@A 100d16ac main.cpp.obj - 0003:000176c8 ?gCastHistory@Nampower@@3VCastQueue@1@A 100d16c8 main.cpp.obj - 0003:000176e4 ?gSysMsgInitDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXXZPAX@hadesmem@@@std@@@std@@A 100d16e4 main.cpp.obj - 0003:000176e8 ?gLoadScriptFunctionsDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@A 100d16e8 main.cpp.obj - 0003:000176ec ?gCreateEventsDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@A 100d16ec main.cpp.obj - 0003:000176f0 ?gSetEventCountDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@A 100d16f0 main.cpp.obj - 0003:000176f4 ?gSetCVarDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@A 100d16f4 main.cpp.obj - 0003:000176f8 ?gCGSpellBook_CastSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@A 100d16f8 main.cpp.obj - 0003:000176fc ?gCastDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@A 100d16fc main.cpp.obj - 0003:00017700 ?gSendCastDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@A 100d1700 main.cpp.obj - 0003:00017704 ?gCancelSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d1704 main.cpp.obj - 0003:00017708 ?gSignalEventDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXW4Events@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXW4Events@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d1708 main.cpp.obj - 0003:0001770c ?gSpellFailedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@A 100d170c main.cpp.obj - 0003:00017710 ?gSpell_C_GetSpellModifiersDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPBUSpellRec@game@@PAHW4SpellModOp@2@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPBUSpellRec@game@@PAHW4SpellModOp@2@@ZPAX@hadesmem@@@std@@@std@@A 100d1710 main.cpp.obj - 0003:00017714 ?gSpell_C_GetSpellRadiusDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IMXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IMXZPAX@hadesmem@@@std@@@std@@A 100d1714 main.cpp.obj - 0003:00017718 ?gCastbarPatch@Nampower@@3V?$unique_ptr@VPatchRaw@hadesmem@@U?$default_delete@VPatchRaw@hadesmem@@@std@@@std@@A 100d1718 main.cpp.obj - 0003:0001771c ?gIEndSceneDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@A 100d171c main.cpp.obj - 0003:00017720 ?gSpell_C_GetAutoRepeatingSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6AHXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6AHXZPAX@hadesmem@@@std@@@std@@A 100d1720 main.cpp.obj - 0003:00017724 ?gSpell_C_CooldownEventTriggeredDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIPA_KHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIPA_KHH@ZPAX@hadesmem@@@std@@@std@@A 100d1724 main.cpp.obj - 0003:00017728 ?gSpellGoDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1728 main.cpp.obj - 0003:0001772c ?gSpellTargetUnitDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d172c main.cpp.obj - 0003:00017730 ?gSpellStopCastingDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d1730 main.cpp.obj - 0003:00017734 ?gOnSpriteRightClickDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@A 100d1734 main.cpp.obj - 0003:00017738 ?gSpell_C_HandleSpriteClickDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAUCSpriteClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUCSpriteClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d1738 main.cpp.obj - 0003:0001773c ?gSpell_C_HandleTerrainClickDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d173c main.cpp.obj - 0003:00017740 ?gCGWorldFrame_OnLayerTrackTerrainDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@A 100d1740 main.cpp.obj - 0003:00017744 ?gSpell_C_TargetSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@A 100d1744 main.cpp.obj - 0003:00017748 ?gSpellCooldownDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1748 main.cpp.obj - 0003:0001774c ?gSpellDelayedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d174c main.cpp.obj - 0003:00017750 ?gCastResultHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1750 main.cpp.obj - 0003:00017754 ?gSpellFailedOtherHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1754 main.cpp.obj - 0003:00017758 ?gSpellChannelStartHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1758 main.cpp.obj - 0003:0001775c ?gSpellChannelUpdateHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d175c main.cpp.obj - 0003:00017760 ?gPlaySpellVisualHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1760 main.cpp.obj - 0003:00017764 ?gSpellHealingLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1764 main.cpp.obj - 0003:00017768 ?gSpellEnergizeLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1768 main.cpp.obj - 0003:0001776c ?gProcResistHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d176c main.cpp.obj - 0003:00017770 ?gSpellLogMissHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1770 main.cpp.obj - 0003:00017774 ?gSpellOrDamageImmuneHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1774 main.cpp.obj - 0003:00017778 ?gSpellStartHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1778 main.cpp.obj - 0003:0001777c ?gPeriodicAuraLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d177c main.cpp.obj - 0003:00017780 ?gSpellNonMeleeDmgLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1780 main.cpp.obj - 0003:00017784 ?gCGPlayer_C_OnAttackIconPressedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHPAIPAX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAIPAX_K@ZPAX@hadesmem@@@std@@@std@@A 100d1784 main.cpp.obj - 0003:00017788 ?gAttackRoundInfo_ReadPacketDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d1788 main.cpp.obj - 0003:0001778c ?gCGActionBar_UseActionDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@A 100d178c main.cpp.obj - 0003:00017790 ?gCGUnit_C_OnAuraRemovedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@A 100d1790 main.cpp.obj - 0003:00017794 ?gCGUnit_C_OnAuraAddedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@A 100d1794 main.cpp.obj - 0003:00017798 ?gCGUnit_C_OnAuraStacksChangedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@A 100d1798 main.cpp.obj - 0003:0001779c ?gUnitCombatLogUnitDeadDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@A 100d179c main.cpp.obj - 0003:000177a0 ?gCGBuffBar_UpdateDurationDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@A 100d17a0 main.cpp.obj - 0003:000177a4 ?gInvalidFunctionPtrCheckDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@A 100d17a4 main.cpp.obj - 0003:000177a8 ?gGetSpellSlotFromLuaDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@A 100d17a8 main.cpp.obj - 0003:000177ac ?gCSimpleFrame_GetNameDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d17ac main.cpp.obj - 0003:000177b0 ?gCSimpleTop_OnKeyDownDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@A 100d17b0 main.cpp.obj - 0003:000177b4 ?gCSimpleTop_OnKeyUpDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@A 100d17b4 main.cpp.obj - 0003:000177b8 ?gGetGUIDFromNameDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@A 100d17b8 main.cpp.obj - 0003:000177bc ?gCastSpellByNameDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d17bc main.cpp.obj - 0003:000177c0 ?gSendUnitSignalDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@A 100d17c0 main.cpp.obj - 0003:000177c4 ?gCGPetInfo_SetPetDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@A 100d17c4 main.cpp.obj - 0003:000177c8 ?gTogglePetSlotAutocastDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@A 100d17c8 main.cpp.obj - 0003:000177cc ?gCGPetInfo_GetPetSpellActionDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@A 100d17cc main.cpp.obj - 0003:000177d0 ?gCGGameUI_ShowCombatFeedbackDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@A 100d17d0 main.cpp.obj - 0003:000177d4 ?ep@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4V32@A 100d17d4 main.cpp.obj - 0003:000177dc ?ep@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4V32@A 100d17dc main.cpp.obj - 0003:000177e4 ?e@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B 100d17e4 main.cpp.obj - 0003:000177ec ?e@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B 100d17ec main.cpp.obj - 0003:000177f4 ?id@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100d17f4 main.cpp.obj - 0003:000177f8 ?id@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100d17f8 main.cpp.obj - 0003:000177fc ?id@?$numpunct@D@std@@2V0locale@2@A 100d17fc main.cpp.obj - 0003:00017800 ?id@?$numpunct@_W@std@@2V0locale@2@A 100d1800 main.cpp.obj - 0003:00017804 ?id@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100d1804 main.cpp.obj - 0003:00017808 ?_Psave@?$_Facetptr@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@2PBVfacet@locale@2@B 100d1808 main.cpp.obj - 0003:0001780c ?_Psave@?$_Facetptr@V?$numpunct@D@std@@@std@@2PBVfacet@locale@2@B 100d180c main.cpp.obj - 0003:00017810 ?$TSS0@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4HA 100d1810 main.cpp.obj - 0003:00017814 ?$TSS0@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4HA 100d1814 main.cpp.obj - 0003:00017818 ?_Psave@?$_Facetptr@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@2PBVfacet@locale@2@B 100d1818 main.cpp.obj - 0003:0001781c ?id@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100d181c main.cpp.obj - 0003:00017820 ?id@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100d1820 main.cpp.obj - 0003:0001786c ?lastCastResultTimeMs@Nampower@@3IA 100d186c spellevents.cpp.obj - 0003:00017b90 ?gScriptQueued@Nampower@@3_NA 100d1b90 misc_scripts.cpp.obj - 0003:00017b94 ?queuedScript@Nampower@@3PADA 100d1b94 misc_scripts.cpp.obj - 0003:000189e0 ?equippedTrinketDataCache@Nampower@@3V?$array@UCachedTrinketData@Nampower@@$0BD@@std@@A 100d29e0 items.cpp.obj - 0003:00018a30 ?bagTrinketDataCache@Nampower@@3V?$array@V?$array@UCachedTrinketData@Nampower@@$0EA@@std@@$0N@@std@@A 100d2a30 items.cpp.obj - 0003:00019730 ?bagItemDataCache@Nampower@@3V?$array@V?$array@UCachedItemData@Nampower@@$0EA@@std@@$0N@@std@@A 100d3730 items.cpp.obj - 0003:00021930 ?equippedItemDataCache@Nampower@@3V?$array@UCachedItemData@Nampower@@$0BD@@std@@A 100db930 items.cpp.obj - 0003:00021c8c ?itemStatsArrayFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100dbc8c dbc_fields.cpp.obj - 0003:00021cac ?itemStatsFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100dbcac dbc_fields.cpp.obj - 0003:00021ccc ?spellRecFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100dbccc dbc_fields.cpp.obj - 0003:00021cec ?spellRecArrayFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100dbcec dbc_fields.cpp.obj - 0003:00021d10 ?unitFieldsArrayFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100dbd10 unit_fields.cpp.obj - 0003:00021d30 ?unitFieldsFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100dbd30 unit_fields.cpp.obj - 0003:00021d58 ?gAuraExpirationTime@Nampower@@3PAIA 100dbd58 auras.cpp.obj - 0003:00021e24 ?gPendingToggleAutocastSlot@Nampower@@3IA 100dbe24 pet.cpp.obj - 0003:00021e28 ?__WinRTOutOfMemoryExceptionCallback@@3P6GPAXXZA 100dbe28 libvcruntime:ehhelpers.obj - 0003:00021e2c ___pPurecall 100dbe2c libvcruntime:purevirt_data.obj - 0003:00021e58 ?pArgList@UnDecorator@@0PAVReplicator@@A 100dbe58 libvcruntime:undname.obj - 0003:00021e5c ?pZNameList@UnDecorator@@0PAVReplicator@@A 100dbe5c libvcruntime:undname.obj - 0003:00021e60 ?pTemplateArgList@UnDecorator@@0PAVReplicator@@A 100dbe60 libvcruntime:undname.obj - 0003:00021e64 ?gName@UnDecorator@@0PBDB 100dbe64 libvcruntime:undname.obj - 0003:00021e68 ?name@UnDecorator@@0PBDB 100dbe68 libvcruntime:undname.obj - 0003:00021e6c ?disableFlags@UnDecorator@@0KA 100dbe6c libvcruntime:undname.obj - 0003:00021e70 ?fExplicitTemplateParams@UnDecorator@@0_NA 100dbe70 libvcruntime:undname.obj - 0003:00021e71 ?fGetTemplateArgumentList@UnDecorator@@0_NA 100dbe71 libvcruntime:undname.obj - 0003:00021e74 ?m_pGetParameter@UnDecorator@@0P6APADJ@ZA 100dbe74 libvcruntime:undname.obj - 0003:00021e78 ?m_CHPENameOffset@UnDecorator@@0KA 100dbe78 libvcruntime:undname.obj - 0003:00021e7c ?m_recursionLevel@UnDecorator@@0KA 100dbe7c libvcruntime:undname.obj - 0003:00021ed4 __nstream 100dbed4 libucrt:_file.obj - 0003:00021ed8 ___piob 100dbed8 libucrt:_file.obj - 0003:00021edc __cflush 100dbedc libucrt:_file.obj - 0003:00021ee0 ___acrt_lconv_static_null 100dbee0 libucrt:localeconv.obj - 0003:00021ee4 ___acrt_lconv_static_W_null 100dbee4 libucrt:localeconv.obj - 0003:00021ee8 ___acrt_locale_changed_data 100dbee8 libucrt:wsetlocale.obj - 0003:00021eec ___acrt_current_locale_data 100dbeec libucrt:nlsdata.obj - 0003:00021fd8 ___pioinfo 100dbfd8 libucrt:ioinit.obj - 0003:000221d8 __nhandle 100dc1d8 libucrt:ioinit.obj - 0003:00022334 ___acrt_stdout_buffer 100dc334 libucrt:_sftbuf.obj - 0003:00022338 ___acrt_stderr_buffer 100dc338 libucrt:_sftbuf.obj - 0003:00022364 ?_timezone@@3V?$dual_state_global@J@__crt_state_management@@A 100dc364 libucrt:timeset.obj - 0003:00022368 ?_daylight@@3V?$dual_state_global@H@__crt_state_management@@A 100dc368 libucrt:timeset.obj - 0003:0002236c ?_dstbias@@3V?$dual_state_global@J@__crt_state_management@@A 100dc36c libucrt:timeset.obj - 0003:00022438 __mbctype 100dc438 libucrt:mbctype.obj - 0003:0002243c __mbcasemap 100dc43c libucrt:mbctype.obj - 0003:00022440 ___acrt_current_multibyte_data 100dc440 libucrt:mbctype.obj - 0003:00022454 ___acrt_heap 100dc454 libucrt:heap_handle.obj - 0003:0002245c ___acrt_atexit_table 100dc45c libucrt:onexit.obj - 0003:00022468 ___acrt_at_quick_exit_table 100dc468 libucrt:onexit.obj - 0003:00022480 __environ_table 100dc480 libucrt:environment_initialization.obj - 0003:00022484 __wenviron_table 100dc484 libucrt:environment_initialization.obj - 0003:00022488 ___dcrt_initial_wide_environment 100dc488 libucrt:environment_initialization.obj - 0003:0002248c ___dcrt_initial_narrow_environment 100dc48c libucrt:environment_initialization.obj - 0003:00022490 ___fastflag 100dc490 libucrt:fp_flags.obj - 0003:00022560 ?_Id_cnt@id@locale@std@@0HA 100dc560 libcpmt:locale0.obj - 0003:00022564 ?_Clocptr@_Locimp@locale@std@@0PAV123@A 100dc564 libcpmt:locale0.obj - 0003:00022568 ?id@?$ctype@G@std@@2V0locale@2@A 100dc568 libcpmt:locale0.obj - 0003:0002256c ?id@?$codecvt@_WDU_Mbstatet@@@std@@2V0locale@2@A 100dc56c libcpmt:locale0.obj - 0003:00022570 ?id@?$codecvt@GDU_Mbstatet@@@std@@2V0locale@2@A 100dc570 libcpmt:locale0.obj - 0003:00022574 ?id@?$ctype@_W@std@@2V0locale@2@A 100dc574 libcpmt:locale0.obj - 0003:00022578 ?id@?$ctype@D@std@@2V0locale@2@A 100dc578 libcpmt:locale0.obj - 0003:00022594 ?_Index@ios_base@std@@0HA 100dc594 libcpmt:ios.obj - 0003:000225d8 ?_Ptr_cin@std@@3PAV?$basic_istream@DU?$char_traits@D@std@@@1@A 100dc5d8 libcpmt:iosptrs.obj - 0003:000225dc ?_Ptr_cout@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A 100dc5dc libcpmt:iosptrs.obj - 0003:000225e0 ?_Ptr_cerr@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A 100dc5e0 libcpmt:iosptrs.obj - 0003:000225e4 ?_Ptr_clog@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A 100dc5e4 libcpmt:iosptrs.obj - 0003:000225e8 ?_Ptr_wcin@std@@3PAV?$basic_istream@_WU?$char_traits@_W@std@@@1@A 100dc5e8 libcpmt:iosptrs.obj - 0003:000225ec ?_Ptr_wcout@std@@3PAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@A 100dc5ec libcpmt:iosptrs.obj - 0003:000225f0 ?_Ptr_wcerr@std@@3PAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@A 100dc5f0 libcpmt:iosptrs.obj - 0003:000225f4 ?_Ptr_wclog@std@@3PAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@A 100dc5f4 libcpmt:iosptrs.obj - 0003:00022630 ?id@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100dc630 libcpmt:wlocale.obj - 0003:00022634 ?id@?$collate@_W@std@@2V0locale@2@A 100dc634 libcpmt:wlocale.obj - 0003:00022638 ?id@?$messages@_W@std@@2V0locale@2@A 100dc638 libcpmt:wlocale.obj - 0003:0002263c ?id@?$money_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100dc63c libcpmt:wlocale.obj - 0003:00022640 ?id@?$money_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100dc640 libcpmt:wlocale.obj - 0003:00022644 ?id@?$moneypunct@_W$0A@@std@@2V0locale@2@A 100dc644 libcpmt:wlocale.obj - 0003:00022648 ?id@?$moneypunct@_W$00@std@@2V0locale@2@A 100dc648 libcpmt:wlocale.obj - 0003:0002264c ?id@?$time_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100dc64c libcpmt:wlocale.obj - 0003:00022650 ?id@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100dc650 libcpmt:wlocale.obj - 0003:00022654 ?id@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100dc654 libcpmt:wlocale.obj - 0003:00022658 ?id@?$numpunct@G@std@@2V0locale@2@A 100dc658 libcpmt:wlocale.obj - 0003:0002265c ?id@?$collate@G@std@@2V0locale@2@A 100dc65c libcpmt:wlocale.obj - 0003:00022660 ?id@?$messages@G@std@@2V0locale@2@A 100dc660 libcpmt:wlocale.obj - 0003:00022664 ?id@?$money_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100dc664 libcpmt:wlocale.obj - 0003:00022668 ?id@?$money_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100dc668 libcpmt:wlocale.obj - 0003:0002266c ?id@?$moneypunct@G$0A@@std@@2V0locale@2@A 100dc66c libcpmt:wlocale.obj - 0003:00022670 ?id@?$moneypunct@G$00@std@@2V0locale@2@A 100dc670 libcpmt:wlocale.obj - 0003:00022674 ?id@?$time_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100dc674 libcpmt:wlocale.obj - 0003:00022678 ?id@?$time_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100dc678 libcpmt:wlocale.obj - 0003:0002267c ?id@?$collate@D@std@@2V0locale@2@A 100dc67c libcpmt:xlocale.obj - 0003:00022680 ?id@?$messages@D@std@@2V0locale@2@A 100dc680 libcpmt:xlocale.obj - 0003:00022684 ?id@?$money_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100dc684 libcpmt:xlocale.obj - 0003:00022688 ?id@?$money_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100dc688 libcpmt:xlocale.obj - 0003:0002268c ?id@?$moneypunct@D$0A@@std@@2V0locale@2@A 100dc68c libcpmt:xlocale.obj - 0003:00022690 ?id@?$moneypunct@D$00@std@@2V0locale@2@A 100dc690 libcpmt:xlocale.obj - 0003:00022694 ?id@?$time_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100dc694 libcpmt:xlocale.obj - 0003:00022698 ___scrt_current_native_startup_state 100dc698 LIBCMT:utility.obj - 0003:0002269c ___scrt_native_startup_lock 100dc69c LIBCMT:utility.obj - 0003:000226c8 ?__type_info_root_node@@3U__type_info_node@@A 100dc6c8 LIBCMT:tncleanup.obj - 0003:000226d0 __tls_index 100dc6d0 LIBCMT:tlssup.obj - 0003:000226d8 ___avx10_version 100dc6d8 LIBCMT:cpu_disp.obj - 0003:000226dc ___isa_available 100dc6dc LIBCMT:cpu_disp.obj - 0003:000226e0 ___favor 100dc6e0 LIBCMT:cpu_disp.obj - 0003:000226e4 ___scrt_debugger_hook_flag 100dc6e4 LIBCMT:utility_desktop.obj - 0003:00022a08 ?_OptionsStorage@?1??__local_stdio_scanf_options@@9@4_KA 100dca08 LIBCMT:default_local_stdio_options.obj - 0003:00022b18 __pgmptr 100dcb18 libucrt:argv_data.obj - 0003:00022b1c ___argc 100dcb1c libucrt:argv_data.obj - 0003:00022b20 ___argv 100dcb20 libucrt:argv_data.obj - 0003:00022b24 ___wargv 100dcb24 libucrt:argv_data.obj - 0003:00022b28 __acmdln 100dcb28 libucrt:argv_data.obj - 0003:00022b2c __wcmdln 100dcb2c libucrt:argv_data.obj - 0003:00022b30 __commode 100dcb30 libucrt:ncommode.obj - 0003:00022b3c __umaskval 100dcb3c libucrt:umask.obj - 0003:00022b40 __fmode 100dcb40 libucrt:txtmode.obj - 0003:00022b44 ___use_sse2_mathfcns 100dcb44 - 0003:00022b48 __pmatherr 100dcb48 - 0003:00022b4c ___dyn_tls_init_callback 100dcb4c - 0003:00022b50 ___scrt_ucrt_dll_is_in_use 100dcb50 - 0003:00022b58 ?_OptionsStorage@?1??__local_stdio_printf_options@@9@9 100dcb58 + 0001:00000a80 ___local_stdio_printf_options 10001a80 f i udis86:udis86.obj + 0001:00000a86 __vsnprintf_l 10001a86 f i udis86:udis86.obj + 0001:00000ab8 _sprintf 10001ab8 f i udis86:udis86.obj + 0001:00000ad3 _ud_init 10001ad3 f udis86:udis86.obj + 0001:00000b3e _ud_disassemble 10001b3e f udis86:udis86.obj + 0001:00000b77 _ud_set_mode 10001b77 f udis86:udis86.obj + 0001:00000b99 _ud_set_pc 10001b99 f udis86:udis86.obj + 0001:00000bb3 _ud_set_syntax 10001bb3 f udis86:udis86.obj + 0001:00000bc1 _ud_insn_asm 10001bc1 f udis86:udis86.obj + 0001:00000bcf _ud_insn_off 10001bcf f udis86:udis86.obj + 0001:00000bdd _ud_insn_hex 10001bdd f udis86:udis86.obj + 0001:00000c3e _ud_insn_ptr 10001c3e f udis86:udis86.obj + 0001:00000c5a _ud_insn_len 10001c5a f udis86:udis86.obj + 0001:00000c65 _ud_insn_opr 10001c65 f udis86:udis86.obj + 0001:00000c8a _ud_set_asm_buffer 10001c8a f udis86:udis86.obj + 0001:00000cc3 _ud_set_input_buffer 10001cc3 f udis86:udis86.obj + 0001:00000f00 _ud_translate_intel 10001f00 f udis86:syn-intel.obj + 0001:0000243e _ud_decode 1000343e f udis86:decode.obj + 0001:00002500 _vsnprintf 10003500 f i udis86:syn.obj + 0001:00002531 _ud_syn_rel_target 10003531 f udis86:syn.obj + 0001:00002591 _ud_asmprintf 10003591 f udis86:syn.obj + 0001:000025e6 _ud_syn_print_addr 100035e6 f udis86:syn.obj + 0001:0000265c _ud_syn_print_imm 1000365c f udis86:syn.obj + 0001:0000271d _ud_syn_print_mem_disp 1000371d f udis86:syn.obj + 0001:000027e0 ??$_Allocate_at_least_helper@V?$allocator@D@std@@@std@@YAPADAAV?$allocator@D@0@AAI@Z 100037e0 f i logging.cpp.obj + 0001:00002830 ??$_Allocate_for_capacity@$0A@@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPADAAV?$allocator@D@1@AAI@Z 10003830 f i logging.cpp.obj + 0001:00002890 ??$_Construct@$00PBD@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXQBDI@Z 10003890 f i logging.cpp.obj + 0001:00002920 ??$_Fputc@D@std@@YA_NDPAU_iobuf@@@Z 10003920 f i logging.cpp.obj + 0001:00002940 ??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 10003940 f i logging.cpp.obj + 0001:00002ab0 ??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 10003ab0 f i logging.cpp.obj + 0001:00002c40 ??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAE@XZ 10003c40 f i logging.cpp.obj + 0001:00002d90 ??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ 10003d90 f i logging.cpp.obj + 0001:00002e00 ??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 10003e00 f i logging.cpp.obj + 0001:00002fd0 ??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 10003fd0 f i logging.cpp.obj + 0001:000030a0 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z 100040a0 f i logging.cpp.obj + 0001:00003150 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@QBD@Z 10004150 f i logging.cpp.obj + 0001:00003190 ??0?$fpos@U_Mbstatet@@@std@@QAE@_J@Z 10004190 f i logging.cpp.obj + 0001:000031c0 ??0_Locinfo@std@@QAE@PBD@Z 100041c0 f i logging.cpp.obj + 0001:00003270 ??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10004270 f i logging.cpp.obj + 0001:00003480 ??0_System_error@std@@QAE@ABV01@@Z 10004480 f i logging.cpp.obj + 0001:000034c0 ??0bad_alloc@std@@QAE@ABV01@@Z 100044c0 f i logging.cpp.obj + 0001:000034f0 ??0bad_array_new_length@std@@QAE@ABV01@@Z 100044f0 f i logging.cpp.obj + 0001:00003520 ??0bad_array_new_length@std@@QAE@XZ 10004520 f i logging.cpp.obj + 0001:00003540 ??0bad_cast@std@@QAE@ABV01@@Z 10004540 f i logging.cpp.obj + 0001:00003570 ??0bad_cast@std@@QAE@XZ 10004570 f i logging.cpp.obj + 0001:00003590 ??0exception@std@@QAE@ABV01@@Z 10004590 f i logging.cpp.obj + 0001:000035c0 ??0exception@std@@QAE@QBD@Z 100045c0 f i logging.cpp.obj + 0001:00003600 ??0failure@ios_base@std@@QAE@ABV012@@Z 10004600 f i logging.cpp.obj + 0001:00003650 ??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 10004650 f i logging.cpp.obj + 0001:00003740 ??0runtime_error@std@@QAE@ABV01@@Z 10004740 f i logging.cpp.obj + 0001:00003770 ??0system_error@std@@QAE@ABV01@@Z 10004770 f i logging.cpp.obj + 0001:000037c0 ??1?$_Yarn@D@std@@QAE@XZ 100047c0 f i logging.cpp.obj + 0001:000037c0 ??1?$_Yarn@_W@std@@QAE@XZ 100047c0 f i logging.cpp.obj + 0001:000037e0 ??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 100047e0 f i logging.cpp.obj + 0001:00003930 ??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 10004930 f i logging.cpp.obj + 0001:00003980 ??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ 10004980 f i logging.cpp.obj + 0001:000039a0 ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 100049a0 f i logging.cpp.obj + 0001:000039a0 ?_Tidy_deallocate@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXXZ 100049a0 f i logging.cpp.obj + 0001:000039f0 ??1?$unique_ptr@V_Facet_base@std@@U?$default_delete@V_Facet_base@std@@@2@@std@@QAE@XZ 100049f0 f i logging.cpp.obj + 0001:00003a00 ??1_Locinfo@std@@QAE@XZ 10004a00 f i logging.cpp.obj + 0001:00003ae0 ??1__non_rtti_object@std@@UAE@XZ 10004ae0 f i libvcruntime:rtti.obj + 0001:00003ae0 ??1bad_alloc@std@@UAE@XZ 10004ae0 f i logging.cpp.obj + 0001:00003ae0 ??1bad_array_new_length@std@@UAE@XZ 10004ae0 f i logging.cpp.obj + 0001:00003ae0 ??1bad_cast@std@@UAE@XZ 10004ae0 f i logging.cpp.obj + 0001:00003ae0 ??1bad_exception@std@@UAE@XZ 10004ae0 f i main.cpp.obj + 0001:00003ae0 ??1bad_function_call@std@@UAE@XZ 10004ae0 f i libcpmt:xthrow.obj + 0001:00003ae0 ??1bad_typeid@std@@UAE@XZ 10004ae0 f i libvcruntime:rtti.obj + 0001:00003ae0 ??1exception@std@@UAE@XZ 10004ae0 f i logging.cpp.obj + 0001:00003ae0 ??1failure@ios_base@std@@UAE@XZ 10004ae0 f i logging.cpp.obj + 0001:00003ae0 ??1invalid_argument@std@@UAE@XZ 10004ae0 f i libcpmt:xthrow.obj + 0001:00003ae0 ??1length_error@std@@UAE@XZ 10004ae0 f i libcpmt:xthrow.obj + 0001:00003ae0 ??1out_of_range@std@@UAE@XZ 10004ae0 f i libcpmt:xthrow.obj + 0001:00003ae0 ??1runtime_error@std@@UAE@XZ 10004ae0 f i logging.cpp.obj + 0001:00003b00 ??1facet@locale@std@@MAE@XZ 10004b00 f i logging.cpp.obj + 0001:00003b10 ??1locale@std@@QAE@XZ 10004b10 f i logging.cpp.obj + 0001:00003b30 ??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 10004b30 f i logging.cpp.obj + 0001:00003bbf ??_E?$basic_ofstream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 10004bbf f i logging.cpp.obj + 0001:00003bc7 ??_E?$basic_ostream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 10004bc7 f i logging.cpp.obj + 0001:00003bd0 ??_E?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004bd0 f i logging.cpp.obj + 0001:00003bd0 ??_G?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004bd0 f i logging.cpp.obj + 0001:00003bf0 ??_E?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004bf0 f i logging.cpp.obj + 0001:00003bf0 ??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004bf0 f i logging.cpp.obj + 0001:00003c60 ??_E?$basic_ofstream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004c60 f i logging.cpp.obj + 0001:00003c60 ??_G?$basic_ofstream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004c60 f i logging.cpp.obj + 0001:00003c90 ??_E?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004c90 f i logging.cpp.obj + 0001:00003c90 ??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004c90 f i logging.cpp.obj + 0001:00003d20 ??_E?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004d20 f i logging.cpp.obj + 0001:00003d20 ??_G?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10004d20 f i logging.cpp.obj + 0001:00003d70 ??_E?$codecvt@DDU_Mbstatet@@@std@@MAEPAXI@Z 10004d70 f i logging.cpp.obj + 0001:00003d70 ??_E?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 10004d70 f i main.cpp.obj + 0001:00003d70 ??_G?$codecvt@DDU_Mbstatet@@@std@@MAEPAXI@Z 10004d70 f i logging.cpp.obj + 0001:00003d70 ??_G?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 10004d70 f i main.cpp.obj + 0001:00003da0 ??_E?$ctype@D@std@@MAEPAXI@Z 10004da0 f i logging.cpp.obj + 0001:00003da0 ??_G?$ctype@D@std@@MAEPAXI@Z 10004da0 f i logging.cpp.obj + 0001:00003df0 ??_E_Facet_base@std@@UAEPAXI@Z 10004df0 f i logging.cpp.obj + 0001:00003df0 ??_G_Facet_base@std@@UAEPAXI@Z 10004df0 f i logging.cpp.obj + 0001:00003e20 ??_E_Iostream_error_category2@std@@UAEPAXI@Z 10004e20 f i logging.cpp.obj + 0001:00003e20 ??_G_Iostream_error_category2@std@@UAEPAXI@Z 10004e20 f i logging.cpp.obj + 0001:00003e40 ??_E_System_error@std@@UAEPAXI@Z 10004e40 f i logging.cpp.obj + 0001:00003e40 ??_Efailure@ios_base@std@@UAEPAXI@Z 10004e40 f i logging.cpp.obj + 0001:00003e40 ??_Esystem_error@std@@UAEPAXI@Z 10004e40 f i logging.cpp.obj + 0001:00003e40 ??_G_System_error@std@@UAEPAXI@Z 10004e40 f i logging.cpp.obj + 0001:00003e40 ??_Gfailure@ios_base@std@@UAEPAXI@Z 10004e40 f i logging.cpp.obj + 0001:00003e40 ??_Gsystem_error@std@@UAEPAXI@Z 10004e40 f i logging.cpp.obj + 0001:00003e70 ??_Ebad_alloc@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Ebad_array_new_length@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Ebad_cast@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Ebad_exception@std@@UAEPAXI@Z 10004e70 f i main.cpp.obj + 0001:00003e70 ??_Eexception@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Eruntime_error@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Gbad_alloc@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Gbad_array_new_length@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Gbad_cast@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Gbad_exception@std@@UAEPAXI@Z 10004e70 f i main.cpp.obj + 0001:00003e70 ??_Gexception@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003e70 ??_Gruntime_error@std@@UAEPAXI@Z 10004e70 f i logging.cpp.obj + 0001:00003ea0 ??_Eios_base@std@@UAEPAXI@Z 10004ea0 f i logging.cpp.obj + 0001:00003ea0 ??_Gios_base@std@@UAEPAXI@Z 10004ea0 f i logging.cpp.obj + 0001:00003f10 ?_Deallocate_for_capacity@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAXAAV?$allocator@D@2@QADI@Z 10004f10 f i logging.cpp.obj + 0001:00003f50 ?_Decref@facet@locale@std@@UAEPAV_Facet_base@3@XZ 10004f50 f i logging.cpp.obj + 0001:00003f70 ?_Endwrite@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAE_NXZ 10004f70 f i logging.cpp.obj + 0001:00004050 ?_Incref@facet@locale@std@@UAEXXZ 10005050 f i logging.cpp.obj + 0001:00004060 ?_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@12@@Z 10005060 f i logging.cpp.obj + 0001:00004140 ?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ 10005140 f i logging.cpp.obj + 0001:000041a0 ?_Initcvt@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXABV?$codecvt@DDU_Mbstatet@@@2@@Z 100051a0 f i logging.cpp.obj + 0001:00004220 ?_Lock@?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEXXZ 10005220 f i logging.cpp.obj + 0001:00004230 ?InvalidFunctionPtrCheckHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@I@Z 10005230 f i main.cpp.obj + 0001:00004230 ?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ 10005230 f i logging.cpp.obj + 0001:00004230 ?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ 10005230 f i logging.cpp.obj + 0001:00004230 ?sp_enable_shared_from_this@detail@boost@@YAXZZ 10005230 f i main.cpp.obj + 0001:00004230 @_guard_check_icall_nop@4 10005230 f i libvcruntime:jbcxrval.obj + 0001:00004240 ?_Reset_back@?$basic_filebuf@DU?$char_traits@D@std@@@std@@AAEXXZ 10005240 f i logging.cpp.obj + 0001:00004270 ?_Throw_bad_array_new_length@std@@YAXXZ 10005270 f i logging.cpp.obj + 0001:00004290 ?_Throw_bad_cast@std@@YAXXZ 10005290 f i logging.cpp.obj + 0001:000042b0 ?_Unlock@?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAEXXZ 100052b0 f i logging.cpp.obj + 0001:000042c0 ?_Xlen_string@std@@YAXXZ 100052c0 f i logging.cpp.obj + 0001:000042d0 ?_Xran@?$_String_val@U?$_Simple_types@D@std@@@std@@SAXXZ 100052d0 f i logging.cpp.obj + 0001:000042e0 ?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@QBDI@Z 100052e0 f i logging.cpp.obj + 0001:00004440 ?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ 10005440 f i logging.cpp.obj + 0001:00004450 ?clear@ios_base@std@@QAEXH@Z 10005450 f i logging.cpp.obj + 0001:000044c0 ?clear@ios_base@std@@QAEXH_N@Z 100054c0 f i logging.cpp.obj + 0001:00004540 ?deallocate@?$allocator@D@std@@QAEXQADI@Z 10005540 f i logging.cpp.obj + 0001:00004580 ?default_error_condition@error_category@std@@UBE?AVerror_condition@2@H@Z 10005580 f i logging.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6GXXZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IXXZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?CanHookChainImpl@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBE_NXZ 10005590 f i main.cpp.obj + 0001:00004590 ?do_always_noconv@?$codecvt@DDU_Mbstatet@@@std@@MBE_NXZ 10005590 f i logging.cpp.obj + 0001:00004590 ___acrt_uninitialize_command_line 10005590 f i libucrt:argv_data.obj + 0001:000045a0 ?do_encoding@codecvt_base@std@@MBEHXZ 100055a0 f i logging.cpp.obj + 0001:000045a0 ?do_max_length@codecvt_base@std@@MBEHXZ 100055a0 f i logging.cpp.obj + 0001:000045b0 ?do_in@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z 100055b0 f i logging.cpp.obj + 0001:000045b0 ?do_out@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z 100055b0 f i logging.cpp.obj + 0001:000045d0 ?do_length@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PBD1I@Z 100055d0 f i logging.cpp.obj + 0001:000045f0 ?do_narrow@?$ctype@D@std@@MBEDDD@Z 100055f0 f i logging.cpp.obj + 0001:00004600 ?do_narrow@?$ctype@D@std@@MBEPBDPBD0DPAD@Z 10005600 f i logging.cpp.obj + 0001:00004620 ?do_tolower@?$ctype@D@std@@MBEDD@Z 10005620 f i logging.cpp.obj + 0001:00004640 ?do_tolower@?$ctype@D@std@@MBEPBDPADPBD@Z 10005640 f i logging.cpp.obj + 0001:00004670 ?do_toupper@?$ctype@D@std@@MBEDD@Z 10005670 f i logging.cpp.obj + 0001:00004690 ?do_toupper@?$ctype@D@std@@MBEPBDPADPBD@Z 10005690 f i logging.cpp.obj + 0001:000046c0 ?do_unshift@?$codecvt@DDU_Mbstatet@@@std@@MBEHAAU_Mbstatet@@PAD1AAPAD@Z 100056c0 f i logging.cpp.obj + 0001:000046e0 ?do_widen@?$ctype@D@std@@MBEDD@Z 100056e0 f i logging.cpp.obj + 0001:000046f0 ?do_widen@?$ctype@D@std@@MBEPBDPBD0PAD@Z 100056f0 f i logging.cpp.obj + 0001:00004710 ?equivalent@error_category@std@@UBE_NABVerror_code@2@H@Z 10005710 f i logging.cpp.obj + 0001:00004740 ?equivalent@error_category@std@@UBE_NHABVerror_condition@2@@Z 10005740 f i logging.cpp.obj + 0001:00004780 ?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@II@Z 10005780 f i logging.cpp.obj + 0001:000047d0 ?imbue@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z 100057d0 f i logging.cpp.obj + 0001:00004850 ?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z 10005850 f i logging.cpp.obj + 0001:00004860 ?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 10005860 f i logging.cpp.obj + 0001:000049e0 ?make_error_code@std@@YA?AVerror_code@1@W4io_errc@1@@Z 100059e0 f i logging.cpp.obj + 0001:00004a00 ?message@_Iostream_error_category2@std@@UBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@H@Z 10005a00 f i logging.cpp.obj + 0001:00004ac0 ?name@_Iostream_error_category2@std@@UBEPBDXZ 10005ac0 f i logging.cpp.obj + 0001:00004ad0 ?overflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005ad0 f i logging.cpp.obj + 0001:00004c60 ?overflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005c60 f i logging.cpp.obj + 0001:00004c60 ?pbackfail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005c60 f i logging.cpp.obj + 0001:00004c70 ?pbackfail@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHH@Z 10005c70 f i logging.cpp.obj + 0001:00004d20 ?push_back@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXD@Z 10005d20 f i logging.cpp.obj + 0001:00004e40 ?seekoff@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@_JHH@Z 10005e40 f i logging.cpp.obj + 0001:00004f20 ?seekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@_JHH@Z 10005f20 f i logging.cpp.obj + 0001:00004f50 ?seekpos@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@V32@H@Z 10005f50 f i logging.cpp.obj + 0001:00005020 ?seekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@V32@H@Z 10006020 f i logging.cpp.obj + 0001:00005050 ?setbuf@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@PAD_J@Z 10006050 f i logging.cpp.obj + 0001:000050a0 ?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PAD_J@Z 100060a0 f i logging.cpp.obj + 0001:000050b0 ?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z 100060b0 f i logging.cpp.obj + 0001:000050e0 ?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ 100060e0 f i logging.cpp.obj + 0001:000050f0 ?sync@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100060f0 f i logging.cpp.obj + 0001:00005120 ?get_untyped_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXXZ 10006120 f i main.cpp.obj + 0001:00005120 ?get_untyped_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXXZ 10006120 f i main.cpp.obj + 0001:00005120 ?get_untyped_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXXZ 10006120 f i main.cpp.obj + 0001:00005120 ?get_untyped_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXXZ 10006120 f i main.cpp.obj + 0001:00005120 ?get_untyped_deleter@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXXZ 10006120 f i main.cpp.obj + 0001:00005120 ?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10006120 f i logging.cpp.obj + 0001:00005130 ?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10006130 f i logging.cpp.obj + 0001:00005470 ?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10006470 f i logging.cpp.obj + 0001:000054a0 ?underflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100064a0 f i logging.cpp.obj + 0001:000054e0 ?raw_length@pDNameNode@@UBEHXZ 100064e0 f i libvcruntime:undname.obj + 0001:000054e0 ?underflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100064e0 f i logging.cpp.obj + 0001:000054f0 ?what@exception@std@@UBEPBDXZ 100064f0 f i logging.cpp.obj + 0001:00005500 ?xsgetn@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z 10006500 f i logging.cpp.obj + 0001:000056c0 ?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z 100066c0 f i logging.cpp.obj + 0001:00005790 ?xsputn@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z 10006790 f i logging.cpp.obj + 0001:00005950 ?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z 10006950 f i logging.cpp.obj + 0001:00005a20 ??$Get@E@CDataStore@Nampower@@QAEXAAE@Z 10006a20 f i cdatastore.cpp.obj + 0001:00005aa0 ?AssertFetchRead@CDataStore@Nampower@@QAE_NII@Z 10006aa0 f cdatastore.cpp.obj + 0001:00005ad0 ?AssertFetchWrite@CDataStore@Nampower@@QAE_NII@Z 10006ad0 f cdatastore.cpp.obj + 0001:00005b00 ?Destroy@CDataStore@Nampower@@IAEXXZ 10006b00 f cdatastore.cpp.obj + 0001:00005b20 ?DetachBuffer@CDataStore@Nampower@@UAEXPAPAXPAI1@Z 10006b20 f cdatastore.cpp.obj + 0001:00005b60 ?Finalize@CDataStore@Nampower@@UAEXXZ 10006b60 f cdatastore.cpp.obj + 0001:00005b70 ?GetBufferParams@CDataStore@Nampower@@UAEXPAPBXPAI1@Z 10006b70 f cdatastore.cpp.obj + 0001:00005ba0 ?GetPackedGuid@CDataStore@Nampower@@QAEXAA_K@Z 10006ba0 f cdatastore.cpp.obj + 0001:00005cb0 ?Initialize@CDataStore@Nampower@@IAEXXZ 10006cb0 f cdatastore.cpp.obj + 0001:00005cd0 ?InternalDestroy@CDataStore@Nampower@@MAEXAAPAEAAI1@Z 10006cd0 f cdatastore.cpp.obj + 0001:00005d10 ?InternalFetchRead@CDataStore@Nampower@@MAEHIIAAPAEAAI1@Z 10006d10 f cdatastore.cpp.obj + 0001:00005d20 ?InternalFetchWrite@CDataStore@Nampower@@MAEHIIAAPAEAAI1@Z 10006d20 f cdatastore.cpp.obj + 0001:00005d70 ?InternalInitialize@CDataStore@Nampower@@MAEXAAPAEAAI1@Z 10006d70 f cdatastore.cpp.obj + 0001:00005d80 ?IsRead@CDataStore@Nampower@@UAEHXZ 10006d80 f cdatastore.cpp.obj + 0001:00005d90 ?Reset@CDataStore@Nampower@@UAEXXZ 10006d90 f cdatastore.cpp.obj + 0001:00005dc0 ?ClntObjMgrGetActivePlayerGuid@game@@YA_KXZ 10006dc0 f game.cpp.obj + 0001:00005dd0 ?ClntObjMgrObjectPtr@game@@YAPAIW4TypeMask@1@_K@Z 10006dd0 f game.cpp.obj + 0001:00005df0 ?GetActivePlayerUnitFields@game@@YAPAUUnitFields@1@XZ 10006df0 f game.cpp.obj + 0001:00005e10 ?GetCastTime@game@@YAIPAXI@Z 10006e10 f game.cpp.obj + 0001:00005e30 ?GetCorpseOwner@game@@YA_KPAI@Z 10006e30 f game.cpp.obj + 0001:00005e50 ?GetCurrentTargetGuid@game@@YA_KXZ 10006e50 f game.cpp.obj + 0001:00005e60 ?GetDurationObject@game@@YAPAVCDuration@1@I@Z 10006e60 f game.cpp.obj + 0001:00005e80 ?GetItemId@game@@YAIPAUCGItem_C@1@@Z 10006e80 f game.cpp.obj + 0001:00005e90 ?GetObjectPtr@game@@YAPAI_K@Z 10006e90 f game.cpp.obj + 0001:00005ea0 ?GetObjectVFTable@game@@YAPAIPAI@Z 10006ea0 f game.cpp.obj + 0001:00005eb0 ?GetPlayerInventoryPtr@game@@YAPAIPAI@Z 10006eb0 f game.cpp.obj + 0001:00005ec0 ?GetSpellDuration@game@@YAHPBUSpellRec@1@_N@Z 10006ec0 f game.cpp.obj + 0001:00005ee0 ?GetSpellInfo@game@@YAPBUSpellRec@1@I@Z 10006ee0 f game.cpp.obj + 0001:00005f00 ?GetSpellModifier@game@@YAHPBUSpellRec@1@W4SpellModOp@1@@Z 10006f00 f game.cpp.obj + 0001:00005f30 ?GetSpellName@game@@YAPBDI@Z 10006f30 f game.cpp.obj + 0001:00005f70 ?UnitGetGuid@game@@YA_KPAI@Z 10006f70 f game.cpp.obj + 0001:00005f90 ?UnitGetMountDisplayId@game@@YAIPAI@Z 10006f90 f game.cpp.obj + 0001:00005fb0 ?UnitGetOwnerGuidForGuid@game@@YA_K_K@Z 10006fb0 f game.cpp.obj + 0001:00006010 ?UnitGetPetGuidForGuid@game@@YA_K_K@Z 10007010 f game.cpp.obj + 0001:00006060 ?UnitGetTargetGuid@game@@YA_KPAI@Z 10007060 f game.cpp.obj + 0001:00006080 ?UnitGetTargetGuidForGuid@game@@YA_K_K@Z 10007080 f game.cpp.obj + 0001:000060c0 ?UnitIsBuffCapped@game@@YA_NPAI@Z 100070c0 f game.cpp.obj + 0001:00006100 ?UnitIsDebuffCapped@game@@YA_NPAI@Z 10007100 f game.cpp.obj + 0001:00006140 ?UnitIsInCombat@game@@YA_NPAI@Z 10007140 f game.cpp.obj + 0001:00006170 ?UnitIsPvpFlagged@game@@YA_NPAI@Z 10007170 f game.cpp.obj + 0001:000061a0 ??$?0PAD$0A@@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PAD0ABV?$allocator@D@1@@Z 100071a0 f i main.cpp.obj + 0001:00006260 ??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 10007260 f i main.cpp.obj + 0001:00006300 ??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 10007300 f i main.cpp.obj + 0001:000063a0 ??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 100073a0 f i main.cpp.obj + 0001:00006450 ??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10007450 f i main.cpp.obj + 0001:000064f0 ??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 100074f0 f i main.cpp.obj + 0001:000065a0 ??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100075a0 f i main.cpp.obj + 0001:00006640 ??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 10007640 f i main.cpp.obj + 0001:000066e0 ??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 100076e0 f i main.cpp.obj + 0001:00006860 ??$?6DU?$char_traits@D@std@@V?$allocator@D@1@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z 10007860 f i main.cpp.obj + 0001:00006880 ??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 10007880 f i main.cpp.obj + 0001:00006b20 ??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 10007b20 f i main.cpp.obj + 0001:00006dc0 ??$?6VError@hadesmem@@UTagErrorCodeWinLast@1@K@boost@@YAABVError@hadesmem@@ABV12@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 10007dc0 f i main.cpp.obj + 0001:00006dd0 ??$?6VError@hadesmem@@UTagErrorString@1@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YAABVError@hadesmem@@ABV12@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 10007dd0 f i main.cpp.obj + 0001:00006de0 ??$Put@I@CDataStore@Nampower@@QAEXI@Z 10007de0 f i main.cpp.obj + 0001:00006e20 ??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 10007e20 f i main.cpp.obj + 0001:00006ee0 ??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10007ee0 f i main.cpp.obj + 0001:00007050 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 10008050 f i main.cpp.obj + 0001:00007050 ??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 10008050 f i main.cpp.obj + 0001:00007050 ??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 10008050 f i main.cpp.obj + 0001:000072c0 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 100082c0 f i main.cpp.obj + 0001:00007530 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 10008530 f i main.cpp.obj + 0001:00007530 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 10008530 f i main.cpp.obj + 0001:00007530 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 10008530 f i main.cpp.obj + 0001:00007530 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 10008530 f i main.cpp.obj + 0001:00007530 ??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 10008530 f i main.cpp.obj + 0001:00007790 ??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 10008790 f i main.cpp.obj + 0001:000079f0 ??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 100089f0 f i main.cpp.obj + 0001:000079f0 ??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 100089f0 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007c50 ??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 10008c50 f i main.cpp.obj + 0001:00007ed0 ??$_Destroy_range@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@std@@@std@@YAXPAV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@QAV10@AAV?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@0@@Z 10008ed0 f i main.cpp.obj + 0001:00007f10 ??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 10008f10 f i main.cpp.obj + 0001:00007f80 ??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 10008f80 f i main.cpp.obj + 0001:00008170 ??$_Erase_tree@V?$allocator@U?$_Tree_node@IPAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@I@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@IPAX@std@@@1@PAU?$_Tree_node@IPAX@1@@Z 10009170 f i spell_scripts.cpp.obj + 0001:00008170 ??$_Erase_tree@V?$allocator@U?$_Tree_node@KPAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@KPAX@std@@@1@PAU?$_Tree_node@KPAX@1@@Z 10009170 f i main.cpp.obj + 0001:000081b0 ??$_Erase_tree@V?$allocator@U?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@1@PAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@1@@Z 100091b0 f i main.cpp.obj + 0001:00008220 ??$_Find_lower_bound@Utype_info_@exception_detail@boost@@@?$_Tree@V?$_Tmap_traits@Utype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@U?$less@Utype_info_@exception_detail@boost@@@std@@V?$allocator@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@@6@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@1@ABUtype_info_@exception_detail@boost@@@Z 10009220 f i main.cpp.obj + 0001:000082c0 ??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 100092c0 f i main.cpp.obj + 0001:000086a0 ??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100096a0 f i main.cpp.obj + 0001:000088f0 ??$_UIntegral_to_buff@DI@std@@YAPADPADI@Z 100098f0 f i main.cpp.obj + 0001:00008930 ??$_Uninitialized_move@PAVSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAPAVSuspendedThread@hadesmem@@QAV12@0PAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 10009930 f i main.cpp.obj + 0001:00008980 ??$checked_delete@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@boost@@YAXPAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@0@@Z 10009980 f i main.cpp.obj + 0001:00008980 ??$checked_delete@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@boost@@YAXPAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@0@@Z 10009980 f i main.cpp.obj + 0001:00008990 ??$checked_delete@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@YAXPAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 10009990 f i main.cpp.obj + 0001:00008990 ??$checked_delete@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@YAXPAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 10009990 f i main.cpp.obj + 0001:00008990 ??$checked_delete@Verror_info_base@exception_detail@boost@@@boost@@YAXPAVerror_info_base@exception_detail@0@@Z 10009990 f i main.cpp.obj + 0001:000089a0 ??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100099a0 f i main.cpp.obj + 0001:000091b0 ??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 1000a1b0 f i main.cpp.obj + 0001:000099c0 ??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 1000a9c0 f i main.cpp.obj + 0001:0000a1d0 ??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 1000b1d0 f i main.cpp.obj + 0001:0000a9e0 ??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 1000b9e0 f i main.cpp.obj + 0001:0000b1f0 ??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 1000c1f0 f i main.cpp.obj + 0001:0000ba00 ??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 1000ca00 f i main.cpp.obj + 0001:0000c210 ??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 1000d210 f i main.cpp.obj + 0001:0000ca20 ??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 1000da20 f i main.cpp.obj + 0001:0000d230 ??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 1000e230 f i main.cpp.obj + 0001:0000da40 ??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 1000ea40 f i main.cpp.obj + 0001:0000e250 ??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 1000f250 f i main.cpp.obj + 0001:0000ea60 ??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 1000fa60 f i main.cpp.obj + 0001:0000f270 ??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 10010270 f i main.cpp.obj + 0001:0000fa80 ??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 10010a80 f i main.cpp.obj + 0001:00010290 ??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 10011290 f i main.cpp.obj + 0001:00010aa0 ??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 10011aa0 f i main.cpp.obj + 0001:000112b0 ??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100122b0 f i main.cpp.obj + 0001:00011ac0 ??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 10012ac0 f i main.cpp.obj + 0001:000122d0 ??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100132d0 f i main.cpp.obj + 0001:00012ae0 ??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 10013ae0 f i main.cpp.obj + 0001:000132f0 ??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 100142f0 f i main.cpp.obj + 0001:00013b00 ??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 10014b00 f i main.cpp.obj + 0001:00014310 ??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 10015310 f i main.cpp.obj + 0001:00014b30 ??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 10015b30 f i main.cpp.obj + 0001:00015340 ??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 10016340 f i main.cpp.obj + 0001:00015b50 ??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 10016b50 f i main.cpp.obj + 0001:00016360 ??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 10017360 f i main.cpp.obj + 0001:00016b70 ??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 10017b70 f i main.cpp.obj + 0001:00017380 ??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 10018380 f i main.cpp.obj + 0001:00017b90 ??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 10018b90 f i main.cpp.obj + 0001:000183a0 ??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 100193a0 f i main.cpp.obj + 0001:00018bb0 ??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 10019bb0 f i main.cpp.obj + 0001:00018c30 ??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 10019c30 f i main.cpp.obj + 0001:00018cb0 ??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 10019cb0 f i main.cpp.obj + 0001:00018d60 ??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10019d60 f i main.cpp.obj + 0001:00019130 ??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 1001a130 f i main.cpp.obj + 0001:00019500 ??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 1001a500 f i main.cpp.obj + 0001:00019580 ??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 1001a580 f i main.cpp.obj + 0001:000196e0 ??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 1001a6e0 f i main.cpp.obj + 0001:00019880 ??$throw_exception@VError@hadesmem@@@boost@@YAXABVError@hadesmem@@ABUsource_location@0@@Z 1001a880 f i main.cpp.obj + 0001:000198b0 ??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 1001a8b0 f i main.cpp.obj + 0001:00019b30 ??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 1001ab30 f i main.cpp.obj + 0001:00019e70 ??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 1001ae70 f i main.cpp.obj + 0001:00019f70 ??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 1001af70 f i main.cpp.obj + 0001:0001a0e0 ??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 1001b0e0 f i main.cpp.obj + 0001:0001a200 ??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 1001b200 f i main.cpp.obj + 0001:0001a3a0 ??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 1001b3a0 f i main.cpp.obj + 0001:0001a580 ??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 1001b580 f i main.cpp.obj + 0001:0001a760 ??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 1001b760 f i main.cpp.obj + 0001:0001a940 ??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001b940 f i main.cpp.obj + 0001:0001ab20 ??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 1001bb20 f i main.cpp.obj + 0001:0001ad00 ??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 1001bd00 f i main.cpp.obj + 0001:0001aee0 ??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001bee0 f i main.cpp.obj + 0001:0001b0c0 ??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 1001c0c0 f i main.cpp.obj + 0001:0001b2a0 ??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001c2a0 f i main.cpp.obj + 0001:0001b480 ??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 1001c480 f i main.cpp.obj + 0001:0001b660 ??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 1001c660 f i main.cpp.obj + 0001:0001b840 ??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 1001c840 f i main.cpp.obj + 0001:0001ba20 ??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 1001ca20 f i main.cpp.obj + 0001:0001bc00 ??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 1001cc00 f i main.cpp.obj + 0001:0001bde0 ??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 1001cde0 f i main.cpp.obj + 0001:0001bfc0 ??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 1001cfc0 f i main.cpp.obj + 0001:0001c1a0 ??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 1001d1a0 f i main.cpp.obj + 0001:0001c380 ??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 1001d380 f i main.cpp.obj + 0001:0001c560 ??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 1001d560 f i main.cpp.obj + 0001:0001c740 ??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 1001d740 f i main.cpp.obj + 0001:0001c920 ??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 1001d920 f i main.cpp.obj + 0001:0001cb00 ??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 1001db00 f i main.cpp.obj + 0001:0001cce0 ??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 1001dce0 f i main.cpp.obj + 0001:0001cec0 ??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 1001dec0 f i main.cpp.obj + 0001:0001d0a0 ??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 1001e0a0 f i main.cpp.obj + 0001:0001d280 ??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 1001e280 f i main.cpp.obj + 0001:0001d460 ??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 1001e460 f i main.cpp.obj + 0001:0001d640 ??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 1001e640 f i main.cpp.obj + 0001:0001d820 ??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 1001e820 f i main.cpp.obj + 0001:0001da00 ??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 1001ea00 f i main.cpp.obj + 0001:0001dbe0 ??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 1001ebe0 f i main.cpp.obj + 0001:0001ddc0 ??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 1001edc0 f i main.cpp.obj + 0001:0001dfb0 ??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 1001efb0 f i main.cpp.obj + 0001:0001e190 ??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 1001f190 f i main.cpp.obj + 0001:0001e270 ??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 1001f270 f i main.cpp.obj + 0001:0001e350 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ID@Z 1001f350 f i main.cpp.obj + 0001:0001e400 ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@U_String_constructor_concat_tag@1@AAV01@1@Z 1001f400 f i main.cpp.obj + 0001:0001e5a0 ??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 1001f5a0 f i main.cpp.obj + 0001:0001e640 ??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 1001f640 f i main.cpp.obj + 0001:0001e6e0 ??0?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@QAE@ABK@Z 1001f6e0 f i main.cpp.obj + 0001:0001e700 ??0?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@QAE@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 1001f700 f i main.cpp.obj + 0001:0001e750 ??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 1001f750 f i main.cpp.obj + 0001:0001e860 ??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 1001f860 f i main.cpp.obj + 0001:0001e9e0 ??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 1001f9e0 f i main.cpp.obj + 0001:0001eaf0 ??0CastQueue@Nampower@@QAE@H@Z 1001faf0 f i main.cpp.obj + 0001:0001ebc0 ??0Error@hadesmem@@QAE@ABV01@@Z 1001fbc0 f i main.cpp.obj + 0001:0001eca0 ??0Error@hadesmem@@QAE@XZ 1001fca0 f i main.cpp.obj + 0001:0001ed10 ??0Process@hadesmem@@QAE@K@Z 1001fd10 f i main.cpp.obj + 0001:0001eef0 ??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 1001fef0 f i main.cpp.obj + 0001:0001f060 ??0SuspendedProcess@hadesmem@@QAE@KK@Z 10020060 f i main.cpp.obj + 0001:0001f780 ??0Thread@hadesmem@@QAE@K@Z 10020780 f i main.cpp.obj + 0001:0001f8c0 ??0bad_alloc@std@@QAE@XZ 100208c0 f i main.cpp.obj + 0001:0001f8e0 ??0bad_alloc_@exception_detail@boost@@QAE@ABU012@@Z 100208e0 f i main.cpp.obj + 0001:0001f960 ??0bad_exception@std@@QAE@ABV01@@Z 10020960 f i main.cpp.obj + 0001:0001f990 ??0bad_exception@std@@QAE@XZ 10020990 f i main.cpp.obj + 0001:0001f9b0 ??0bad_exception_@exception_detail@boost@@QAE@ABU012@@Z 100209b0 f i main.cpp.obj + 0001:0001fa30 ??0clone_base@exception_detail@boost@@QAE@ABV012@@Z 10020a30 f i main.cpp.obj + 0001:0001fa40 ??0error_info_container_impl@exception_detail@boost@@QAE@XZ 10020a40 f i main.cpp.obj + 0001:0001fae0 ??0exception@boost@@QAE@ABV01@@Z 10020ae0 f i main.cpp.obj + 0001:0001fb30 ??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 10020b30 f i main.cpp.obj + 0001:0001fbd0 ??0source_location@boost@@QAE@PBDI0I@Z 10020bd0 f i main.cpp.obj + 0001:0001fbf0 ??1?$DetourRefCounter@I@detail@hadesmem@@QAE@XZ 10020bf0 f i main.cpp.obj + 0001:0001fc00 ??1?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAE@XZ 10020c00 f i main.cpp.obj + 0001:0001fc10 ??1?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@QAE@XZ 10020c10 f i main.cpp.obj + 0001:0001fc20 ??1?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@QAE@XZ 10020c20 f i main.cpp.obj + 0001:0001fc20 ??1?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@QAE@XZ 10020c20 f i main.cpp.obj + 0001:0001fc50 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@IPAX@std@@@std@@@std@@QAE@XZ 10020c50 f i spell_scripts.cpp.obj + 0001:0001fc50 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@KPAX@std@@@std@@@std@@QAE@XZ 10020c50 f i main.cpp.obj + 0001:0001fc70 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@std@@@std@@QAE@XZ 10020c70 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@HPAVPatchDetourBase@hadesmem@@_K@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@IPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@EH@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@HI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@I@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@IHH@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@IH_K@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@_K@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@_KPAVPatchDetourBase@hadesmem@@PBD@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$_Func_class@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fc90 ??1?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@QAE@XZ 10020c90 f i main.cpp.obj + 0001:0001fcc0 ??1?$_Tidy_guard@V?$numpunct@D@std@@@std@@QAE@XZ 10020cc0 f i main.cpp.obj + 0001:0001fcf0 ??1?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE@XZ 10020cf0 f i spell_scripts.cpp.obj + 0001:0001fcf0 ??1?$_Tree@V?$_Tset_traits@KU?$less@K@std@@V?$allocator@K@2@$0A@@std@@@std@@QAE@XZ 10020cf0 f i main.cpp.obj + 0001:0001fd30 ??1?$basic_iostream@DU?$char_traits@D@std@@@std@@UAE@XZ 10020d30 f i main.cpp.obj + 0001:0001fd90 ??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ 10020d90 f i main.cpp.obj + 0001:0001fdb0 ??1?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAE@XZ 10020db0 f i main.cpp.obj + 0001:0001fec0 ??1?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@UAE@XZ 10020ec0 f i main.cpp.obj + 0001:0001fec0 ??1error_info_base@exception_detail@boost@@UAE@XZ 10020ec0 f i main.cpp.obj + 0001:0001fed0 ??1?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@UAE@XZ 10020ed0 f i main.cpp.obj + 0001:0001ff30 ??1?$pair@Utype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@QAE@XZ 10020f30 f i main.cpp.obj + 0001:0001ff70 ??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 10020f70 f i main.cpp.obj + 0001:0001ffd0 ??1?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@QAE@XZ 10020fd0 f i spell_scripts.cpp.obj + 0001:0001ffd0 ??1?$set@KU?$less@K@std@@V?$allocator@K@2@@std@@QAE@XZ 10020fd0 f i main.cpp.obj + 0001:0001ffe0 ??1?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@XZ 10020fe0 f i main.cpp.obj + 0001:0001ffe0 ??1?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@XZ 10020fe0 f i main.cpp.obj + 0001:0001ffe0 ??1?$shared_ptr@Verror_info_base@exception_detail@boost@@@boost@@QAE@XZ 10020fe0 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020020 ??1?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@QAE@XZ 10021020 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6GXXZ@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6GXXZ@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IXXZ@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IXXZ@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020030 ??1?$unique_ptr@V?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@U?$default_delete@V?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@@std@@@std@@QAE@XZ 10021030 f i main.cpp.obj + 0001:00020050 ??1?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@QAE@XZ 10021050 f i main.cpp.obj + 0001:00020070 ??1?$vector@DV?$allocator@D@std@@@std@@QAE@XZ 10021070 f i main.cpp.obj + 0001:00020070 ??1?$vector@EV?$allocator@E@std@@@std@@QAE@XZ 10021070 f i main.cpp.obj + 0001:00020070 ?_Tidy@?$vector@EV?$allocator@E@std@@@std@@AAEXXZ 10021070 f i main.cpp.obj + 0001:000200c0 ??1?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@QAE@XZ 100210c0 f i main.cpp.obj + 0001:00020120 ??1?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@QAE@XZ 10021120 f i main.cpp.obj + 0001:00020120 ??1SuspendedProcess@hadesmem@@QAE@XZ 10021120 f i main.cpp.obj + 0001:00020130 ??1CDataStore@Nampower@@UAE@XZ 10021130 f i main.cpp.obj + 0001:00020180 ??1Process@hadesmem@@QAE@XZ 10021180 f i main.cpp.obj + 0001:00020190 ??1ProtectGuard@detail@hadesmem@@QAE@XZ 10021190 f i main.cpp.obj + 0001:000201a0 ??1Thread@hadesmem@@QAE@XZ 100211a0 f i main.cpp.obj + 0001:000201b0 ??1_Init_once_completer@std@@QAE@XZ 100211b0 f i main.cpp.obj + 0001:000201d0 ??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100211d0 f i main.cpp.obj + 0001:00020220 ??1bad_alloc_@exception_detail@boost@@UAE@XZ 10021220 f i main.cpp.obj + 0001:000202a0 ??1bad_exception_@exception_detail@boost@@UAE@XZ 100212a0 f i main.cpp.obj + 0001:00020320 ??1clone_base@exception_detail@boost@@UAE@XZ 10021320 f i main.cpp.obj + 0001:00020330 ??1deleter@?$wrapexcept@VError@hadesmem@@@boost@@QAE@XZ 10021330 f i main.cpp.obj + 0001:00020340 ??1error_info_container@exception_detail@boost@@IAE@XZ 10021340 f i main.cpp.obj + 0001:00020350 ??1exception@boost@@MAE@XZ 10021350 f i main.cpp.obj + 0001:000203b0 ??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100213b0 f i main.cpp.obj + 0001:00020420 ??1shared_count@detail@boost@@QAE@XZ 10021420 f i main.cpp.obj + 0001:00020460 ??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@QBD@Z 10021460 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:00020490 ??4?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@QAEAAV01@$$T@Z 10021490 f i main.cpp.obj + 0001:000204c0 ??4?$vector@EV?$allocator@E@std@@@std@@QAEAAV01@$$QAV01@@Z 100214c0 f i main.cpp.obj + 0001:00020500 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 10021500 f i main.cpp.obj + 0001:000206b0 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 100216b0 f i main.cpp.obj + 0001:000206b0 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 100216b0 f i main.cpp.obj + 0001:00020860 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 10021860 f i main.cpp.obj + 0001:00020a10 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z 10021a10 f i main.cpp.obj + 0001:00020a20 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAVios_base@1@AAV21@@Z@Z 10021a20 f i main.cpp.obj + 0001:00020a40 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 10021a40 f i main.cpp.obj + 0001:00020bf0 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 10021bf0 f i main.cpp.obj + 0001:00020da0 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 10021da0 f i main.cpp.obj + 0001:00020f50 ??8type_info@@QBE_NABV0@@Z 10021f50 f i main.cpp.obj + 0001:00020f70 ??E?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@U_Iterator_base0@2@@std@@QAEAAV01@XZ 10021f70 f i main.cpp.obj + 0001:00020f70 ??E?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@U_Iterator_base0@2@@std@@QAEAAV01@XZ 10021f70 f i pet.cpp.obj + 0001:000210d0 ??R?$less@Utype_info_@exception_detail@boost@@@std@@QBE_NABUtype_info_@exception_detail@boost@@0@Z 100220d0 f i main.cpp.obj + 0001:00021140 ??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@QBD@Z 10022140 f i main.cpp.obj + 0001:00021170 ??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10022170 f i main.cpp.obj + 0001:00021200 ??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10022200 f i main.cpp.obj + 0001:000212d0 ??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100222d0 f i main.cpp.obj + 0001:00021380 ??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10022380 f i main.cpp.obj + 0001:00021430 ??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 10022430 f i main.cpp.obj + 0001:000214b0 ??_DError@hadesmem@@QAEXXZ 100224b0 f i main.cpp.obj + 0001:00021524 ??_E?$basic_iostream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 10022524 f i main.cpp.obj + 0001:0002152c ??_E?$basic_istream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 1002252c f i main.cpp.obj + 0001:00021534 ??_E?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$4PPPPPPPM@A@AEPAXI@Z 10022534 f i main.cpp.obj + 0001:0002153c ??_E?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$4PPPPPPPM@A@AEPAXI@Z 1002253c f i main.cpp.obj + 0001:00021544 ??_E?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@$4PPPPPPPM@CM@AEPAXI@Z 10022544 f i main.cpp.obj + 0001:0002154f ??_E?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@WBI@AEPAXI@Z 1002254f f i main.cpp.obj + 0001:00021557 ??_E?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@$4PPPPPPPM@CM@AEPAXI@Z 10022557 f i main.cpp.obj + 0001:00021562 ??_E?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@WBI@AEPAXI@Z 10022562 f i main.cpp.obj + 0001:0002156a ??_E?$wrapexcept@VError@hadesmem@@@boost@@W7AEPAXI@Z 1002256a f i main.cpp.obj + 0001:00021572 ??_E?$wrapexcept@VError@hadesmem@@@boost@@WBE@AEPAXI@Z 10022572 f i main.cpp.obj + 0001:0002157a ??_EError@hadesmem@@WM@AEPAXI@Z 1002257a f i main.cpp.obj + 0001:00021582 ??_Ebad_alloc_@exception_detail@boost@@WBI@AEPAXI@Z 10022582 f i main.cpp.obj + 0001:0002158a ??_Ebad_exception_@exception_detail@boost@@WBI@AEPAXI@Z 1002258a f i main.cpp.obj + 0001:000215a0 ??_E?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 100225a0 f i main.cpp.obj + 0001:000215a0 ??_G?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 100225a0 f i main.cpp.obj + 0001:000216a0 ??_E?$PatchDetour@P6GXXZPAX@hadesmem@@UAEPAXI@Z 100226a0 f i main.cpp.obj + 0001:000216a0 ??_G?$PatchDetour@P6GXXZPAX@hadesmem@@UAEPAXI@Z 100226a0 f i main.cpp.obj + 0001:000217a0 ??_E?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 100227a0 f i main.cpp.obj + 0001:000217a0 ??_G?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 100227a0 f i main.cpp.obj + 0001:000218a0 ??_E?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEPAXI@Z 100228a0 f i main.cpp.obj + 0001:000218a0 ??_G?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEPAXI@Z 100228a0 f i main.cpp.obj + 0001:000219a0 ??_E?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEPAXI@Z 100229a0 f i main.cpp.obj + 0001:000219a0 ??_G?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEPAXI@Z 100229a0 f i main.cpp.obj + 0001:00021aa0 ??_E?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEPAXI@Z 10022aa0 f i main.cpp.obj + 0001:00021aa0 ??_G?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEPAXI@Z 10022aa0 f i main.cpp.obj + 0001:00021ba0 ??_E?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022ba0 f i main.cpp.obj + 0001:00021ba0 ??_G?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022ba0 f i main.cpp.obj + 0001:00021ca0 ??_E?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEPAXI@Z 10022ca0 f i main.cpp.obj + 0001:00021ca0 ??_G?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEPAXI@Z 10022ca0 f i main.cpp.obj + 0001:00021da0 ??_E?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022da0 f i main.cpp.obj + 0001:00021da0 ??_G?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEPAXI@Z 10022da0 f i main.cpp.obj + 0001:00021ea0 ??_E?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEPAXI@Z 10022ea0 f i main.cpp.obj + 0001:00021ea0 ??_G?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEPAXI@Z 10022ea0 f i main.cpp.obj + 0001:00021fa0 ??_E?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEPAXI@Z 10022fa0 f i main.cpp.obj + 0001:00021fa0 ??_G?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEPAXI@Z 10022fa0 f i main.cpp.obj + 0001:000220a0 ??_E?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEPAXI@Z 100230a0 f i main.cpp.obj + 0001:000220a0 ??_G?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEPAXI@Z 100230a0 f i main.cpp.obj + 0001:000221a0 ??_E?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEPAXI@Z 100231a0 f i main.cpp.obj + 0001:000221a0 ??_G?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEPAXI@Z 100231a0 f i main.cpp.obj + 0001:000222a0 ??_E?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEPAXI@Z 100232a0 f i main.cpp.obj + 0001:000222a0 ??_G?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEPAXI@Z 100232a0 f i main.cpp.obj + 0001:000223a0 ??_E?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEPAXI@Z 100233a0 f i main.cpp.obj + 0001:000223a0 ??_G?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEPAXI@Z 100233a0 f i main.cpp.obj + 0001:000224a0 ??_E?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEPAXI@Z 100234a0 f i main.cpp.obj + 0001:000224a0 ??_G?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEPAXI@Z 100234a0 f i main.cpp.obj + 0001:000225a0 ??_E?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEPAXI@Z 100235a0 f i main.cpp.obj + 0001:000225a0 ??_G?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEPAXI@Z 100235a0 f i main.cpp.obj + 0001:000226a0 ??_E?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEPAXI@Z 100236a0 f i main.cpp.obj + 0001:000226a0 ??_G?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEPAXI@Z 100236a0 f i main.cpp.obj + 0001:000227a0 ??_E?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEPAXI@Z 100237a0 f i main.cpp.obj + 0001:000227a0 ??_G?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEPAXI@Z 100237a0 f i main.cpp.obj + 0001:000228a0 ??_E?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEPAXI@Z 100238a0 f i main.cpp.obj + 0001:000228a0 ??_G?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEPAXI@Z 100238a0 f i main.cpp.obj + 0001:000229a0 ??_E?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEPAXI@Z 100239a0 f i main.cpp.obj + 0001:000229a0 ??_G?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEPAXI@Z 100239a0 f i main.cpp.obj + 0001:00022aa0 ??_E?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023aa0 f i main.cpp.obj + 0001:00022aa0 ??_G?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023aa0 f i main.cpp.obj + 0001:00022ba0 ??_E?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEPAXI@Z 10023ba0 f i main.cpp.obj + 0001:00022ba0 ??_G?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEPAXI@Z 10023ba0 f i main.cpp.obj + 0001:00022ca0 ??_E?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023ca0 f i main.cpp.obj + 0001:00022ca0 ??_G?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXI@Z 10023ca0 f i main.cpp.obj + 0001:00022da0 ??_E?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEPAXI@Z 10023da0 f i main.cpp.obj + 0001:00022da0 ??_G?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEPAXI@Z 10023da0 f i main.cpp.obj + 0001:00022ea0 ??_E?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEPAXI@Z 10023ea0 f i main.cpp.obj + 0001:00022ea0 ??_G?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEPAXI@Z 10023ea0 f i main.cpp.obj + 0001:00022fa0 ??_E?$PatchDetour@P6IXXZPAX@hadesmem@@UAEPAXI@Z 10023fa0 f i main.cpp.obj + 0001:00022fa0 ??_G?$PatchDetour@P6IXXZPAX@hadesmem@@UAEPAXI@Z 10023fa0 f i main.cpp.obj + 0001:000230a0 ??_E?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEPAXI@Z 100240a0 f i main.cpp.obj + 0001:000230a0 ??_G?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEPAXI@Z 100240a0 f i main.cpp.obj + 0001:000231a0 ??_E?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEPAXI@Z 100241a0 f i main.cpp.obj + 0001:000231a0 ??_G?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEPAXI@Z 100241a0 f i main.cpp.obj + 0001:000232a0 ??_E?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEPAXI@Z 100242a0 f i main.cpp.obj + 0001:000232a0 ??_G?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEPAXI@Z 100242a0 f i main.cpp.obj + 0001:000233a0 ??_E?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEPAXI@Z 100243a0 f i main.cpp.obj + 0001:000233a0 ??_G?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEPAXI@Z 100243a0 f i main.cpp.obj + 0001:000234a0 ??_E?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEPAXI@Z 100244a0 f i main.cpp.obj + 0001:000234a0 ??_G?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEPAXI@Z 100244a0 f i main.cpp.obj + 0001:000235a0 ??_E?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEPAXI@Z 100245a0 f i main.cpp.obj + 0001:000235a0 ??_G?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEPAXI@Z 100245a0 f i main.cpp.obj + 0001:000236a0 ??_E?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 100246a0 f i main.cpp.obj + 0001:000236a0 ??_G?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 100246a0 f i main.cpp.obj + 0001:000236d0 ??_E?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 100246d0 f i main.cpp.obj + 0001:000236d0 ??_G?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@UAEPAXI@Z 100246d0 f i main.cpp.obj + 0001:00023700 ??_E?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10024700 f i main.cpp.obj + 0001:00023700 ??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10024700 f i main.cpp.obj + 0001:000237c0 ??_E?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100247c0 f i main.cpp.obj + 0001:000237c0 ??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100247c0 f i main.cpp.obj + 0001:00023850 ??_E?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 10024850 f i main.cpp.obj + 0001:00023850 ??_G?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 10024850 f i main.cpp.obj + 0001:00023880 ??_E?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 10024880 f i main.cpp.obj + 0001:00023880 ??_G?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 10024880 f i main.cpp.obj + 0001:000238a0 ??_E?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 100248a0 f i main.cpp.obj + 0001:000238a0 ??_G?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAEPAXI@Z 100248a0 f i main.cpp.obj + 0001:000238d0 ??_E?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 100248d0 f i main.cpp.obj + 0001:000238d0 ??_G?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 100248d0 f i main.cpp.obj + 0001:000238f0 ??_E?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 100248f0 f i main.cpp.obj + 0001:000238f0 ??_G?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@UAEPAXI@Z 100248f0 f i main.cpp.obj + 0001:00023910 ??_E?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@UAEPAXI@Z 10024910 f i main.cpp.obj + 0001:00023910 ??_G?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@UAEPAXI@Z 10024910 f i main.cpp.obj + 0001:00023940 ??_E?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@UAEPAXI@Z 10024940 f i main.cpp.obj + 0001:00023940 ??_G?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@UAEPAXI@Z 10024940 f i main.cpp.obj + 0001:00023960 ??_E?$numpunct@D@std@@MAEPAXI@Z 10024960 f i main.cpp.obj + 0001:00023960 ??_G?$numpunct@D@std@@MAEPAXI@Z 10024960 f i main.cpp.obj + 0001:000239b0 ??_E?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_E?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_E?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_E?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_E?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_G?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_G?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_G?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_G?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239b0 ??_G?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXI@Z 100249b0 f i main.cpp.obj + 0001:000239e0 ??_E?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 100249e0 f i main.cpp.obj + 0001:000239e0 ??_G?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAEPAXI@Z 100249e0 f i main.cpp.obj + 0001:00023a20 ??_E?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 10024a20 f i main.cpp.obj + 0001:00023a20 ??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 10024a20 f i main.cpp.obj + 0001:00023ab0 ??_ECDataStore@Nampower@@UAEPAXI@Z 10024ab0 f i main.cpp.obj + 0001:00023ab0 ??_GCDataStore@Nampower@@UAEPAXI@Z 10024ab0 f i main.cpp.obj + 0001:00023b20 ??_EError@hadesmem@@UAEPAXI@Z 10024b20 f i main.cpp.obj + 0001:00023b20 ??_GError@hadesmem@@UAEPAXI@Z 10024b20 f i main.cpp.obj + 0001:00023bb0 ??_Ebad_alloc_@exception_detail@boost@@UAEPAXI@Z 10024bb0 f i main.cpp.obj + 0001:00023bb0 ??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 10024bb0 f i main.cpp.obj + 0001:00023c40 ??_Ebad_exception_@exception_detail@boost@@UAEPAXI@Z 10024c40 f i main.cpp.obj + 0001:00023c40 ??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 10024c40 f i main.cpp.obj + 0001:00023cd0 ??_Eclone_base@exception_detail@boost@@UAEPAXI@Z 10024cd0 f i main.cpp.obj + 0001:00023cd0 ??_Gclone_base@exception_detail@boost@@UAEPAXI@Z 10024cd0 f i main.cpp.obj + 0001:00023d00 ??_Eerror_info_base@exception_detail@boost@@UAEPAXI@Z 10024d00 f i main.cpp.obj + 0001:00023d00 ??_Gerror_info_base@exception_detail@boost@@UAEPAXI@Z 10024d00 f i main.cpp.obj + 0001:00023d30 ??_Esp_counted_base@detail@boost@@UAEPAXI@Z 10024d30 f i main.cpp.obj + 0001:00023d30 ??_Gsp_counted_base@detail@boost@@UAEPAXI@Z 10024d30 f i main.cpp.obj + 0001:00023d60 ?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 10024d60 f i main.cpp.obj + 0001:00023d60 ?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 10024d60 f i main.cpp.obj + 0001:00023ef0 ?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 10024ef0 f i main.cpp.obj + 0001:00023f90 ?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10024f90 f i main.cpp.obj + 0001:00024800 ?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10025800 f i main.cpp.obj + 0001:00025070 ?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10026070 f i main.cpp.obj + 0001:000258e0 ?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100268e0 f i main.cpp.obj + 0001:00026150 ?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10027150 f i main.cpp.obj + 0001:000269c0 ?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100279c0 f i main.cpp.obj + 0001:00027230 ?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10028230 f i main.cpp.obj + 0001:00027aa0 ?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10028aa0 f i main.cpp.obj + 0001:00028310 ?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10029310 f i main.cpp.obj + 0001:00028b80 ?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10029b80 f i main.cpp.obj + 0001:000293f0 ?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1002a3f0 f i main.cpp.obj + 0001:00029c60 ?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 1002ac60 f i main.cpp.obj + 0001:0002a4d0 ?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 1002b4d0 f i main.cpp.obj + 0001:0002ad40 ?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1002bd40 f i main.cpp.obj + 0001:0002b5b0 ?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1002c5b0 f i main.cpp.obj + 0001:0002be20 ?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 1002ce20 f i main.cpp.obj + 0001:0002c690 ?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 1002d690 f i main.cpp.obj + 0001:0002cf00 ?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1002df00 f i main.cpp.obj + 0001:0002d770 ?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1002e770 f i main.cpp.obj + 0001:0002dfe0 ?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1002efe0 f i main.cpp.obj + 0001:0002e850 ?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 1002f850 f i main.cpp.obj + 0001:0002f0c0 ?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100300c0 f i main.cpp.obj + 0001:0002f930 ?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10030930 f i main.cpp.obj + 0001:000301a0 ?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100311a0 f i main.cpp.obj + 0001:00030a10 ?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 10031a10 f i main.cpp.obj + 0001:00031280 ?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 10032280 f i main.cpp.obj + 0001:00031b10 ?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10032b10 f i main.cpp.obj + 0001:00032380 ?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10033380 f i main.cpp.obj + 0001:00032bf0 ?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10033bf0 f i main.cpp.obj + 0001:00033460 ?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 10034460 f i main.cpp.obj + 0001:00033cd0 ?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10034cd0 f i main.cpp.obj + 0001:00034540 ?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10035540 f i main.cpp.obj + 0001:00034db0 ?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10035db0 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6GXXZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IXXZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035620 ?CanHookChain@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBE_NXZ 10036620 f i main.cpp.obj + 0001:00035630 ?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 10036630 f i main.cpp.obj + 0001:00035720 ?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 10036720 f i main.cpp.obj + 0001:000357d0 ?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100367d0 f i main.cpp.obj + 0001:00035930 ?CleanupUnchecked@Process@hadesmem@@AAEXXZ 10036930 f i main.cpp.obj + 0001:00035a10 ?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 10036a10 f i main.cpp.obj + 0001:00035af0 ?ClearQueuedSpells@Nampower@@YAXXZ 10036af0 f main.cpp.obj + 0001:00035bf0 ?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 10036bf0 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d30 ?Detach@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10036d30 f i main.cpp.obj + 0001:00035d40 ?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 10036d40 f i main.cpp.obj + 0001:00035e60 ?EffectiveCastEndMs@Nampower@@YAIXZ 10036e60 f main.cpp.obj + 0001:00035ee0 ?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 10036ee0 f i main.cpp.obj + 0001:00035fd0 ?FrameScript_CreateEventsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@HI@Z 10036fd0 f main.cpp.obj + 0001:00036000 ?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 10037000 f main.cpp.obj + 0001:00036140 ?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 10037140 f i main.cpp.obj + 0001:000362c0 ?GenStubGate32@detail@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@PAX00@Z 100372c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEPAXXZ 100373c0 f i main.cpp.obj + 0001:000363c0 ?GetContext@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPBXXZ 100373c0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363d0 ?GetDetour@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPBXXZ 100373d0 f i main.cpp.obj + 0001:000363e0 ?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 100373e0 f main.cpp.obj + 0001:000365d0 ?GetLatencyMs@Nampower@@YAIXZ 100375d0 f main.cpp.obj + 0001:00036640 ?GetLuaStatePtr@Nampower@@YAPAIXZ 10037640 f main.cpp.obj + 0001:00036650 ?GetOriginalArbitraryUserPtr@PatchDetourBase@hadesmem@@UBEPAXXZ 10037650 f i main.cpp.obj + 0001:00036670 ?GetOriginalArbitraryUserPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ 10037670 f i main.cpp.obj + 0001:00036690 ?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10037690 f i main.cpp.obj + 0001:000368f0 ?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 100378f0 f i main.cpp.obj + 0001:00036b50 ?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10037b50 f i main.cpp.obj + 0001:00036db0 ?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 10037db0 f i main.cpp.obj + 0001:00037010 ?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 10038010 f i main.cpp.obj + 0001:00037270 ?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 10038270 f i main.cpp.obj + 0001:000374d0 ?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 100384d0 f i main.cpp.obj + 0001:00037730 ?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 10038730 f i main.cpp.obj + 0001:00037990 ?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 10038990 f i main.cpp.obj + 0001:00037bf0 ?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 10038bf0 f i main.cpp.obj + 0001:00037e50 ?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 10038e50 f i main.cpp.obj + 0001:000380b0 ?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 100390b0 f i main.cpp.obj + 0001:00038310 ?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 10039310 f i main.cpp.obj + 0001:00038570 ?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 10039570 f i main.cpp.obj + 0001:000387d0 ?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 100397d0 f i main.cpp.obj + 0001:00038a30 ?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 10039a30 f i main.cpp.obj + 0001:00038c90 ?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 10039c90 f i main.cpp.obj + 0001:00038ef0 ?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 10039ef0 f i main.cpp.obj + 0001:00039150 ?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 1003a150 f i main.cpp.obj + 0001:000393b0 ?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 1003a3b0 f i main.cpp.obj + 0001:00039610 ?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 1003a610 f i main.cpp.obj + 0001:00039870 ?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 1003a870 f i main.cpp.obj + 0001:00039ad0 ?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 1003aad0 f i main.cpp.obj + 0001:00039d30 ?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 1003ad30 f i main.cpp.obj + 0001:00039f90 ?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 1003af90 f i main.cpp.obj + 0001:0003a1f0 ?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 1003b1f0 f i main.cpp.obj + 0001:0003a450 ?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 1003b450 f i main.cpp.obj + 0001:0003a6b0 ?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 1003b6b0 f i main.cpp.obj + 0001:0003a910 ?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 1003b910 f i main.cpp.obj + 0001:0003ab70 ?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 1003bb70 f i main.cpp.obj + 0001:0003add0 ?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 1003bdd0 f i main.cpp.obj + 0001:0003b030 ?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 1003c030 f i main.cpp.obj + 0001:0003b290 ?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 1003c290 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEAAU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b4f0 ?GetRefCount@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEABU?$atomic@I@std@@XZ 1003c4f0 f i main.cpp.obj + 0001:0003b500 ?GetReturnAddressPtr@PatchDetourBase@hadesmem@@UBEPAXXZ 1003c500 f i main.cpp.obj + 0001:0003b520 ?GetReturnAddressPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ 1003c520 f i main.cpp.obj + 0001:0003b540 ?GetServerDelayMs@Nampower@@YAIXZ 1003c540 f main.cpp.obj + 0001:0003b580 ?GetStringCvar@Nampower@@YAPBDPBD@Z 1003c580 f main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5a0 ?GetTarget@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPAXXZ 1003c5a0 f i main.cpp.obj + 0001:0003b5b0 ?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 1003c5b0 f i main.cpp.obj + 0001:0003b760 ?GetTime@Nampower@@YAIXZ 1003c760 f main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6GXXZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IXXZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b790 ?GetTrampoline@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBEPAXXZ 1003c790 f i main.cpp.obj + 0001:0003b7a0 ?GetWowTimeMs@Nampower@@YA_KXZ 1003c7a0 f main.cpp.obj + 0001:0003b7b0 ?Glue_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 1003c7b0 f main.cpp.obj + 0001:0003ba20 ?ISceneEndHook@Nampower@@YAPAHPAVPatchDetourBase@hadesmem@@PAI@Z 1003ca20 f main.cpp.obj + 0001:0003ba50 ?InSpellQueueWindow@Nampower@@YA_NII_N@Z 1003ca50 f main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6GXXZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IXXZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?IsApplied@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UBE_NXZ 1003cb00 f i main.cpp.obj + 0001:0003bb00 ?do_decimal_point@?$numpunct@D@std@@MBEDXZ 1003cb00 f i main.cpp.obj + 0001:0003bb10 ?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 1003cb10 f i main.cpp.obj + 0001:0003bc10 ?LuaCall@Nampower@@YAXPBD@Z 1003cc10 f main.cpp.obj + 0001:0003bc20 ?OnSpriteRightClickHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@_K@Z 1003cc20 f main.cpp.obj + 0001:0003bcc0 ?Player_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 1003ccc0 f main.cpp.obj + 0001:0003c8e0 ?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 1003d8e0 f i main.cpp.obj + 0001:0003c9f0 ?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 1003d9f0 f i main.cpp.obj + 0001:0003cb00 ?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 1003db00 f i main.cpp.obj + 0001:0003cef0 ?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 1003def0 f i main.cpp.obj + 0001:0003d000 ?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 1003e000 f main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d130 ?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 1003e130 f i main.cpp.obj + 0001:0003d1c0 ?RemovePatch@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003e1c0 f i main.cpp.obj + 0001:0003d200 ?RemovePatch@?$PatchDetour@P6GXXZPAX@hadesmem@@MAEXXZ 1003e200 f i main.cpp.obj + 0001:0003d240 ?RemovePatch@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003e240 f i main.cpp.obj + 0001:0003d280 ?RemovePatch@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MAEXXZ 1003e280 f i main.cpp.obj + 0001:0003d2c0 ?RemovePatch@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MAEXXZ 1003e2c0 f i main.cpp.obj + 0001:0003d300 ?RemovePatch@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MAEXXZ 1003e300 f i main.cpp.obj + 0001:0003d340 ?RemovePatch@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MAEXXZ 1003e340 f i main.cpp.obj + 0001:0003d380 ?RemovePatch@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MAEXXZ 1003e380 f i main.cpp.obj + 0001:0003d3c0 ?RemovePatch@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MAEXXZ 1003e3c0 f i main.cpp.obj + 0001:0003d400 ?RemovePatch@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MAEXXZ 1003e400 f i main.cpp.obj + 0001:0003d440 ?RemovePatch@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MAEXXZ 1003e440 f i main.cpp.obj + 0001:0003d480 ?RemovePatch@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MAEXXZ 1003e480 f i main.cpp.obj + 0001:0003d4c0 ?RemovePatch@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MAEXXZ 1003e4c0 f i main.cpp.obj + 0001:0003d500 ?RemovePatch@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MAEXXZ 1003e500 f i main.cpp.obj + 0001:0003d540 ?RemovePatch@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MAEXXZ 1003e540 f i main.cpp.obj + 0001:0003d580 ?RemovePatch@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MAEXXZ 1003e580 f i main.cpp.obj + 0001:0003d5c0 ?RemovePatch@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MAEXXZ 1003e5c0 f i main.cpp.obj + 0001:0003d600 ?RemovePatch@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MAEXXZ 1003e600 f i main.cpp.obj + 0001:0003d640 ?RemovePatch@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MAEXXZ 1003e640 f i main.cpp.obj + 0001:0003d680 ?RemovePatch@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MAEXXZ 1003e680 f i main.cpp.obj + 0001:0003d6c0 ?RemovePatch@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MAEXXZ 1003e6c0 f i main.cpp.obj + 0001:0003d700 ?RemovePatch@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003e700 f i main.cpp.obj + 0001:0003d740 ?RemovePatch@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MAEXXZ 1003e740 f i main.cpp.obj + 0001:0003d780 ?RemovePatch@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 1003e780 f i main.cpp.obj + 0001:0003d7c0 ?RemovePatch@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MAEXXZ 1003e7c0 f i main.cpp.obj + 0001:0003d800 ?RemovePatch@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MAEXXZ 1003e800 f i main.cpp.obj + 0001:0003d840 ?RemovePatch@?$PatchDetour@P6IXXZPAX@hadesmem@@MAEXXZ 1003e840 f i main.cpp.obj + 0001:0003d880 ?RemovePatch@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MAEXXZ 1003e880 f i main.cpp.obj + 0001:0003d8c0 ?RemovePatch@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MAEXXZ 1003e8c0 f i main.cpp.obj + 0001:0003d900 ?RemovePatch@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MAEXXZ 1003e900 f i main.cpp.obj + 0001:0003d940 ?RemovePatch@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MAEXXZ 1003e940 f i main.cpp.obj + 0001:0003d980 ?RemovePatch@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MAEXXZ 1003e980 f i main.cpp.obj + 0001:0003d9c0 ?RemovePatch@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MAEXXZ 1003e9c0 f i main.cpp.obj + 0001:0003da00 ?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003ea00 f i main.cpp.obj + 0001:0003dae0 ?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 1003eae0 f i main.cpp.obj + 0001:0003dbc0 ?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003ebc0 f i main.cpp.obj + 0001:0003dca0 ?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 1003eca0 f i main.cpp.obj + 0001:0003dd80 ?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 1003ed80 f i main.cpp.obj + 0001:0003de60 ?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 1003ee60 f i main.cpp.obj + 0001:0003df40 ?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 1003ef40 f i main.cpp.obj + 0001:0003e020 ?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 1003f020 f i main.cpp.obj + 0001:0003e100 ?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 1003f100 f i main.cpp.obj + 0001:0003e1e0 ?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 1003f1e0 f i main.cpp.obj + 0001:0003e2c0 ?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1003f2c0 f i main.cpp.obj + 0001:0003e3a0 ?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 1003f3a0 f i main.cpp.obj + 0001:0003e480 ?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 1003f480 f i main.cpp.obj + 0001:0003e560 ?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1003f560 f i main.cpp.obj + 0001:0003e640 ?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1003f640 f i main.cpp.obj + 0001:0003e720 ?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 1003f720 f i main.cpp.obj + 0001:0003e800 ?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 1003f800 f i main.cpp.obj + 0001:0003e8e0 ?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1003f8e0 f i main.cpp.obj + 0001:0003e9c0 ?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1003f9c0 f i main.cpp.obj + 0001:0003eaa0 ?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1003faa0 f i main.cpp.obj + 0001:0003eb80 ?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 1003fb80 f i main.cpp.obj + 0001:0003ec60 ?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003fc60 f i main.cpp.obj + 0001:0003ed40 ?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 1003fd40 f i main.cpp.obj + 0001:0003ee20 ?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1003fe20 f i main.cpp.obj + 0001:0003ef00 ?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 1003ff00 f i main.cpp.obj + 0001:0003efe0 ?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 1003ffe0 f i main.cpp.obj + 0001:0003f0c0 ?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100400c0 f i main.cpp.obj + 0001:0003f1a0 ?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100401a0 f i main.cpp.obj + 0001:0003f280 ?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10040280 f i main.cpp.obj + 0001:0003f360 ?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 10040360 f i main.cpp.obj + 0001:0003f440 ?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10040440 f i main.cpp.obj + 0001:0003f520 ?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10040520 f i main.cpp.obj + 0001:0003f600 ?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10040600 f i main.cpp.obj + 0001:0003f6e0 ?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100406e0 f i main.cpp.obj + 0001:0003f810 ?ResetCastFlags@Nampower@@YAXXZ 10040810 f main.cpp.obj + 0001:0003f870 ?ResetChannelingFlags@Nampower@@YAXXZ 10040870 f main.cpp.obj + 0001:0003f8b0 ?ResetDisenchantState@Nampower@@YAXXZ 100408b0 f main.cpp.obj + 0001:0003f8e0 ?ResetOnSwingFlags@Nampower@@YAXXZ 100408e0 f main.cpp.obj + 0001:0003f900 ?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 10040900 f i main.cpp.obj + 0001:0003f9c0 ?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100409c0 f i main.cpp.obj + 0001:0003fb00 ?Script_SetCVarHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAI@Z 10040b00 f main.cpp.obj + 0001:0003fb70 ?SetSelectionTarget@Nampower@@YAX_K@Z 10040b70 f main.cpp.obj + 0001:0003fc90 ?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 10040c90 f i main.cpp.obj + 0001:0003fd40 ?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 10040d40 f i main.cpp.obj + 0001:0003fd40 ?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 10040d40 f i main.cpp.obj + 0001:0003fde0 ?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 10040de0 f i main.cpp.obj + 0001:0003fea0 ?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 10040ea0 f i main.cpp.obj + 0001:0003fea0 ?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 10040ea0 f i main.cpp.obj + 0001:0003fea0 ?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 10040ea0 f i main.cpp.obj + 0001:0003fea0 ?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 10040ea0 f i main.cpp.obj + 0001:0003ff40 ?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 10040f40 f i main.cpp.obj + 0001:0003fff0 ?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 10040ff0 f i main.cpp.obj + 0001:000400b0 ?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 100410b0 f i main.cpp.obj + 0001:00040160 ?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 10041160 f i main.cpp.obj + 0001:00040160 ?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 10041160 f i main.cpp.obj + 0001:00040210 ?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 10041210 f i main.cpp.obj + 0001:00040210 ?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 10041210 f i main.cpp.obj + 0001:000402b0 ?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 100412b0 f i main.cpp.obj + 0001:000402b0 ?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 100412b0 f i main.cpp.obj + 0001:000402b0 ?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 100412b0 f i main.cpp.obj + 0001:000402b0 ?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 100412b0 f i main.cpp.obj + 0001:00040370 ?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 10041370 f i main.cpp.obj + 0001:00040430 ?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 10041430 f i main.cpp.obj + 0001:00040500 ?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 10041500 f i main.cpp.obj + 0001:000405c0 ?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 100415c0 f i main.cpp.obj + 0001:000405c0 ?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 100415c0 f i main.cpp.obj + 0001:000405c0 ?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 100415c0 f i main.cpp.obj + 0001:00040680 ?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 10041680 f i main.cpp.obj + 0001:00040730 ?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 10041730 f i main.cpp.obj + 0001:00040800 ?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 10041800 f i main.cpp.obj + 0001:000408b0 ?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 100418b0 f i main.cpp.obj + 0001:00040970 ?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 10041970 f i main.cpp.obj + 0001:00040a10 ?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 10041a10 f i main.cpp.obj + 0001:00040ae0 ?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 10041ae0 f i main.cpp.obj + 0001:00040bb0 ?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 10041bb0 f i main.cpp.obj + 0001:00040c60 ?SuspendThread@hadesmem@@YAKABVThread@1@@Z 10041c60 f i main.cpp.obj + 0001:00040d80 ?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 10041d80 f main.cpp.obj + 0001:00040e20 ?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 10041e20 f i main.cpp.obj + 0001:00040f20 ?TraceFormatImpl@@YAXPBDABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10041f20 f i main.cpp.obj + 0001:00041010 ?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 10042010 f i main.cpp.obj + 0001:000411c0 ?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100421c0 f i main.cpp.obj + 0001:00041320 ?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10042320 f i main.cpp.obj + 0001:00041680 ?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 10042680 f i main.cpp.obj + 0001:000417e0 ?WritePatch@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 100427e0 f i main.cpp.obj + 0001:00041820 ?WritePatch@?$PatchDetour@P6GXXZPAX@hadesmem@@MAEXXZ 10042820 f i main.cpp.obj + 0001:00041860 ?WritePatch@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 10042860 f i main.cpp.obj + 0001:000418a0 ?WritePatch@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MAEXXZ 100428a0 f i main.cpp.obj + 0001:000418e0 ?WritePatch@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MAEXXZ 100428e0 f i main.cpp.obj + 0001:00041920 ?WritePatch@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MAEXXZ 10042920 f i main.cpp.obj + 0001:00041960 ?WritePatch@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MAEXXZ 10042960 f i main.cpp.obj + 0001:000419a0 ?WritePatch@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MAEXXZ 100429a0 f i main.cpp.obj + 0001:000419e0 ?WritePatch@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MAEXXZ 100429e0 f i main.cpp.obj + 0001:00041a20 ?WritePatch@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MAEXXZ 10042a20 f i main.cpp.obj + 0001:00041a60 ?WritePatch@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MAEXXZ 10042a60 f i main.cpp.obj + 0001:00041aa0 ?WritePatch@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MAEXXZ 10042aa0 f i main.cpp.obj + 0001:00041ae0 ?WritePatch@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MAEXXZ 10042ae0 f i main.cpp.obj + 0001:00041b20 ?WritePatch@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MAEXXZ 10042b20 f i main.cpp.obj + 0001:00041b60 ?WritePatch@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MAEXXZ 10042b60 f i main.cpp.obj + 0001:00041ba0 ?WritePatch@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MAEXXZ 10042ba0 f i main.cpp.obj + 0001:00041be0 ?WritePatch@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MAEXXZ 10042be0 f i main.cpp.obj + 0001:00041c20 ?WritePatch@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MAEXXZ 10042c20 f i main.cpp.obj + 0001:00041c60 ?WritePatch@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MAEXXZ 10042c60 f i main.cpp.obj + 0001:00041ca0 ?WritePatch@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MAEXXZ 10042ca0 f i main.cpp.obj + 0001:00041ce0 ?WritePatch@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MAEXXZ 10042ce0 f i main.cpp.obj + 0001:00041d20 ?WritePatch@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 10042d20 f i main.cpp.obj + 0001:00041d60 ?WritePatch@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MAEXXZ 10042d60 f i main.cpp.obj + 0001:00041da0 ?WritePatch@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MAEXXZ 10042da0 f i main.cpp.obj + 0001:00041de0 ?WritePatch@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MAEXXZ 10042de0 f i main.cpp.obj + 0001:00041e20 ?WritePatch@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MAEXXZ 10042e20 f i main.cpp.obj + 0001:00041e60 ?WritePatch@?$PatchDetour@P6IXXZPAX@hadesmem@@MAEXXZ 10042e60 f i main.cpp.obj + 0001:00041ea0 ?WritePatch@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MAEXXZ 10042ea0 f i main.cpp.obj + 0001:00041ee0 ?WritePatch@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MAEXXZ 10042ee0 f i main.cpp.obj + 0001:00041f20 ?WritePatch@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MAEXXZ 10042f20 f i main.cpp.obj + 0001:00041f60 ?WritePatch@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MAEXXZ 10042f60 f i main.cpp.obj + 0001:00041fa0 ?WritePatch@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MAEXXZ 10042fa0 f i main.cpp.obj + 0001:00041fe0 ?WritePatch@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MAEXXZ 10042fe0 f i main.cpp.obj + 0001:00042020 ?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10043020 f i main.cpp.obj + 0001:00042130 ?_Buy_nonzero@?$vector@DV?$allocator@D@std@@@std@@AAEXI@Z 10043130 f i main.cpp.obj + 0001:00042130 ?_Buy_nonzero@?$vector@EV?$allocator@E@std@@@std@@AAEXI@Z 10043130 f i main.cpp.obj + 0001:000421c0 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@2@PAX@Z 100431c0 f i main.cpp.obj + 0001:000421c0 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@2@PAX@Z 100431c0 f i main.cpp.obj + 0001:000421e0 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 100431e0 f i main.cpp.obj + 0001:000421e0 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 100431e0 f i main.cpp.obj + 0001:00042200 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@2@PAX@Z 10043200 f i main.cpp.obj + 0001:00042200 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@2@PAX@Z 10043200 f i main.cpp.obj + 0001:00042220 ?_Copy@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EBEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10043220 f i main.cpp.obj + 0001:00042220 ?_Move@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EAEPAV?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10043220 f i main.cpp.obj + 0001:00042240 ?_Copy@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EBEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@2@PAX@Z 10043240 f i main.cpp.obj + 0001:00042240 ?_Move@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EAEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@2@PAX@Z 10043240 f i main.cpp.obj + 0001:00042260 ?_Copy@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EBEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10043260 f i main.cpp.obj + 0001:00042260 ?_Move@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EAEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 10043260 f i main.cpp.obj + 0001:00042280 ?_Copy@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EBEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@2@PAX@Z 10043280 f i main.cpp.obj + 0001:00042280 ?_Move@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EAEPAV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@2@PAX@Z 10043280 f i main.cpp.obj + 0001:000422a0 ?_Copy@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EBEPAV?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 100432a0 f i main.cpp.obj + 0001:000422a0 ?_Move@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EAEPAV?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 100432a0 f i main.cpp.obj + 0001:000422c0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@@2@PAX@Z 100432c0 f i main.cpp.obj + 0001:000422c0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@@2@PAX@Z 100432c0 f i main.cpp.obj + 0001:000422e0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@2@PAX@Z 100432e0 f i main.cpp.obj + 0001:000422e0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@2@PAX@Z 100432e0 f i main.cpp.obj + 0001:00042300 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@2@PAX@Z 10043300 f i main.cpp.obj + 0001:00042300 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@2@PAX@Z 10043300 f i main.cpp.obj + 0001:00042320 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@2@PAX@Z 10043320 f i main.cpp.obj + 0001:00042320 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@2@PAX@Z 10043320 f i main.cpp.obj + 0001:00042340 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@2@PAX@Z 10043340 f i main.cpp.obj + 0001:00042340 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@2@PAX@Z 10043340 f i main.cpp.obj + 0001:00042360 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@2@PAX@Z 10043360 f i main.cpp.obj + 0001:00042360 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@2@PAX@Z 10043360 f i main.cpp.obj + 0001:00042380 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@2@PAX@Z 10043380 f i main.cpp.obj + 0001:00042380 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@2@PAX@Z 10043380 f i main.cpp.obj + 0001:000423a0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 100433a0 f i main.cpp.obj + 0001:000423a0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@2@PAX@Z 100433a0 f i main.cpp.obj + 0001:000423c0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@2@PAX@Z 100433c0 f i main.cpp.obj + 0001:000423c0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@2@PAX@Z 100433c0 f i main.cpp.obj + 0001:000423e0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@2@PAX@Z 100433e0 f i main.cpp.obj + 0001:000423e0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@2@PAX@Z 100433e0 f i main.cpp.obj + 0001:00042400 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@2@PAX@Z 10043400 f i main.cpp.obj + 0001:00042400 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@2@PAX@Z 10043400 f i main.cpp.obj + 0001:00042420 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@2@PAX@Z 10043420 f i main.cpp.obj + 0001:00042420 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@2@PAX@Z 10043420 f i main.cpp.obj + 0001:00042440 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@2@PAX@Z 10043440 f i main.cpp.obj + 0001:00042440 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@2@PAX@Z 10043440 f i main.cpp.obj + 0001:00042460 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@2@PAX@Z 10043460 f i main.cpp.obj + 0001:00042460 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@2@PAX@Z 10043460 f i main.cpp.obj + 0001:00042480 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@2@PAX@Z 10043480 f i main.cpp.obj + 0001:00042480 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@2@PAX@Z 10043480 f i main.cpp.obj + 0001:000424a0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@2@PAX@Z 100434a0 f i main.cpp.obj + 0001:000424a0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@2@PAX@Z 100434a0 f i main.cpp.obj + 0001:000424c0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@2@PAX@Z 100434c0 f i main.cpp.obj + 0001:000424c0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@2@PAX@Z 100434c0 f i main.cpp.obj + 0001:000424e0 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@2@PAX@Z 100434e0 f i main.cpp.obj + 0001:000424e0 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@2@PAX@Z 100434e0 f i main.cpp.obj + 0001:00042500 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10043500 f i main.cpp.obj + 0001:00042500 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@2@PAX@Z 10043500 f i main.cpp.obj + 0001:00042520 ?_Copy@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EBEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@2@PAX@Z 10043520 f i main.cpp.obj + 0001:00042520 ?_Move@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EAEPAV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@2@PAX@Z 10043520 f i main.cpp.obj + 0001:00042540 ?_Copy@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EBEPAV?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@2@PAX@Z 10043540 f i main.cpp.obj + 0001:00042540 ?_Move@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EAEPAV?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@2@PAX@Z 10043540 f i main.cpp.obj + 0001:00042560 ?_Copy@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EBEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@2@PAX@Z 10043560 f i main.cpp.obj + 0001:00042560 ?_Move@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EAEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@2@PAX@Z 10043560 f i main.cpp.obj + 0001:00042580 ?_Copy@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EBEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@2@PAX@Z 10043580 f i main.cpp.obj + 0001:00042580 ?_Move@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EAEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@2@PAX@Z 10043580 f i main.cpp.obj + 0001:000425a0 ?_Copy@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EBEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@2@PAX@Z 100435a0 f i main.cpp.obj + 0001:000425a0 ?_Move@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EAEPAV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@2@PAX@Z 100435a0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425c0 ?_Delete_this@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EAEX_N@Z 100435c0 f i main.cpp.obj + 0001:000425e0 ?_Delete_this@?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 100435e0 f i main.cpp.obj + 0001:000425e0 ?_Delete_this@?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 100435e0 f i main.cpp.obj + 0001:000425f0 ?_Destroy@?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 100435f0 f i main.cpp.obj + 0001:000425f0 ?_Destroy@?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@EAEXXZ 100435f0 f i main.cpp.obj + 0001:00042610 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QAI11$$QAPAVCDataStore@Nampower@@@Z 10043610 f i main.cpp.obj + 0001:00042610 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAPAX$$QAI3@Z 10043610 f i main.cpp.obj + 0001:00042610 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX1$$QAI2@Z 10043610 f i main.cpp.obj + 0001:00042610 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPA_K1$$QAI$$QAPAVCDataStore@Nampower@@@Z 10043610 f i main.cpp.obj + 0001:00042640 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 10043640 f i main.cpp.obj + 0001:00042640 ?_Do_call@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EAEI$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 10043640 f i main.cpp.obj + 0001:00042640 ?_Do_call@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EAEI$$QAPAVPatchDetourBase@hadesmem@@$$QAPAUCTerrainClickEvent@game@@@Z 10043640 f i main.cpp.obj + 0001:00042640 ?_Do_call@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EAEPAH$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 10043640 f i main.cpp.obj + 0001:00042640 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI@Z 10043640 f i main.cpp.obj + 0001:00042640 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI@Z 10043640 f i main.cpp.obj + 0001:00042640 ?_Do_call@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EAE_K$$QAPAVPatchDetourBase@hadesmem@@$$QAPBD@Z 10043640 f i main.cpp.obj + 0001:00042660 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAPAVCDataStore@Nampower@@@Z 10043660 f i main.cpp.obj + 0001:00042660 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAH$$QAI@Z 10043660 f i main.cpp.obj + 0001:00042660 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPA_K$$QAI@Z 10043660 f i main.cpp.obj + 0001:00042660 ?_Do_call@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EAE_N$$QAPAVPatchDetourBase@hadesmem@@$$QAPAUEVENT_DATA_KEY@@$$QAH@Z 10043660 f i main.cpp.obj + 0001:00042680 ?_Do_call@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EAEH$$QAPAVPatchDetourBase@hadesmem@@$$QA_K@Z 10043680 f i main.cpp.obj + 0001:00042680 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QA_K@Z 10043680 f i main.cpp.obj + 0001:000426a0 ?_Do_call@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EAEI$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI11@Z 100436a0 f i main.cpp.obj + 0001:000426a0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI$$QAH2@Z 100436a0 f i main.cpp.obj + 0001:000426a0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX1$$QAI@Z 100436a0 f i main.cpp.obj + 0001:000426a0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX1$$QAPAVCDataStore@Nampower@@@Z 100436a0 f i main.cpp.obj + 0001:000426a0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAX$$QAH2@Z 100436a0 f i main.cpp.obj + 0001:000426d0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@@Z 100436d0 f i main.cpp.obj + 0001:000426e0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAE$$QAH@Z 100436e0 f i main.cpp.obj + 0001:00042700 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI$$QAH$$QA_K@Z 10043700 f i main.cpp.obj + 0001:00042730 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAI$$QAW4SpellCastResult@game@@$$QAH3$$QA_N@Z 10043730 f i main.cpp.obj + 0001:00042770 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAPAX$$QAH$$QAE@Z 10043770 f i main.cpp.obj + 0001:000427a0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPAUSpellCast@game@@$$QAD@Z 100437a0 f i main.cpp.obj + 0001:000427c0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QAPA_K$$QAPBD$$QAH33@Z 100437c0 f i main.cpp.obj + 0001:000427f0 ?_Do_call@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EAEX$$QAPAVPatchDetourBase@hadesmem@@$$QA_N1$$QAW4SpellCastResult@game@@@Z 100437f0 f i main.cpp.obj + 0001:00042820 ?_Do_call@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EAE_N$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI1$$QAI$$QAM@Z 10043820 f i main.cpp.obj + 0001:00042860 ?_Do_call@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EAE_N$$QAPAVPatchDetourBase@hadesmem@@$$QAPAI$$QAI$$QAPAUCGItem_C@game@@$$QA_K@Z 10043860 f i main.cpp.obj + 0001:00042890 ?_Extract@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEPAU?$_Tree_node@KPAX@2@V?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@U_Iterator_base0@2@@2@@Z 10043890 f i main.cpp.obj + 0001:00042890 ?_Extract@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@V?$_Tree_unchecked_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@U_Iterator_base0@2@@2@@Z 10043890 f i pet.cpp.obj + 0001:00042ba0 ?_Ffmt@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAPADPADDH@Z 10043ba0 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c60 ?_Get@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EBEPBXXZ 10043c60 f i main.cpp.obj + 0001:00042c70 ?_Get_deleter@_Ref_count_base@std@@UBEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_deleter@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_local_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_local_deleter@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_local_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_local_deleter@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c70 ?get_local_deleter@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEPAXABVtype_info@@@Z 10043c70 f i main.cpp.obj + 0001:00042c80 ?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 10043c80 f i main.cpp.obj + 0001:00042e00 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@I@std@@@std@@QAEPAU?$_Tree_node@IPAX@2@U?$_Tree_id@PAU?$_Tree_node@IPAX@std@@@2@QAU32@@Z 10043e00 f i spell_scripts.cpp.obj + 0001:00042e00 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEPAU?$_Tree_node@KPAX@2@U?$_Tree_id@PAU?$_Tree_node@KPAX@std@@@2@QAU32@@Z 10043e00 f i main.cpp.obj + 0001:00042e00 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@U?$_Tree_id@PAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@2@QAU32@@Z 10043e00 f i pet.cpp.obj + 0001:00042e00 ?_Insert_node@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@@std@@@std@@QAEPAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@2@U?$_Tree_id@PAU?$_Tree_node@U?$pair@$$CBUtype_info_@exception_detail@boost@@V?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@@std@@PAX@std@@@2@QAU32@@Z 10043e00 f i main.cpp.obj + 0001:00042ff0 ?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 10043ff0 f i main.cpp.obj + 0001:00043370 ?_Lrotate@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEXPAU?$_Tree_node@KPAX@2@@Z 10044370 f i main.cpp.obj + 0001:00043370 ?_Lrotate@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEXPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@@Z 10044370 f i pet.cpp.obj + 0001:000433c0 ?_Min@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@SAPAU?$_Tree_node@KPAX@2@PAU32@@Z 100443c0 f i main.cpp.obj + 0001:000433c0 ?_Min@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@SAPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@PAU32@@Z 100443c0 f i pet.cpp.obj + 0001:000433e0 ?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100443e0 f i main.cpp.obj + 0001:000434c0 ?_Put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PBDI@Z 100444c0 f i main.cpp.obj + 0001:00043530 ?_Rep@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@DI@Z 10044530 f i main.cpp.obj + 0001:000435a0 ?_Rrotate@?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@QAEXPAU?$_Tree_node@KPAX@2@@Z 100445a0 f i main.cpp.obj + 0001:000435a0 ?_Rrotate@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEXPAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@2@@Z 100445a0 f i pet.cpp.obj + 0001:00043600 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@EBEABVtype_info@@XZ 10044600 f i main.cpp.obj + 0001:00043610 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@EBEABVtype_info@@XZ 10044610 f i main.cpp.obj + 0001:00043620 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@EBEABVtype_info@@XZ 10044620 f i main.cpp.obj + 0001:00043630 ?_Target_type@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@EBEABVtype_info@@XZ 10044630 f i main.cpp.obj + 0001:00043640 ?_Target_type@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@EBEABVtype_info@@XZ 10044640 f i main.cpp.obj + 0001:00043650 ?_Target_type@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@EBEABVtype_info@@XZ 10044650 f i main.cpp.obj + 0001:00043660 ?_Target_type@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@EBEABVtype_info@@XZ 10044660 f i main.cpp.obj + 0001:00043670 ?_Target_type@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@EBEABVtype_info@@XZ 10044670 f i main.cpp.obj + 0001:00043680 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@EBEABVtype_info@@XZ 10044680 f i main.cpp.obj + 0001:00043690 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@EBEABVtype_info@@XZ 10044690 f i main.cpp.obj + 0001:000436a0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@EBEABVtype_info@@XZ 100446a0 f i main.cpp.obj + 0001:000436b0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@EBEABVtype_info@@XZ 100446b0 f i main.cpp.obj + 0001:000436c0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@EBEABVtype_info@@XZ 100446c0 f i main.cpp.obj + 0001:000436d0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@EBEABVtype_info@@XZ 100446d0 f i main.cpp.obj + 0001:000436e0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@EBEABVtype_info@@XZ 100446e0 f i main.cpp.obj + 0001:000436f0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@EBEABVtype_info@@XZ 100446f0 f i main.cpp.obj + 0001:00043700 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@EBEABVtype_info@@XZ 10044700 f i main.cpp.obj + 0001:00043710 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@EBEABVtype_info@@XZ 10044710 f i main.cpp.obj + 0001:00043720 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@EBEABVtype_info@@XZ 10044720 f i main.cpp.obj + 0001:00043730 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@EBEABVtype_info@@XZ 10044730 f i main.cpp.obj + 0001:00043740 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@EBEABVtype_info@@XZ 10044740 f i main.cpp.obj + 0001:00043750 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@EBEABVtype_info@@XZ 10044750 f i main.cpp.obj + 0001:00043760 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@EBEABVtype_info@@XZ 10044760 f i main.cpp.obj + 0001:00043770 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@EBEABVtype_info@@XZ 10044770 f i main.cpp.obj + 0001:00043780 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@EBEABVtype_info@@XZ 10044780 f i main.cpp.obj + 0001:00043790 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@EBEABVtype_info@@XZ 10044790 f i main.cpp.obj + 0001:000437a0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@EBEABVtype_info@@XZ 100447a0 f i main.cpp.obj + 0001:000437b0 ?_Target_type@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@EBEABVtype_info@@XZ 100447b0 f i main.cpp.obj + 0001:000437c0 ?_Target_type@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@EBEABVtype_info@@XZ 100447c0 f i main.cpp.obj + 0001:000437d0 ?_Target_type@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@EBEABVtype_info@@XZ 100447d0 f i main.cpp.obj + 0001:000437e0 ?_Target_type@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@EBEABVtype_info@@XZ 100447e0 f i main.cpp.obj + 0001:000437f0 ?_Target_type@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@EBEABVtype_info@@XZ 100447f0 f i main.cpp.obj + 0001:00043800 ?_Throw_tree_length_error@std@@YAXXZ 10044800 f i main.cpp.obj + 0001:00043810 ?_Tidy@?$vector@UCastSpellParams@@V?$allocator@UCastSpellParams@@@std@@@std@@AAEXXZ 10044810 f i main.cpp.obj + 0001:00043880 ?_Tidy@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEXXZ 10044880 f i main.cpp.obj + 0001:000438e0 ?_Xlength@?$vector@DV?$allocator@D@std@@@std@@CAXXZ 100448e0 f i main.cpp.obj + 0001:000438e0 ?_Xlength@?$vector@EV?$allocator@E@std@@@std@@CAXXZ 100448e0 f i main.cpp.obj + 0001:000438e0 ?_Xlength@?$vector@PAHV?$allocator@PAH@std@@@std@@CAXXZ 100448e0 f i lua_refs.cpp.obj + 0001:000438e0 ?_Xlength@?$vector@UCastSpellParams@@V?$allocator@UCastSpellParams@@@std@@@std@@CAXXZ 100448e0 f i main.cpp.obj + 0001:000438e0 ?_Xlength@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@CAXXZ 100448e0 f i main.cpp.obj + 0001:000438f0 ?addCustomEvent@Nampower@@YAXIPAD@Z 100448f0 f main.cpp.obj + 0001:00043a10 ?add_ref@error_info_container_impl@exception_detail@boost@@EBEXXZ 10044a10 f i main.cpp.obj + 0001:00043a20 ?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ID@Z 10044a20 f i main.cpp.obj + 0001:00043b80 ?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@QBDI@Z 10044b80 f i main.cpp.obj + 0001:00043c70 ?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 10044c70 f i main.cpp.obj + 0001:00043e10 ?checkForStopChanneling@Nampower@@YAXXZ 10044e10 f main.cpp.obj + 0001:00044120 ?clear@?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@QAEXXZ 10045120 f i main.cpp.obj + 0001:0004413e ?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEPBVclone_base@23@XZ 1004513e f i main.cpp.obj + 0001:00044150 ?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10045150 f i main.cpp.obj + 0001:0004422a ?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEPBVclone_base@23@XZ 1004522a f i main.cpp.obj + 0001:00044240 ?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10045240 f i main.cpp.obj + 0001:00044320 ?clone@?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 10045320 f i main.cpp.obj + 0001:00044350 ?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 10045350 f i main.cpp.obj + 0001:000443d0 ?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 100453d0 f i main.cpp.obj + 0001:00044470 ?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 10045470 f i main.cpp.obj + 0001:00044730 ?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 10045730 f i main.cpp.obj + 0001:00044800 ?current_exception_diagnostic_information@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z 10045800 f i main.cpp.obj + 0001:000448a0 ?deallocate@?$allocator@VSuspendedThread@hadesmem@@@std@@QAEXQAVSuspendedThread@hadesmem@@I@Z 100458a0 f i main.cpp.obj + 0001:000448e0 ?dec@std@@YAAAVios_base@1@AAV21@@Z 100458e0 f i main.cpp.obj + 0001:00044900 ?destroy@sp_counted_base@detail@boost@@UAEXXZ 10045900 f i main.cpp.obj + 0001:00044910 ?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 10045910 f i main.cpp.obj + 0001:00044b50 ?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 10045b50 f i main.cpp.obj + 0001:00044fb0 ?dispose@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEXXZ 10045fb0 f i main.cpp.obj + 0001:00044fb0 ?dispose@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@UAEXXZ 10045fb0 f i main.cpp.obj + 0001:00044fc0 ?dispose@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@UAEXXZ 10045fc0 f i main.cpp.obj + 0001:00044fc0 ?dispose@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@UAEXXZ 10045fc0 f i main.cpp.obj + 0001:00044fc0 ?dispose@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@UAEXXZ 10045fc0 f i main.cpp.obj + 0001:00044fd0 ?do_falsename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10045fd0 f i main.cpp.obj + 0001:00045010 ?do_grouping@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10046010 f i main.cpp.obj + 0001:00045050 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DJ@Z 10046050 f i main.cpp.obj + 0001:00045120 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DK@Z 10046120 f i main.cpp.obj + 0001:000451f0 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 100461f0 f i main.cpp.obj + 0001:000453f0 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 100463f0 f i main.cpp.obj + 0001:000455f0 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBX@Z 100465f0 f i main.cpp.obj + 0001:00045660 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_J@Z 10046660 f i main.cpp.obj + 0001:00045740 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_K@Z 10046740 f i main.cpp.obj + 0001:00045820 ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 10046820 f i main.cpp.obj + 0001:00045a20 ?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 10046a20 f i main.cpp.obj + 0001:00045dc0 ?do_thousands_sep@?$numpunct@D@std@@MBEDXZ 10046dc0 f i main.cpp.obj + 0001:00045dd0 ?do_truename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10046dd0 f i main.cpp.obj + 0001:00045e10 ?erase@?$_Tree@V?$_Tset_traits@KU?$less@K@std@@V?$allocator@K@2@$0A@@std@@@std@@QAE?AV?$_Tree_const_iterator@V?$_Tree_val@U?$_Tree_simple_types@K@std@@@std@@@2@V32@@Z 10046e10 f i main.cpp.obj + 0001:00045e50 ?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 10046e50 f i main.cpp.obj + 0001:00045fa0 ?get@error_info_container_impl@exception_detail@boost@@UBE?AV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 10046fa0 f i main.cpp.obj + 0001:00046020 ?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 10047020 f i main.cpp.obj + 0001:000460e0 ?hex@std@@YAAAVios_base@1@AAV21@@Z 100470e0 f i main.cpp.obj + 0001:00046100 ?initCustomEvents@Nampower@@YAXXZ 10047100 f main.cpp.obj + 0001:00046c50 ?initHooks@Nampower@@YAXXZ 10047c50 f main.cpp.obj + 0001:00047bc0 ?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@IID@Z 10048bc0 f i main.cpp.obj + 0001:00047d70 ?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@IQBDI@Z 10048d70 f i main.cpp.obj + 0001:00047f60 ?loadConfig@Nampower@@YAXXZ 10048f60 f main.cpp.obj + 0001:00049710 ?loadUserVar@Nampower@@YAXPBD@Z 1004a710 f main.cpp.obj + 0001:000498a0 ?name_value_string@?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@EBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 1004a8a0 f i main.cpp.obj + 0001:000498c0 ?name_value_string@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 1004a8c0 f i main.cpp.obj + 0001:000498e0 ?now@steady_clock@chrono@std@@SA?AV?$time_point@Usteady_clock@chrono@std@@V?$duration@_JU?$ratio@$00$0DLJKMKAA@@std@@@23@@23@XZ 1004a8e0 f i main.cpp.obj + 0001:000499e0 ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBDHH@Z 1004a9e0 f i main.cpp.obj + 0001:00049aa0 ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 1004aaa0 f i main.cpp.obj + 0001:00049c20 ?overflow@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAEHH@Z 1004ac20 f i main.cpp.obj + 0001:00049d70 ?pbackfail@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAEHH@Z 1004ad70 f i main.cpp.obj + 0001:00049dc0 ?pop@CastQueue@Nampower@@QAE?AUCastSpellParams@@XZ 1004adc0 f i main.cpp.obj + 0001:00049e60 ?processQueues@Nampower@@YA_NXZ 1004ae60 f main.cpp.obj + 0001:0004a160 ?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 1004b160 f i main.cpp.obj + 0001:0004a2e0 ?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 1004b2e0 f i main.cpp.obj + 0001:0004a550 ?release@error_info_container_impl@exception_detail@boost@@EBE_NXZ 1004b550 f i main.cpp.obj + 0001:0004a5f0 ?reset@?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@QAEXPAVAllocator@hadesmem@@@Z 1004b5f0 f i main.cpp.obj + 0001:0004a613 ?rethrow@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEXXZ 1004b613 f i main.cpp.obj + 0001:0004a620 ?rethrow@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEXXZ 1004b620 f i main.cpp.obj + 0001:0004a641 ?rethrow@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@$0PPPPPPPM@A@BEXXZ 1004b641 f i main.cpp.obj + 0001:0004a650 ?rethrow@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEXXZ 1004b650 f i main.cpp.obj + 0001:0004a680 ?rethrow@?$wrapexcept@VError@hadesmem@@@boost@@UBEXXZ 1004b680 f i main.cpp.obj + 0001:0004a6a0 ?safeRename@Nampower@@YA_NPBD0@Z 1004b6a0 f main.cpp.obj + 0001:0004a730 ?seekoff@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@_JHH@Z 1004b730 f i main.cpp.obj + 0001:0004a920 ?seekpos@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAE?AV?$fpos@U_Mbstatet@@@2@V32@H@Z 1004b920 f i main.cpp.obj + 0001:0004aa90 ?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 1004ba90 f i main.cpp.obj + 0001:0004abd0 ?stof@std@@YAMABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@PAI@Z 1004bbd0 f i main.cpp.obj + 0001:0004ac40 ?str@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 1004bc40 f i main.cpp.obj + 0001:0004ac60 ?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 1004bc60 f i main.cpp.obj + 0001:0004ad40 ?underflow@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@MAEHXZ 1004bd40 f i main.cpp.obj + 0001:0004ada0 ?updateFromCvar@Nampower@@YAXPBD0@Z 1004bda0 f main.cpp.obj + 0001:0004c060 _Load 1004d060 f main.cpp.obj + 0001:0004c1e0 __scprintf 1004d1e0 f i main.cpp.obj + 0001:0004c210 __snprintf 1004d210 f i main.cpp.obj + 0001:0004c250 _sprintf_s 1004d250 f i main.cpp.obj + 0001:0004c280 ??$?R_K@?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@QBEIAB_K@Z 1004d280 f i helper.cpp.obj + 0001:0004c2f0 ??$_Find_last@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@I@Z 1004d2f0 f misc_scripts.cpp.obj + 0001:0004c2f0 ??$_Find_last@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@I@Z 1004d2f0 f misc_scripts.cpp.obj + 0001:0004c3e0 ??$_Find_last@_K@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@@1@AB_KI@Z 1004d3e0 f i helper.cpp.obj + 0001:0004c690 ??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 1004d690 f i helper.cpp.obj + 0001:0004c860 ??$fill@PAV?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@std@@V12@@std@@YAXQAV?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@0@0ABV10@@Z 1004d860 f items.cpp.obj + 0001:0004c860 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@0@0ABV10@@Z 1004d860 f items.cpp.obj + 0001:0004c860 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@0@0ABV10@@Z 1004d860 f misc_scripts.cpp.obj + 0001:0004c860 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@0@0ABV10@@Z 1004d860 f items.cpp.obj + 0001:0004c860 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@0@0ABV10@@Z 1004d860 f helper.cpp.obj + 0001:0004c8e0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d8e0 f i helper.cpp.obj + 0001:0004c8e0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d8e0 f i pet.cpp.obj + 0001:0004c8e0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d8e0 f i helper.cpp.obj + 0001:0004c960 ??1?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@QAE@XZ 1004d960 f i helper.cpp.obj + 0001:0004c9f0 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@std@@@std@@@std@@QAE@XZ 1004d9f0 f items.cpp.obj + 0001:0004c9f0 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d9f0 f items.cpp.obj + 0001:0004c9f0 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d9f0 f misc_scripts.cpp.obj + 0001:0004c9f0 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d9f0 f items.cpp.obj + 0001:0004c9f0 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d9f0 f helper.cpp.obj + 0001:0004cad0 ??1?$list@U?$pair@$$CB_KI@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@@std@@QAE@XZ 1004dad0 f i helper.cpp.obj + 0001:0004cc90 ?ConvertGuidToString@Nampower@@YAPAD_K@Z 1004dc90 f helper.cpp.obj + 0001:0004ccd0 ?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 1004dcd0 f helper.cpp.obj + 0001:0004cec0 ?FreeGuidString@Nampower@@YAXPAD@Z 1004dec0 f helper.cpp.obj + 0001:0004cee0 ?GetGcdOrCooldownForSpell@Nampower@@YAII@Z 1004dee0 f helper.cpp.obj + 0001:0004cf20 ?GetNameplateDistance@Nampower@@YAMXZ 1004df20 f helper.cpp.obj + 0001:0004cf70 ?GetRemainingCooldownForSpell@Nampower@@YAII@Z 1004df70 f helper.cpp.obj + 0001:0004cfe0 ?GetSpellIdFromSpellName@Nampower@@YAIPBD@Z 1004dfe0 f helper.cpp.obj + 0001:0004d020 ?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 1004e020 f helper.cpp.obj + 0001:0004d3a0 ?GetUnitGuidFromLuaParam@Nampower@@YA_KPAIH@Z 1004e3a0 f helper.cpp.obj + 0001:0004d480 ?GetUnitGuidFromString@Nampower@@YA_KPBD@Z 1004e480 f helper.cpp.obj + 0001:0004d4f0 ?IsReadableMemory@Nampower@@YA_NPBXI@Z 1004e4f0 f helper.cpp.obj + 0001:0004d580 ?IsSpellOnCooldown@Nampower@@YA_NI@Z 1004e580 f helper.cpp.obj + 0001:0004d5e0 ?IsTargetingTerrainSpell@Nampower@@YA_NXZ 1004e5e0 f helper.cpp.obj + 0001:0004d5f0 ?PushGuidString@Nampower@@YAXPAI_K@Z 1004e5f0 f helper.cpp.obj + 0001:0004d660 ?SafeReadMemory@Nampower@@YA_NPBXPAXI@Z 1004e660 f helper.cpp.obj + 0001:0004d710 ?SetNameplateDistance@Nampower@@YAXM@Z 1004e710 f helper.cpp.obj + 0001:0004d730 ?SpellIsAttackTradeskillOrEnchant@Nampower@@YA_NPBUSpellRec@game@@@Z 1004e730 f helper.cpp.obj + 0001:0004d770 ?SpellIsChanneling@Nampower@@YA_NPBUSpellRec@game@@@Z 1004e770 f helper.cpp.obj + 0001:0004d780 ?SpellIsMounting@Nampower@@YA_NPBUSpellRec@game@@@Z 1004e780 f helper.cpp.obj + 0001:0004d7b0 ?SpellIsOnGcd@Nampower@@YA_NPBUSpellRec@game@@@Z 1004e7b0 f helper.cpp.obj + 0001:0004d7d0 ?SpellIsOnSwing@Nampower@@YA_NPBUSpellRec@game@@@Z 1004e7d0 f helper.cpp.obj + 0001:0004d7e0 ?SpellIsTargeting@Nampower@@YA_NPBUSpellRec@game@@@Z 1004e7e0 f helper.cpp.obj + 0001:0004d8e0 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@std@@@std@@@std@@QAEXIV?$_List_unchecked_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@U_Iterator_base0@2@@2@@Z 1004e8e0 f i items.cpp.obj + 0001:0004d8e0 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@std@@@std@@@2@@Z 1004e8e0 f i items.cpp.obj + 0001:0004d8e0 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@std@@@std@@@2@@Z 1004e8e0 f i misc_scripts.cpp.obj + 0001:0004d8e0 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@2@@Z 1004e8e0 f i items.cpp.obj + 0001:0004d8e0 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CB_KI@std@@@std@@@std@@@2@@Z 1004e8e0 f i helper.cpp.obj + 0001:0004dc90 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004ec90 f i helper.cpp.obj + 0001:0004ddd0 _snprintf 1004edd0 f i helper.cpp.obj + 0001:0004de10 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 1004ee10 f i spellcast.cpp.obj + 0001:0004dfc0 ?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 1004efc0 f spellcast.cpp.obj + 0001:0004e5e0 ?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 1004f5e0 f spellcast.cpp.obj + 0001:0004e760 ?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 1004f760 f spellcast.cpp.obj + 0001:0004e8e0 ?CGWorldFrame_OnLayerTrackTerrainHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAXHH@Z 1004f8e0 f spellcast.cpp.obj + 0001:0004e950 ?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 1004f950 f spellcast.cpp.obj + 0001:0004eb10 ?CastQueuedNonGcdSpell@Nampower@@YAXXZ 1004fb10 f spellcast.cpp.obj + 0001:0004ed00 ?CastQueuedNormalSpell@Nampower@@YAXXZ 1004fd00 f spellcast.cpp.obj + 0001:0004eef0 ?SendCastHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z 1004fef0 f spellcast.cpp.obj + 0001:0004ef20 ?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 1004ff20 f spellcast.cpp.obj + 0001:000505f0 ?Spell_C_HandleTerrainClickHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z 100515f0 f spellcast.cpp.obj + 0001:00050610 ?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 10051610 f spellcast.cpp.obj + 0001:00050790 ?TriggerQuickcast@Nampower@@YAXXZ 10051790 f spellcast.cpp.obj + 0001:000508f0 ?TriggerSpellCastEvent@Nampower@@YAX_NIW4CastType@@_KI@Z 100518f0 f spellcast.cpp.obj + 0001:00050940 ?TriggerSpellQueuedEvent@Nampower@@YAXW4QueueEvents@@I@Z 10051940 f spellcast.cpp.obj + 0001:00050960 ?findSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 10051960 f i spellcast.cpp.obj + 0001:000509a0 ?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100519a0 f i spellcast.cpp.obj + 0001:00050b80 ?pushFront@CastQueue@Nampower@@QAEXABUCastSpellParams@@@Z 10051b80 f i spellcast.cpp.obj + 0001:00050ca0 ??$Get@H@CDataStore@Nampower@@QAEXAAH@Z 10051ca0 f i spellevents.cpp.obj + 0001:00050ca0 ??$Get@I@CDataStore@Nampower@@QAEXAAI@Z 10051ca0 f i spellchannel.cpp.obj + 0001:00050d00 ?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10051d00 f spellchannel.cpp.obj + 0001:00051310 ?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10052310 f spellchannel.cpp.obj + 0001:000515c0 ??$Get@F@CDataStore@Nampower@@QAEXAAF@Z 100525c0 f i spellevents.cpp.obj + 0001:00051620 ??$Get@_K@CDataStore@Nampower@@QAEXAA_K@Z 10052620 f i spellevents.cpp.obj + 0001:00051690 ?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10052690 f spellevents.cpp.obj + 0001:00051bc0 ?PeriodicAuraLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10052bc0 f spellevents.cpp.obj + 0001:00051dd0 ?ProcResistHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10052dd0 f spellevents.cpp.obj + 0001:00051e50 ?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10052e50 f spellevents.cpp.obj + 0001:00051fc0 ?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10052fc0 f spellevents.cpp.obj + 0001:000521c0 ?SpellEnergizeLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100531c0 f spellevents.cpp.obj + 0001:00052260 ?SpellFailedOtherHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10053260 f spellevents.cpp.obj + 0001:000522d0 ?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 100532d0 f spellevents.cpp.obj + 0001:00052a80 ?SpellHealingLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10053a80 f spellevents.cpp.obj + 0001:00052b20 ?SpellLogMissHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10053b20 f spellevents.cpp.obj + 0001:00052bc0 ?SpellNonMeleeDmgLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10053bc0 f spellevents.cpp.obj + 0001:00052cc0 ?SpellOrDamageImmuneHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10053cc0 f spellevents.cpp.obj + 0001:00052d40 ?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10053d40 f spellevents.cpp.obj + 0001:000533a0 ?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 100543a0 f spellevents.cpp.obj + 0001:00054010 ?TriggerAuraCastEvent@Nampower@@YAXPBUSpellRec@game@@_KQA_KE1_N@Z 10055010 f spellevents.cpp.obj + 0001:000542e0 ?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 100552e0 f spellevents.cpp.obj + 0001:00054660 ?TriggerSpellEnergizeEvent@Nampower@@YAX_K0IIIE@Z 10055660 f spellevents.cpp.obj + 0001:00054720 ?TriggerSpellHealEvent@Nampower@@YAX_K0IIEE@Z 10055720 f spellevents.cpp.obj + 0001:000547e0 ?TriggerSpellMissEvent@Nampower@@YAX_K0II@Z 100557e0 f spellevents.cpp.obj + 0001:00054850 ?findOldestWaitingForServerSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 10055850 f i spellevents.cpp.obj + 0001:000548a0 ?triggerAuraCastEventOnTarget@Nampower@@YAXPBUSpellRec@game@@HPAD1_K2II@Z 100558a0 f spellevents.cpp.obj + 0001:00054990 ??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10055990 f i item_scripts.cpp.obj + 0001:00054990 ??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10055990 f i spell_scripts.cpp.obj + 0001:00054990 ??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10055990 f i misc_scripts.cpp.obj + 0001:00054c00 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@PAU01@@Z 10055c00 f i misc_scripts.cpp.obj + 0001:00054c00 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@PAU01@@Z 10055c00 f i items.cpp.obj + 0001:00054c80 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10055c80 f i misc_scripts.cpp.obj + 0001:00054c80 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10055c80 f i dbc_fields.cpp.obj + 0001:00054ec0 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@1@@Z 10055ec0 f i misc_scripts.cpp.obj + 0001:00054ec0 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@1@@Z 10055ec0 f i items.cpp.obj + 0001:00054f10 ??$find@X@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE?AV?$_List_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10055f10 f i misc_scripts.cpp.obj + 0001:00055010 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 10056010 f i misc_scripts.cpp.obj + 0001:00055010 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 10056010 f i items.cpp.obj + 0001:000550c0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 100560c0 f i misc_scripts.cpp.obj + 0001:000550c0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 100560c0 f i items.cpp.obj + 0001:000550e0 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@QAE@XZ 100560e0 f i misc_scripts.cpp.obj + 0001:000550e0 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE@XZ 100560e0 f i items.cpp.obj + 0001:00055150 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 10056150 f i misc_scripts.cpp.obj + 0001:00055150 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 10056150 f i items.cpp.obj + 0001:00055180 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 10056180 f i misc_scripts.cpp.obj + 0001:00055180 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 10056180 f i items.cpp.obj + 0001:00055200 ?CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10056200 f misc_scripts.cpp.obj + 0001:00055360 ?CSimpleTop_OnKeyDownHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z 10056360 f misc_scripts.cpp.obj + 0001:000553c0 ?CSimpleTop_OnKeyUpHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z 100563c0 f misc_scripts.cpp.obj + 0001:00055410 ?GetGUIDFromNameHook@Nampower@@YA_KPAVPatchDetourBase@hadesmem@@PBD@Z 10056410 f misc_scripts.cpp.obj + 0001:00055750 ?PushTableValue@Nampower@@YAXPAIPAD1@Z 10056750 f i misc_scripts.cpp.obj + 0001:00055780 ?PushTableValue@Nampower@@YAXPAIPADI@Z 10056780 f i misc_scripts.cpp.obj + 0001:000557d0 ?RunQueuedScript@Nampower@@YA_NH@Z 100567d0 f misc_scripts.cpp.obj + 0001:00055910 ?Script_CancelPlayerAuraSlot@Nampower@@YAIPAI@Z 10056910 f misc_scripts.cpp.obj + 0001:000559b0 ?Script_CancelPlayerAuraSpellId@Nampower@@YAIPAI@Z 100569b0 f misc_scripts.cpp.obj + 0001:00055a80 ?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 10056a80 f misc_scripts.cpp.obj + 0001:00055b80 ?Script_CombatLogFlush@Nampower@@YAIPAI@Z 10056b80 f misc_scripts.cpp.obj + 0001:00055ba0 ?Script_DisenchantAll@Nampower@@YAIPAI@Z 10056ba0 f misc_scripts.cpp.obj + 0001:00055f90 ?Script_GetCastInfo@Nampower@@YAIPAI@Z 10056f90 f misc_scripts.cpp.obj + 0001:000562d0 ?Script_GetCurrentCastingInfo@Nampower@@YAIPAI@Z 100572d0 f misc_scripts.cpp.obj + 0001:00056420 ?Script_GetItemIconTexture@Nampower@@YAIPAI@Z 10057420 f misc_scripts.cpp.obj + 0001:000564c0 ?Script_GetNampowerVersion@Nampower@@YAIPAI@Z 100574c0 f misc_scripts.cpp.obj + 0001:00056520 ?Script_GetPlayerAuraDuration@Nampower@@YAIPAI@Z 10057520 f misc_scripts.cpp.obj + 0001:00056630 ?Script_GetSpellIconTexture@Nampower@@YAIPAI@Z 10057630 f misc_scripts.cpp.obj + 0001:000566e0 ?Script_GetUnitData@Nampower@@YAIPAI@Z 100576e0 f misc_scripts.cpp.obj + 0001:00056a40 ?Script_GetUnitField@Nampower@@YAIPAI@Z 10057a40 f misc_scripts.cpp.obj + 0001:00056da0 ?Script_GetUnitGUID@Nampower@@YAIPAI@Z 10057da0 f misc_scripts.cpp.obj + 0001:00056e20 ?Script_IsAuraHidden@Nampower@@YAIPAI@Z 10057e20 f misc_scripts.cpp.obj + 0001:00056eb0 ?Script_LearnTalentRank@Nampower@@YAIPAI@Z 10057eb0 f misc_scripts.cpp.obj + 0001:00057260 ?Script_QueueScript@Nampower@@YAIPAI@Z 10058260 f misc_scripts.cpp.obj + 0001:00057560 ?Script_SetMouseoverUnit@Nampower@@YAIPAI@Z 10058560 f misc_scripts.cpp.obj + 0001:00057600 ?TryDisenchant@Nampower@@YA_NXZ 10058600 f misc_scripts.cpp.obj + 0001:00057990 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAEXI@Z 10058990 f i misc_scripts.cpp.obj + 0001:00057990 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAEXI@Z 10058990 f i items.cpp.obj + 0001:00057c50 ??$_Resize_reallocate@U_Value_init_tag@std@@@?$vector@EV?$allocator@E@std@@@std@@AAEXIABU_Value_init_tag@1@@Z 10058c50 f i file_scripts.cpp.obj + 0001:00057d70 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 10058d70 f i file_scripts.cpp.obj + 0001:00058040 ??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ 10059040 f i file_scripts.cpp.obj + 0001:000580cf ??_E?$basic_ifstream@DU?$char_traits@D@std@@@std@@$4PPPPPPPM@A@AEPAXI@Z 100590cf f i file_scripts.cpp.obj + 0001:000580e0 ??_E?$basic_ifstream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100590e0 f i file_scripts.cpp.obj + 0001:000580e0 ??_G?$basic_ifstream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100590e0 f i file_scripts.cpp.obj + 0001:00058f00 ?Script_CustomFileExists@Nampower@@YAIPAI@Z 10059f00 f file_scripts.cpp.obj + 0001:00059080 ?Script_EncryptPassword@Nampower@@YAIPAI@Z 1005a080 f file_scripts.cpp.obj + 0001:000593f0 ?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z 1005a3f0 f file_scripts.cpp.obj + 0001:000596a0 ?Script_ExecuteCustomLuaFile@Nampower@@YAIPAI@Z 1005a6a0 f file_scripts.cpp.obj + 0001:000598a0 ?Script_ExportFile@Nampower@@YAIPAI@Z 1005a8a0 f file_scripts.cpp.obj + 0001:00059970 ?Script_ImportFile@Nampower@@YAIPAI@Z 1005a970 f file_scripts.cpp.obj + 0001:000599f0 ?Script_ReadCustomFile@Nampower@@YAIPAI@Z 1005a9f0 f file_scripts.cpp.obj + 0001:00059a70 ?Script_WriteCustomFile@Nampower@@YAIPAI@Z 1005aa70 f file_scripts.cpp.obj + 0001:0005a120 ?compare@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEHIIABV12@@Z 1005b120 f i file_scripts.cpp.obj + 0001:0005a1e0 ??$_Find_hint@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_hint_result@PAU?$_Tree_node@IPAX@std@@@1@QAU?$_Tree_node@IPAX@1@ABI@Z 1005b1e0 f i spell_scripts.cpp.obj + 0001:0005a420 ??$_Find_lower_bound@I@?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@1@ABI@Z 1005b420 f i pet.cpp.obj + 0001:0005a420 ??$_Find_lower_bound@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@IPAX@std@@@1@ABI@Z 1005b420 f i spell_scripts.cpp.obj + 0001:0005a470 ?GetSpellSlotFromLuaHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI11@Z 1005b470 f spell_scripts.cpp.obj + 0001:0005a5c0 ?Script_CastSpellByNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1005b5c0 f spell_scripts.cpp.obj + 0001:0005a680 ?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 1005b680 f spell_scripts.cpp.obj + 0001:0005a790 ?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 1005b790 f spell_scripts.cpp.obj + 0001:0005a990 ?Script_GetSpellDuration@Nampower@@YAIPAI@Z 1005b990 f spell_scripts.cpp.obj + 0001:0005aa90 ?Script_GetSpellIdForName@Nampower@@YAIPAI@Z 1005ba90 f spell_scripts.cpp.obj + 0001:0005ab00 ?Script_GetSpellModifiers@Nampower@@YAIPAI@Z 1005bb00 f spell_scripts.cpp.obj + 0001:0005ac80 ?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 1005bc80 f spell_scripts.cpp.obj + 0001:0005add0 ?Script_GetSpellPower@Nampower@@YAIPAI@Z 1005bdd0 f spell_scripts.cpp.obj + 0001:0005af50 ?Script_GetSpellRec@Nampower@@YAIPAI@Z 1005bf50 f spell_scripts.cpp.obj + 0001:0005b390 ?Script_GetSpellRecField@Nampower@@YAIPAI@Z 1005c390 f spell_scripts.cpp.obj + 0001:0005b890 ?Script_GetSpellSlotTypeIdForName@Nampower@@YAIPAI@Z 1005c890 f spell_scripts.cpp.obj + 0001:0005ba00 ?Script_IsSpellInRange@Nampower@@YAIPAI@Z 1005ca00 f spell_scripts.cpp.obj + 0001:0005bd10 ?Script_IsSpellUsable@Nampower@@YAIPAI@Z 1005cd10 f spell_scripts.cpp.obj + 0001:0005be50 ?Script_QueueSpellByName@Nampower@@YAIPAI@Z 1005ce50 f spell_scripts.cpp.obj + 0001:0005bf60 ?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1005cf60 f spell_scripts.cpp.obj + 0001:0005c080 ?GetCooldownFromSpellHistory@Nampower@@YA?AUCooldownDetail@1@III@Z 1005d080 f cooldown_scripts.cpp.obj + 0001:0005c340 ?GetItemCooldownDetail@Nampower@@YA?AUCooldownDetail@1@I@Z 1005d340 f cooldown_scripts.cpp.obj + 0001:0005c4e0 ?PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@1@@Z 1005d4e0 f cooldown_scripts.cpp.obj + 0001:0005ca10 ?Script_GetItemIdCooldown@Nampower@@YAIPAI@Z 1005da10 f cooldown_scripts.cpp.obj + 0001:0005caf0 ?Script_GetSpellIdCooldown@Nampower@@YAIPAI@Z 1005daf0 f cooldown_scripts.cpp.obj + 0001:0005cbb0 ?Script_GetTrinketCooldown@Nampower@@YAIPAI@Z 1005dbb0 f cooldown_scripts.cpp.obj + 0001:0005cdd0 ??0CachedItemData@Nampower@@QAE@XZ 1005ddd0 f i item_scripts.cpp.obj + 0001:0005d230 ?ClearBagSlot@Nampower@@YAXPAIHI@Z 1005e230 f item_scripts.cpp.obj + 0001:0005d310 ?CreateBasicItemInfoTable@Nampower@@YAXPAIPAUCGItem@game@@@Z 1005e310 f item_scripts.cpp.obj + 0001:0005d400 ?CreateItemInfoTable@Nampower@@YAXPAIPAUCGItem_C@game@@@Z 1005e400 f item_scripts.cpp.obj + 0001:0005d6b0 ?GetSingleBagItems@Nampower@@YAIPAIH@Z 1005e6b0 f item_scripts.cpp.obj + 0001:0005daa0 ?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 1005eaa0 f item_scripts.cpp.obj + 0001:0005dfd0 ?Script_FindPlayerItemSlot@Nampower@@YAIPAI@Z 1005efd0 f item_scripts.cpp.obj + 0001:0005e140 ?Script_GetAmmo@Nampower@@YAIPAI@Z 1005f140 f item_scripts.cpp.obj + 0001:0005e2d0 ?Script_GetBagItem@Nampower@@YAIPAI@Z 1005f2d0 f item_scripts.cpp.obj + 0001:0005e5a0 ?Script_GetBagItems@Nampower@@YAIPAI@Z 1005f5a0 f item_scripts.cpp.obj + 0001:0005e740 ?Script_GetEquippedItem@Nampower@@YAIPAI@Z 1005f740 f item_scripts.cpp.obj + 0001:0005e8c0 ?Script_GetEquippedItems@Nampower@@YAIPAI@Z 1005f8c0 f item_scripts.cpp.obj + 0001:0005ea40 ?Script_GetItemLevel@Nampower@@YAIPAI@Z 1005fa40 f item_scripts.cpp.obj + 0001:0005eaf0 ?Script_GetItemStats@Nampower@@YAIPAI@Z 1005faf0 f item_scripts.cpp.obj + 0001:0005eeb0 ?Script_GetItemStatsField@Nampower@@YAIPAI@Z 1005feb0 f item_scripts.cpp.obj + 0001:0005f300 ?Script_GetTrinkets@Nampower@@YAIPAI@Z 10060300 f item_scripts.cpp.obj + 0001:0005f7b0 ?Script_StartItemExport@Nampower@@YAIPAI@Z 100607b0 f item_scripts.cpp.obj + 0001:0005f7c0 ?Script_UseItemIdOrName@Nampower@@YAIPAI@Z 100607c0 f item_scripts.cpp.obj + 0001:0005f940 ?Script_UseTrinket@Nampower@@YAIPAI@Z 10060940 f item_scripts.cpp.obj + 0001:0005fb70 ??$_Find_last@I@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@1@ABII@Z 10060b70 f i items.cpp.obj + 0001:0005fb70 ??$_Find_last@I@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@IPAX@std@@@1@ABII@Z 10060b70 f i items.cpp.obj + 0001:0005fbe0 ??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 10060be0 f i items.cpp.obj + 0001:0005fde0 ??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10060de0 f i items.cpp.obj + 0001:0005ffd0 ??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 10060fd0 f i items.cpp.obj + 0001:000601c0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 100611c0 f i items.cpp.obj + 0001:000601c0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 100611c0 f i items.cpp.obj + 0001:000601e0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 100611e0 f i items.cpp.obj + 0001:000601e0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 100611e0 f i items.cpp.obj + 0001:00060200 ??1?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@QAE@XZ 10061200 f i items.cpp.obj + 0001:00060290 ??1?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE@XZ 10061290 f i items.cpp.obj + 0001:00060320 ??1?$list@IV?$allocator@I@std@@@std@@QAE@XZ 10061320 f i items.cpp.obj + 0001:00060360 ??1?$list@U?$pair@$$CBIPAUItemStats_C@game@@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@2@@std@@QAE@XZ 10061360 f i items.cpp.obj + 0001:000603a0 ??_H@YGXPAXIIP6EPAX0@Z@Z 100613a0 f i items.cpp.obj + 0001:000603d0 ?CacheItemNameToId@Nampower@@YAXPBDI@Z 100613d0 f items.cpp.obj + 0001:00060460 ?ClearItemCaches@Nampower@@YAXXZ 10061460 f items.cpp.obj + 0001:000605c0 ?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100615c0 f items.cpp.obj + 0001:00060690 ?FindPlayerDisenchantItem@Nampower@@YA?AUPlayerItemSearchResult@1@I_N@Z 10061690 f items.cpp.obj + 0001:000608a0 ?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 100618a0 f items.cpp.obj + 0001:00060ee0 ?GetBagPtrFromContainer@Nampower@@YAPAIPAI@Z 10061ee0 f items.cpp.obj + 0001:00060f00 ?GetItemIdFromCache@Nampower@@YAIPBD@Z 10061f00 f items.cpp.obj + 0001:00060ff0 ?GetItemStats@Nampower@@YAPAUItemStats_C@game@@I@Z 10061ff0 f items.cpp.obj + 0001:00061070 ?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 10062070 f items.cpp.obj + 0001:00061290 ?LoadItem@Nampower@@YA_NI@Z 10062290 f items.cpp.obj + 0001:00061360 ?StartItemExport@Nampower@@YAXXZ 10062360 f items.cpp.obj + 0001:00061380 ?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 10062380 f items.cpp.obj + 0001:00061550 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAEXI@Z 10062550 f i items.cpp.obj + 0001:000616b0 ?_Forced_rehash@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IAEXI@Z 100626b0 f i items.cpp.obj + 0001:00061810 ?_Unchecked_erase@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@AAEPAU?$_List_node@IPAX@2@PAU32@QAU32@@Z 10062810 f i items.cpp.obj + 0001:000619c0 ?clear@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAEXXZ 100629c0 f i items.cpp.obj + 0001:00061a40 ?InitializeFieldMaps@Nampower@@YAXXZ 10062a40 f dbc_fields.cpp.obj + 0001:00061d40 ?InitializeUnitFieldMaps@Nampower@@YAXXZ 10062d40 f unit_fields.cpp.obj + 0001:00061ef0 ?CGBuffBar_UpdateDurationHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@EH@Z 10062ef0 f auras.cpp.obj + 0001:00061f70 ?CGUnit_C_OnAuraAddedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 10062f70 f auras.cpp.obj + 0001:00061fb0 ?CGUnit_C_OnAuraRemovedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 10062fb0 f auras.cpp.obj + 0001:00061ff0 ?CGUnit_C_OnAuraStacksChangedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z 10062ff0 f auras.cpp.obj + 0001:000620a0 ?IsAuraHiddenForLua@Nampower@@YA_NI@Z 100630a0 f auras.cpp.obj + 0001:00062100 ?TriggerAuraEvent@Nampower@@YAXPAIII_NI@Z 10063100 f auras.cpp.obj + 0001:000622d0 ?UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z 100632d0 f auras.cpp.obj + 0001:00062310 ??$_Emplace_reallocate@ABQAH@?$vector@PAHV?$allocator@PAH@std@@@std@@AAEPAPAHQAPAHABQAH@Z 10063310 f i lua_refs.cpp.obj + 0001:00062470 ?CleanupAllLuaTableRefs@Nampower@@YAXXZ 10063470 f lua_refs.cpp.obj + 0001:000625e0 ?GetTableRef@Nampower@@YAXPAIAAH@Z 100635e0 f lua_refs.cpp.obj + 0001:00062660 ?AttackRoundInfo_ReadPacketHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@1@@Z 10063660 f autoattack.cpp.obj + 0001:00062a20 ?Script_PlayerIsMoving@Nampower@@YAIPAI@Z 10063a20 f player_scripts.cpp.obj + 0001:00062a80 ?Script_PlayerIsRooted@Nampower@@YAIPAI@Z 10063a80 f player_scripts.cpp.obj + 0001:00062ae0 ?Script_PlayerIsSwimming@Nampower@@YAIPAI@Z 10063ae0 f player_scripts.cpp.obj + 0001:00062b40 ??$_Erase_tree@V?$allocator@U?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@std@@@?$_Tree_val@U?$_Tree_simple_types@U?$pair@$$CBII@std@@@std@@@std@@QAEXAAV?$allocator@U?$_Tree_node@U?$pair@$$CBII@std@@PAX@std@@@1@PAU?$_Tree_node@U?$pair@$$CBII@std@@PAX@1@@Z 10063b40 f i pet.cpp.obj + 0001:00062b80 ??1?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@QAE@XZ 10063b80 f i pet.cpp.obj + 0001:00062bc0 ??1?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@std@@QAE@XZ 10063bc0 f i pet.cpp.obj + 0001:00062bd0 ?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 10063bd0 f pet.cpp.obj + 0001:00062ce0 ?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 10063ce0 f pet.cpp.obj + 0001:00062e50 ?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 10063e50 f pet.cpp.obj + 0001:00063200 ?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 10064200 f pet.cpp.obj + 0001:000636d0 ?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 100646d0 f pet.cpp.obj + 0001:00063b40 ?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 10064b40 f pet.cpp.obj + 0001:00063cb0 ?TogglePetSlotAutocastHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@I@Z 10064cb0 f pet.cpp.obj + 0001:00063cd0 ?clear@?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@QAEXXZ 10064cd0 f i pet.cpp.obj + 0001:00063d20 ?erase@?$_Tree@V?$_Tmap_traits@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@$0A@@std@@@std@@QAEIABI@Z 10064d20 f i pet.cpp.obj + 0001:00063e40 ?CGGameUI_ShowCombatFeedbackHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z 10064e40 f unit.cpp.obj + 0001:000640c0 ?GetUnitNames@Nampower@@YA?AUUnitNames@1@PA_K@Z 100650c0 f unit.cpp.obj + 0001:00064280 ?SendUnitSignalHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_KI@Z 10065280 f unit.cpp.obj + 0001:000642d0 ?TriggerUnitEvents@Nampower@@YAXABUUnitNames@1@I@Z 100652d0 f unit.cpp.obj + 0001:0006461b __get_purecall_handler 1006561b f libvcruntime:purevirt.obj + 0001:00064622 __purecall 10065622 f libvcruntime:purevirt.obj + 0001:0006463e ___DestructExceptionObject 1006563e f libvcruntime:ehhelpers.obj + 0001:000646df ?_CallMemberFunction0@@YGXQAX0@Z 100656df f i libvcruntime:ehhelpers.obj + 0001:00064744 __IsExceptionObjectToBeDestroyed 10065744 f libvcruntime:ehhelpers.obj + 0001:0006476a ___AdjustPointer 1006576a f libvcruntime:ehhelpers.obj + 0001:0006478f ___FrameUnwindFilter 1006578f f libvcruntime:ehhelpers.obj + 0001:000647e5 ___std_terminate 100657e5 f libvcruntime:ehhelpers.obj + 0001:000647ea ___std_exception_copy 100657ea f libvcruntime:std_exception.obj + 0001:0006484d ___std_exception_destroy 1006584d f libvcruntime:std_exception.obj + 0001:0006486c __CxxThrowException@8 1006586c f libvcruntime:throw.obj + 0001:000648d8 ?GetRangeOfTrysToCheck@__FrameHandler3@@SA?AU?$pair@Viterator@TryBlockMap@__FrameHandler3@@V123@@std@@AAVTryBlockMap@1@HPAXPBU_s_FuncInfo@@H@Z 100658d8 f libvcruntime:trnsctrl.obj + 0001:00064947 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@PAXHK@Z 10065947 f libvcruntime:trnsctrl.obj + 0001:000649a4 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PBU_s_FuncInfo@@H1@Z 100659a4 f libvcruntime:trnsctrl.obj + 0001:00064a94 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 10065a94 f libvcruntime:trnsctrl.obj + 0001:00064ac4 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 10065ac4 f libvcruntime:trnsctrl.obj + 0001:00064b18 __CatchGuardHandler 10065b18 f libvcruntime:trnsctrl.obj + 0001:00064b49 __CreateFrameInfo 10065b49 f libvcruntime:trnsctrl.obj + 0001:00064b6d __FindAndUnlinkFrame 10065b6d f libvcruntime:trnsctrl.obj + 0001:00064bb5 __TranslatorGuardHandler 10065bb5 f libvcruntime:trnsctrl.obj + 0001:00064c54 ___CxxFrameHandler3 10065c54 f libvcruntime:trnsctrl.obj + 0001:00064c90 _memcpy 10065c90 f libvcruntime:memcpy.obj + 0001:00064c90 _memmove 10065c90 f libvcruntime:memmove.obj + 0001:00065210 ??0__non_rtti_object@std@@QAE@ABV01@@Z 10066210 f i libvcruntime:rtti.obj + 0001:0006522b ??0bad_typeid@std@@QAE@ABV01@@Z 1006622b f i libvcruntime:rtti.obj + 0001:00065246 ??_E__non_rtti_object@std@@UAEPAXI@Z 10066246 f i libvcruntime:rtti.obj + 0001:00065246 ??_Ebad_function_call@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Ebad_typeid@std@@UAEPAXI@Z 10066246 f i libvcruntime:rtti.obj + 0001:00065246 ??_Einvalid_argument@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Elength_error@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Elogic_error@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Eout_of_range@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_G__non_rtti_object@std@@UAEPAXI@Z 10066246 f i libvcruntime:rtti.obj + 0001:00065246 ??_Gbad_function_call@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Gbad_typeid@std@@UAEPAXI@Z 10066246 f i libvcruntime:rtti.obj + 0001:00065246 ??_Ginvalid_argument@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Glength_error@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Glogic_error@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065246 ??_Gout_of_range@std@@UAEPAXI@Z 10066246 f i libcpmt:xthrow.obj + 0001:00065617 ?__construct_from_string_literal@__non_rtti_object@std@@SA?AV12@QBD@Z 10066617 f i libvcruntime:rtti.obj + 0001:00065633 ?__construct_from_string_literal@bad_cast@std@@SA?AV12@QBD@Z 10066633 f i libvcruntime:rtti.obj + 0001:0006564f ?__construct_from_string_literal@bad_typeid@std@@SA?AV12@QBD@Z 1006664f f i libvcruntime:rtti.obj + 0001:0006566b ___RTDynamicCast 1006666b f libvcruntime:rtti.obj + 0001:0006575e ___RTtypeid 1006675e f libvcruntime:rtti.obj + 0001:000657f4 ??3@YAXPAX@Z 100667f4 f LIBCMT:delete_scalar.obj + 0001:000657f9 ___std_type_info_compare 100667f9 f libvcruntime:std_type_info.obj + 0001:00065835 ___std_type_info_destroy_list 10066835 f libvcruntime:std_type_info.obj + 0001:00065858 ___std_type_info_name 10066858 f libvcruntime:std_type_info.obj + 0001:00065920 _memset 10066920 f libvcruntime:memset.obj + 0001:00065a80 _strstr 10066a80 f libvcruntime:strstr.obj + 0001:00065cf0 _memchr 10066cf0 f libvcruntime:memchr.obj + 0001:00065da0 _strrchr 10066da0 f libvcruntime:strrchr.obj + 0001:00065ed7 ___vcrt_freefls@4 10066ed7 f libvcruntime:per_thread_data.obj + 0001:00065ef3 ___vcrt_freeptd_for_this_thread 10066ef3 f libvcruntime:per_thread_data.obj + 0001:00065f1e ___vcrt_getptd 10066f1e f libvcruntime:per_thread_data.obj + 0001:00065f2c ___vcrt_getptd_noexit 10066f2c f libvcruntime:per_thread_data.obj + 0001:00065fbe ___vcrt_getptd_noinit 10066fbe f libvcruntime:per_thread_data.obj + 0001:00065ff5 ___vcrt_initialize_ptd 10066ff5 f libvcruntime:per_thread_data.obj + 0001:00066028 ___vcrt_uninitialize_ptd 10067028 f libvcruntime:per_thread_data.obj + 0001:00066090 __except_handler4 10067090 f libvcruntime:chandler4.obj + 0001:00066920 ??$TypeMatchHelper@V__FrameHandler3@@@@YAHPBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_ThrowInfo@@@Z 10067920 f i libvcruntime:frame.obj + 0001:000669ae ??$__InternalCxxFrameHandler@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 100679ae f i libvcruntime:frame.obj + 0001:00066ab0 ??$__InternalCxxFrameHandlerWrapper@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 10067ab0 f i libvcruntime:frame.obj + 0001:00066d11 ?FrameUnwindToEmptyState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 10067d11 f libvcruntime:frame.obj + 0001:00066d29 ?FrameUnwindToState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@H@Z 10067d29 f libvcruntime:frame.obj + 0001:00066eab ?_CallMemberFunction1@@YGXQAX00@Z 10067eab f i libvcruntime:frame.obj + 0001:00066ebb ?_CallMemberFunction2@@YGXQAX00H@Z 10067ebb f i libvcruntime:frame.obj + 0001:00066ece ?getESTypes@__FrameHandler3@@SAPBU_s_ESTypeList@@PBU_s_FuncInfo@@@Z 10067ece f i libvcruntime:frame.obj + 0001:00066ee0 __CallSettingFrame@12 10067ee0 f libvcruntime:lowhelpr.obj + 0001:00066f07 __NLG_Return 10067f07 libvcruntime:lowhelpr.obj + 0001:00066f2c ___except_validate_context_record 10067f2c f libvcruntime:jbcxrval.obj + 0001:00066f5c ??$?0$00@DName@@QAE@PBDU?$StringLifeSelector@$00@@@Z 10067f5c f i libvcruntime:undname.obj + 0001:00066f8f ??$?0$01@DName@@QAE@PBDU?$StringLifeSelector@$01@@@Z 10067f8f f i libvcruntime:undname.obj + 0001:00066f8f ??$?0$0A@@DName@@QAE@PBDU?$StringLifeSelector@$0A@@@@Z 10067f8f f i libvcruntime:undname.obj + 0001:00066fc2 ??$?0$01@pcharNode@@QAE@PBDHU?$StringLifeSelector@$01@@@Z 10067fc2 f i libvcruntime:undname.obj + 0001:00066fc2 ??$?0$0A@@pcharNode@@QAE@PBDHU?$StringLifeSelector@$0A@@@@Z 10067fc2 f i libvcruntime:undname.obj + 0001:00067002 ??$append@VDNameNode@@@DName@@AAEXPBVDNameNode@@@Z 10068002 f i libvcruntime:undname.obj + 0001:00067002 ??$append@VDNameStatusNode@@@DName@@AAEXPBVDNameStatusNode@@@Z 10068002 f i libvcruntime:undname.obj + 0001:00067002 ??$append@VcharNode@@@DName@@AAEXPBVcharNode@@@Z 10068002 f i libvcruntime:undname.obj + 0001:00067002 ??$append@VpcharNode@@@DName@@AAEXPBVpcharNode@@@Z 10068002 f i libvcruntime:undname.obj + 0001:00067043 ??$doPchar@$00@DName@@AAEXPBDH@Z 10068043 f i libvcruntime:undname.obj + 0001:000670af ??$doPchar@$01@DName@@AAEXPBDH@Z 100680af f i libvcruntime:undname.obj + 0001:000670af ??$doPchar@$0A@@DName@@AAEXPBDH@Z 100680af f i libvcruntime:undname.obj + 0001:000671dc ??0DName@@QAE@AAPBDD@Z 100681dc f libvcruntime:undname.obj + 0001:00067265 ??0DName@@QAE@ABUStringLiteral@@@Z 10068265 f libvcruntime:undname.obj + 0001:0006728c ??0DName@@QAE@PAV0@@Z 1006828c f libvcruntime:undname.obj + 0001:000672d3 ??0DName@@QAE@W4DNameStatus@@@Z 100682d3 f libvcruntime:undname.obj + 0001:00067313 ??0DName@@QAE@_J@Z 10068313 f libvcruntime:undname.obj + 0001:0006739d ??0DName@@QAE@_K@Z 1006839d f libvcruntime:undname.obj + 0001:00067401 ??0DNameNode@@IAE@XZ 10068401 f i libvcruntime:undname.obj + 0001:0006740a ??0UnDecorator@@QAE@PBDP6APADJ@ZK@Z 1006840a f i libvcruntime:undname.obj + 0001:0006746e ??0pDNameNode@@QAE@PAVDName@@@Z 1006846e f libvcruntime:undname.obj + 0001:00067496 ??0pairNode@@QAE@PBVDNameNode@@0@Z 10068496 f i libvcruntime:undname.obj + 0001:000674bc ??2@YAPAXIAAV_HeapManager@@H@Z 100684bc f libvcruntime:undname.obj + 0001:000674db ??4DName@@QAEAAV0@ABUStringLiteral@@@Z 100684db f libvcruntime:undname.obj + 0001:000674fc ??4DName@@QAEAAV0@W4DNameStatus@@@Z 100684fc f libvcruntime:undname.obj + 0001:0006752e ??AReplicator@@QBE?AVDName@@H@Z 1006852e f libvcruntime:undname.obj + 0001:0006756a ??H@YA?AVDName@@ABUStringLiteral@@ABV0@@Z 1006856a f i libvcruntime:undname.obj + 0001:0006758c ??H@YA?AVDName@@DABV0@@Z 1006858c f i libvcruntime:undname.obj + 0001:000675b7 ??H@YA?AVDName@@W4DNameStatus@@ABV0@@Z 100685b7 f i libvcruntime:undname.obj + 0001:000675d9 ??HDName@@QBE?AV0@ABUStringLiteral@@@Z 100685d9 f libvcruntime:undname.obj + 0001:000675fb ??HDName@@QBE?AV0@ABV0@@Z 100685fb f libvcruntime:undname.obj + 0001:0006761d ??HDName@@QBE?AV0@D@Z 1006861d f libvcruntime:undname.obj + 0001:0006763f ??HDName@@QBE?AV0@W4DNameStatus@@@Z 1006863f f libvcruntime:undname.obj + 0001:00067661 ??YDName@@QAEAAV0@ABUStringLiteral@@@Z 10068661 f libvcruntime:undname.obj + 0001:000676b9 ??YDName@@QAEAAV0@ABV0@@Z 100686b9 f libvcruntime:undname.obj + 0001:00067710 ??YDName@@QAEAAV0@D@Z 10068710 f libvcruntime:undname.obj + 0001:00067765 ??YDName@@QAEAAV0@W4DNameStatus@@@Z 10068765 f libvcruntime:undname.obj + 0001:000677a5 ??YReplicator@@QAEAAV0@ABVDName@@@Z 100687a5 f libvcruntime:undname.obj + 0001:000677e5 ??_5DName@@QAEAAV0@ABV0@@Z 100687e5 f libvcruntime:undname.obj + 0001:00067804 ?Destructor@_HeapManager@@QAEXXZ 10068804 f i libvcruntime:undname.obj + 0001:00067839 ?UScore@UnDecorator@@SA?AUStringLiteral@@W4Tokens@@@Z 10068839 f libvcruntime:undname.obj + 0001:00067860 ?composeDeclaration@UnDecorator@@CA?AVDName@@ABV2@@Z 10068860 f i libvcruntime:undname.obj + 0001:000685e6 ?doPchar@DName@@AAEXD@Z 100695e6 f libvcruntime:undname.obj + 0001:0006861e ?getAddressOf@UnDecorator@@CA?AVDName@@XZ 1006961e f libvcruntime:undname.obj + 0001:00068686 ?getArgumentList@UnDecorator@@CA?AVDName@@XZ 10069686 f libvcruntime:undname.obj + 0001:00068793 ?getArgumentTypes@UnDecorator@@CA?AVDName@@XZ 10069793 f libvcruntime:undname.obj + 0001:0006889b ?getArrayAccess@UnDecorator@@CA?AVDName@@XZ 1006989b f libvcruntime:undname.obj + 0001:0006890f ?getArrayObject@UnDecorator@@CA?AVDName@@XZ 1006990f f libvcruntime:undname.obj + 0001:000689ad ?getArrayType@UnDecorator@@CA?AVDName@@ABV2@@Z 100699ad f i libvcruntime:undname.obj + 0001:00068b4a ?getBasedType@UnDecorator@@CA?AVDName@@XZ 10069b4a f libvcruntime:undname.obj + 0001:00068bf9 ?getBasicDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 10069bf9 f libvcruntime:undname.obj + 0001:00069155 ?getCallingConvention@UnDecorator@@CA?AVDName@@XZ 1006a155 f libvcruntime:undname.obj + 0001:0006921f ?getDataIndirectType@UnDecorator@@CA?AVDName@@ABV2@W4IndirectionKind@@0H@Z 1006a21f f libvcruntime:undname.obj + 0001:000698de ?getDataIndirectType@UnDecorator@@CA?AVDName@@XZ 1006a8de f i libvcruntime:undname.obj + 0001:0006990c ?getDataType@UnDecorator@@CA?AVDName@@PAV2@@Z 1006a90c f libvcruntime:undname.obj + 0001:000699e3 ?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 1006a9e3 f libvcruntime:undname.obj + 0001:00069c37 ?getDimension@UnDecorator@@CA?AVDName@@_N@Z 1006ac37 f libvcruntime:undname.obj + 0001:00069d3e ?getDispatchTarget@UnDecorator@@CA?AVDName@@XZ 1006ad3e f libvcruntime:undname.obj + 0001:00069d8f ?getECSUDataType@UnDecorator@@CA?AVDName@@XZ 1006ad8f f libvcruntime:undname.obj + 0001:00069f39 ?getEnumType@UnDecorator@@CA?AVDName@@XZ 1006af39 f i libvcruntime:undname.obj + 0001:0006a04d ?getExtendedDataIndirectType@UnDecorator@@CA?AVDName@@AAW4IndirectionKind@@AA_NH@Z 1006b04d f libvcruntime:undname.obj + 0001:0006a250 ?getExternalDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1006b250 f i libvcruntime:undname.obj + 0001:0006a2b5 ?getFloatingPoint@UnDecorator@@CA?AVDName@@H@Z 1006b2b5 f libvcruntime:undname.obj + 0001:0006a378 ?getFunctionIndirectType@UnDecorator@@CA?AVDName@@ABV2@@Z 1006b378 f libvcruntime:undname.obj + 0001:0006a722 ?getLastChar@DName@@QBEDXZ 1006b722 f i libvcruntime:undname.obj + 0001:0006a742 ?getLastChar@DNameStatusNode@@UBEDXZ 1006b742 f i libvcruntime:undname.obj + 0001:0006a74e ?getLastChar@charNode@@UBEDXZ 1006b74e f i libvcruntime:undname.obj + 0001:0006a752 ?getLastChar@pDNameNode@@UBEDXZ 1006b752 f i libvcruntime:undname.obj + 0001:0006a760 ?getLastChar@pairNode@@UBEDXZ 1006b760 f i libvcruntime:undname.obj + 0001:0006a795 ?getLastChar@pcharNode@@UBEDXZ 1006b795 f i libvcruntime:undname.obj + 0001:0006a7a7 ?getLexicalFrame@UnDecorator@@CA?AVDName@@XZ 1006b7a7 f i libvcruntime:undname.obj + 0001:0006a7d8 ?getMemberAccess@UnDecorator@@CA?AVDName@@XZ 1006b7d8 f libvcruntime:undname.obj + 0001:0006a848 ?getMemoryWithBuffer@_HeapManager@@QAEPAXI@Z 1006b848 f libvcruntime:undname.obj + 0001:0006a8b2 ?getMemoryWithoutBuffer@_HeapManager@@QAEPAXI@Z 1006b8b2 f libvcruntime:undname.obj + 0001:0006a8d2 ?getNoexcept@UnDecorator@@CA?AVDName@@XZ 1006b8d2 f libvcruntime:undname.obj + 0001:0006a91a ?getNumberOfDimensions@UnDecorator@@CAHXZ 1006b91a f libvcruntime:undname.obj + 0001:0006a974 ?getOperatorName@UnDecorator@@CA?AVDName@@_NPA_N@Z 1006b974 f i libvcruntime:undname.obj + 0001:0006b23a ?getPointerToMember@UnDecorator@@CA?AVDName@@XZ 1006c23a f libvcruntime:undname.obj + 0001:0006b2f6 ?getPrimaryDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1006c2f6 f libvcruntime:undname.obj + 0001:0006b544 ?getPtrRefDataType@UnDecorator@@CA?AVDName@@ABV2@H@Z 1006c544 f libvcruntime:undname.obj + 0001:0006b6b1 ?getPtrRefType@UnDecorator@@CA?AVDName@@ABV2@0W4IndirectionKind@@@Z 1006c6b1 f libvcruntime:undname.obj + 0001:0006b7c2 ?getRestrictionSpec@UnDecorator@@CA?AVDName@@XZ 1006c7c2 f libvcruntime:undname.obj + 0001:0006b8db ?getReturnType@UnDecorator@@CA?AVDName@@PAV2@@Z 1006c8db f libvcruntime:undname.obj + 0001:0006b90a ?getScope@UnDecorator@@CA?AVDName@@XZ 1006c90a f libvcruntime:undname.obj + 0001:0006bcc8 ?getScopedName@UnDecorator@@CA?AVDName@@XZ 1006ccc8 f libvcruntime:undname.obj + 0001:0006bdbd ?getSignedDimension@UnDecorator@@CA?AVDName@@XZ 1006cdbd f libvcruntime:undname.obj + 0001:0006be0e ?getString@DName@@QBEPADPAD0@Z 1006ce0e f i libvcruntime:undname.obj + 0001:0006be3b ?getString@DName@@QBEPADPADH@Z 1006ce3b f i libvcruntime:undname.obj + 0001:0006be90 ?getString@DNameStatusNode@@UBEPADPAD0@Z 1006ce90 f i libvcruntime:undname.obj + 0001:0006bed7 ?getString@charNode@@UBEPADPAD0@Z 1006ced7 f i libvcruntime:undname.obj + 0001:0006beec ?getString@pDNameNode@@UBEPADPAD0@Z 1006ceec f i libvcruntime:undname.obj + 0001:0006bf03 ?getString@pairNode@@UBEPADPAD0@Z 1006cf03 f i libvcruntime:undname.obj + 0001:0006bf49 ?getString@pcharNode@@UBEPADPAD0@Z 1006cf49 f i libvcruntime:undname.obj + 0001:0006bf64 ?getStringEncoding@UnDecorator@@CA?AVDName@@W4PrefixKind@@H@Z 1006cf64 f libvcruntime:undname.obj + 0001:0006bff7 ?getStringHelper@@YAPADPADPBD1H@Z 1006cff7 f i libvcruntime:undname.obj + 0001:0006c021 ?getStringObject@UnDecorator@@CA?AVDName@@XZ 1006d021 f libvcruntime:undname.obj + 0001:0006c08d ?getSymbolName@UnDecorator@@CA?AVDName@@XZ 1006d08d f i libvcruntime:undname.obj + 0001:0006c0d5 ?getTemplateArgumentList@UnDecorator@@CA?AVDName@@XZ 1006d0d5 f libvcruntime:undname.obj + 0001:0006c285 ?getTemplateName@UnDecorator@@CA?AVDName@@_N@Z 1006d285 f libvcruntime:undname.obj + 0001:0006c400 ?getTemplateNonTypeArgument@UnDecorator@@CA?AVDName@@XZ 1006d400 f libvcruntime:undname.obj + 0001:0006c7c8 ?getTemplateTypeArgument@UnDecorator@@CA?AVDName@@XZ 1006d7c8 f libvcruntime:undname.obj + 0001:0006c8d9 ?getThisType@UnDecorator@@CA?AVDName@@XZ 1006d8d9 f i libvcruntime:undname.obj + 0001:0006c908 ?getThrowTypes@UnDecorator@@CA?AVDName@@XZ 1006d908 f libvcruntime:undname.obj + 0001:0006c927 ?getTypeEncoding@UnDecorator@@CAHXZ 1006d927 f i libvcruntime:undname.obj + 0001:0006cc63 ?getUndecoratedName@UnDecorator@@QAEPADPADH@Z 1006dc63 f i libvcruntime:undname.obj + 0001:0006cd84 ?getUnionObject@UnDecorator@@CA?AVDName@@XZ 1006dd84 f libvcruntime:undname.obj + 0001:0006ce2b ?getVCallThunkType@UnDecorator@@CA?AVDName@@XZ 1006de2b f i libvcruntime:undname.obj + 0001:0006ce75 ?getValue@UnDecorator@@CA?AV?$optional@_K@std@@XZ 1006de75 f libvcruntime:undname.obj + 0001:0006cec5 ?getValueObject@UnDecorator@@CA?AVDName@@XZ 1006dec5 f libvcruntime:undname.obj + 0001:0006cff1 ?getVdispMapType@UnDecorator@@CA?AVDName@@ABV2@@Z 1006dff1 f i libvcruntime:undname.obj + 0001:0006d052 ?getVfTableType@UnDecorator@@CA?AVDName@@ABV2@@Z 1006e052 f i libvcruntime:undname.obj + 0001:0006d1a6 ?getZName@UnDecorator@@CA?AVDName@@_N0@Z 1006e1a6 f libvcruntime:undname.obj + 0001:0006d3bf ?get_current_character_and_increment_buffer@UnDecorator@@CADXZ 1006e3bf f i libvcruntime:undname.obj + 0001:0006d3d3 ?increment_buffer@UnDecorator@@CA_NI@Z 1006e3d3 f i libvcruntime:undname.obj + 0001:0006d3fb ?isEmpty@DName@@QBEHXZ 1006e3fb f i libvcruntime:undname.obj + 0001:0006d403 ?isValid@DName@@QBEHXZ 1006e403 f i libvcruntime:undname.obj + 0001:0006d40d ?length@DName@@QBEHXZ 1006e40d f i libvcruntime:undname.obj + 0001:0006d42c ?length@DNameStatusNode@@UBEHXZ 1006e42c f i libvcruntime:undname.obj + 0001:0006d42c ?length@pcharNode@@UBEHXZ 1006e42c f i libvcruntime:undname.obj + 0001:0006d42c ?raw_length@DNameStatusNode@@UBEHXZ 1006e42c f i libvcruntime:undname.obj + 0001:0006d42c ?raw_length@pcharNode@@UBEHXZ 1006e42c f i libvcruntime:undname.obj + 0001:0006d430 ?length@charNode@@UBEHXZ 1006e430 f i libvcruntime:undname.obj + 0001:0006d430 ?raw_length@charNode@@UBEHXZ 1006e430 f i libvcruntime:undname.obj + 0001:0006d430 __get_startup_argv_mode 1006e430 f i LIBCMT:argv_mode.obj + 0001:0006d434 ?length@pDNameNode@@UBEHXZ 1006e434 f i libvcruntime:undname.obj + 0001:0006d442 ?length@pairNode@@UBEHXZ 1006e442 f i libvcruntime:undname.obj + 0001:0006d48b ?make@DNameStatusNode@@SAPBV1@W4DNameStatus@@@Z 1006e48b f i libvcruntime:undname.obj + 0001:0006d4a7 ?parseDecoratedName@UnDecorator@@CA?AVDName@@XZ 1006e4a7 f libvcruntime:undname.obj + 0001:0006d5a2 ?raw_length@pairNode@@UBEHXZ 1006e5a2 f i libvcruntime:undname.obj + 0001:0006d5f8 ___unDName 1006e5f8 f libvcruntime:undname.obj + 0001:0006d61b ___unDNameEx 1006e61b f libvcruntime:undname.obj + 0001:0006d6c0 _strchr 1006e6c0 f libvcruntime:strchr.obj + 0001:0006d72e ___from_strstr_to_strchr 1006e72e libvcruntime:strchr.obj + 0001:0006d8d6 ___vcrt_FlsAlloc 1006e8d6 f libvcruntime:winapi_downlevel.obj + 0001:0006d911 ___vcrt_FlsFree 1006e911 f libvcruntime:winapi_downlevel.obj + 0001:0006d94c ___vcrt_FlsGetValue 1006e94c f libvcruntime:winapi_downlevel.obj + 0001:0006d987 ___vcrt_FlsSetValue 1006e987 f libvcruntime:winapi_downlevel.obj + 0001:0006d9c5 ___vcrt_InitializeCriticalSectionEx 1006e9c5 f libvcruntime:winapi_downlevel.obj + 0001:0006da10 __local_unwind4 1006ea10 f libvcruntime:exsup4.obj + 0001:0006db00 @_EH4_CallFilterFunc@8 1006eb00 f libvcruntime:exsup4.obj + 0001:0006db20 @_EH4_TransferToHandler@8 1006eb20 f libvcruntime:exsup4.obj + 0001:0006db40 @_EH4_GlobalUnwind2@8 1006eb40 f libvcruntime:exsup4.obj + 0001:0006db60 @_EH4_LocalUnwind@16 1006eb60 f libvcruntime:exsup4.obj + 0001:0006db77 _unexpected 1006eb77 f libvcruntime:unexpected.obj + 0001:0006db94 ?GetCurrentState@__FrameHandler3@@SAHPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 1006eb94 f libvcruntime:ehstate.obj + 0001:0006dbb1 ?SetState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@H@Z 1006ebb1 f libvcruntime:ehstate.obj + 0001:0006dbc0 __NLG_Notify1 1006ebc0 f libvcruntime:exsup.obj + 0001:0006dbd0 __NLG_Notify 1006ebd0 f libvcruntime:exsup.obj + 0001:0006dbe7 __NLG_Dispatch 1006ebe7 libvcruntime:exsup.obj + 0001:0006dbe7 __NLG_Dispatch2 1006ebe7 libvcruntime:exsup.obj + 0001:0006dbf0 __NLG_Call 1006ebf0 f libvcruntime:exsup.obj + 0001:0006dbf2 __NLG_Return2 1006ebf2 libvcruntime:exsup.obj + 0001:0006dbf3 ___vcrt_initialize_locks 1006ebf3 f libvcruntime:locks.obj + 0001:0006dc2f ___vcrt_lock 1006ec2f f libvcruntime:locks.obj + 0001:0006dc44 ___vcrt_uninitialize_locks 1006ec44 f libvcruntime:locks.obj + 0001:0006dc73 ___vcrt_unlock 1006ec73 f libvcruntime:locks.obj + 0001:0006dc88 ??0__crt_cached_ptd_host@@QAE@QAU__crt_locale_pointers@@@Z 1006ec88 f i libucrt:invalid_parameter.obj + 0001:0006dcd0 ??1__crt_cached_ptd_host@@QAE@XZ 1006ecd0 f i libucrt:invalid_parameter.obj + 0001:0006dd0c ?check_synchronize_global_state_index@__crt_cached_ptd_host@@AAEIXZ 1006ed0c f i libucrt:invalid_parameter.obj + 0001:0006dd35 ?force_synchronize_per_thread_data@__crt_cached_ptd_host@@AAEPAU__acrt_ptd@@XZ 1006ed35 f i libucrt:invalid_parameter.obj + 0001:0006dd7b ?get_raw_ptd@__crt_cached_ptd_host@@QAEPAU__acrt_ptd@@XZ 1006ed7b f i libucrt:invalid_parameter.obj + 0001:0006dd98 ___acrt_call_reportfault 1006ed98 f libucrt:invalid_parameter.obj + 0001:0006ded1 ___acrt_initialize_invalid_parameter_handler 1006eed1 f libucrt:invalid_parameter.obj + 0001:0006dee0 __invalid_parameter 1006eee0 f libucrt:invalid_parameter.obj + 0001:0006df17 __invalid_parameter_internal 1006ef17 f libucrt:invalid_parameter.obj + 0001:0006df94 __invalid_parameter_noinfo 1006ef94 f libucrt:invalid_parameter.obj + 0001:0006dfa4 __invalid_parameter_noinfo_noreturn 1006efa4 f libucrt:invalid_parameter.obj + 0001:0006dfc1 __invoke_watson 1006efc1 f libucrt:invalid_parameter.obj + 0001:0006dff5 ___acrt_initialize_stdio 1006eff5 f libucrt:_file.obj + 0001:0006e0bd ___acrt_iob_func 1006f0bd f libucrt:_file.obj + 0001:0006e0cd ___acrt_uninitialize_stdio 1006f0cd f libucrt:_file.obj + 0001:0006e119 __get_stream_buffer_pointers 1006f119 f libucrt:_file.obj + 0001:0006e15f __lock_file 1006f15f f libucrt:_file.obj + 0001:0006e173 __unlock_file 1006f173 f libucrt:_file.obj + 0001:0006e2ac _fclose 1006f2ac f libucrt:fclose.obj + 0001:0006e515 ___acrt_stdio_flush_nolock 1006f515 f libucrt:fflush.obj + 0001:0006e57e __fflush_nolock 1006f57e f libucrt:fflush.obj + 0001:0006e5e3 __flushall 1006f5e3 f libucrt:fflush.obj + 0001:0006e5ec _fflush 1006f5ec f libucrt:fflush.obj + 0001:0006e63f __fgetc_nolock 1006f63f f libucrt:fgetc.obj + 0001:0006e67b _fgetc 1006f67b f libucrt:fgetc.obj + 0001:0006e794 _fgetpos 1006f794 f libucrt:fgetpos.obj + 0001:0006e923 __fputc_nolock_internal 1006f923 f libucrt:fputc.obj + 0001:0006e950 _fputc 1006f950 f libucrt:fputc.obj + 0001:0006e984 __fread_nolock_s 1006f984 f libucrt:fread.obj + 0001:0006eb5d _fread 1006fb5d f libucrt:fread.obj + 0001:0006eb7a _fread_s 1006fb7a f libucrt:fread.obj + 0001:0006ec98 _fsetpos 1006fc98 f libucrt:fsetpos.obj + 0001:0006ecd3 ?LongLongSub@@YAJ_J0PA_J@Z 1006fcd3 f i libucrt:fseek.obj + 0001:0006efbc __fseeki64 1006ffbc f libucrt:fseek.obj + 0001:0006eff6 _fseek 1006fff6 f libucrt:fseek.obj + 0001:0006f0d7 __fwrite_internal 100700d7 f libucrt:fwrite.obj + 0001:0006f14e __fwrite_nolock_internal 1007014e f libucrt:fwrite.obj + 0001:0006f2f5 _fwrite 100702f5 f libucrt:fwrite.obj + 0001:0006f4f3 _setvbuf 100704f3 f libucrt:setvbuf.obj + 0001:0006f52d __ungetc_nolock 1007052d f libucrt:ungetc.obj + 0001:0006f621 _ungetc 10070621 f libucrt:ungetc.obj + 0001:0006f694 _free 10070694 f libucrt:free.obj + 0001:0006f6af ??$__acrt_convert_wcs_mbs_cp@D_WV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 100706af f i libucrt:rename.obj + 0001:0006f761 ??$__acrt_mbs_to_wcs_cp@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@I@Z 10070761 f i libucrt:rename.obj + 0001:0006f77e ??0_LocaleUpdate@@QAE@QAU__crt_locale_pointers@@@Z 1007077e f i libucrt:rename.obj + 0001:0006f800 ?__acrt_get_utf8_acp_compatibility_codepage@@YAIXZ 10070800 f i libucrt:rename.obj + 0001:0006f83f ?_deallocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 1007083f f i libucrt:argv_wildcards.obj + 0001:0006f83f ?_deallocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 1007083f f i libucrt:rename.obj + 0001:0006f859 ?allocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 10070859 f i libucrt:rename.obj + 0001:0006f898 ?allocate@__crt_win32_buffer_internal_dynamic_resizing@@SAHQAPAXIABV__crt_win32_buffer_empty_debug_info@@@Z 10070898 f i libucrt:rename.obj + 0001:0006f8b7 _rename 100708b7 f libucrt:rename.obj + 0001:0006fcec ??$count@D@formatting_buffer@__crt_stdio_output@@QBEIXZ 10070cec f i libucrt:output.obj + 0001:0006fd04 ??$ensure_buffer_is_big_enough@D@formatting_buffer@__crt_stdio_output@@QAE_NIAAV__crt_cached_ptd_host@@@Z 10070d04 f i libucrt:output.obj + 0001:0006fd85 ??$is_overflow_condition@K@__crt_strtox@@YA_NIK@Z 10070d85 f i libucrt:output.obj + 0001:0006fdb9 ??$is_wide_character_specifier@D@__crt_stdio_output@@YA_N_KDW4length_modifier@0@@Z 10070db9 f i libucrt:output.obj + 0001:0006fdea ??$make_c_string_character_source@DPAPAD@__crt_strtox@@YA?AV?$c_string_character_source@D@0@QBDQAPAD@Z 10070dea f i libucrt:output.obj + 0001:0006fdea ??$make_c_string_character_source@_WPAPA_W@__crt_strtox@@YA?AV?$c_string_character_source@_W@0@QB_WQAPA_W@Z 10070dea f i libucrt:output.obj + 0001:0006fe05 ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$0A@@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 10070e05 f i libucrt:output.obj + 0001:00070014 ??$scratch_data@D@formatting_buffer@__crt_stdio_output@@QAEPADXZ 10071014 f i libucrt:output.obj + 0001:00070032 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 10071032 f i libucrt:output.obj + 0001:00070032 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 10071032 f i libucrt:output.obj + 0001:000701bf ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 100711bf f i libucrt:output.obj + 0001:000701bf ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 100711bf f i libucrt:output.obj + 0001:0007034c ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1007134c f i libucrt:output.obj + 0001:0007034c ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1007134c f i libucrt:output.obj + 0001:000704d9 ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100714d9 f i libucrt:output.obj + 0001:000704d9 ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100714d9 f i libucrt:output.obj + 0001:0007053c ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1007153c f i libucrt:output.obj + 0001:0007053c ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1007153c f i libucrt:output.obj + 0001:000705c3 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100715c3 f i libucrt:output.obj + 0001:000705c3 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100715c3 f i libucrt:output.obj + 0001:00070640 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10071640 f i libucrt:output.obj + 0001:00070640 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10071640 f i libucrt:output.obj + 0001:000706b8 ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 100716b8 f i libucrt:output.obj + 0001:000706b8 ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 100716b8 f i libucrt:output.obj + 0001:0007075f ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1007175f f i libucrt:output.obj + 0001:0007075f ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 1007175f f i libucrt:output.obj + 0001:000707e9 ??0?$output_adapter_data@DV?$string_output_adapter@D@__crt_stdio_output@@@__crt_stdio_output@@IAE@ABV?$string_output_adapter@D@1@_KQBDAAV__crt_cached_ptd_host@@QAD@Z 100717e9 f i libucrt:output.obj + 0001:00070850 ??1formatting_buffer@__crt_stdio_output@@QAE@XZ 10071850 f i libucrt:output.obj + 0001:0007086a ??4?$__crt_unique_heap_ptr@DU__crt_internal_free_policy@@@@QAEAAV0@$$QAV0@@Z 1007186a f i libucrt:output.obj + 0001:0007088e ?crop_zeroes@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 1007188e f i libucrt:output.obj + 0001:000708ee ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 100718ee f i libucrt:output.obj + 0001:0007092b ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 1007192b f i libucrt:output.obj + 0001:00070966 ?force_decimal_point@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 10071966 f i libucrt:output.obj + 0001:000709c2 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 100719c2 f i libucrt:output.obj + 0001:000709c2 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 100719c2 f i libucrt:output.obj + 0001:00070a3a ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 10071a3a f i libucrt:output.obj + 0001:00070d1e ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 10071d1e f i libucrt:output.obj + 0001:00070ff2 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10071ff2 f i libucrt:output.obj + 0001:00070ff2 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10071ff2 f i libucrt:output.obj + 0001:0007114b ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1007214b f i libucrt:output.obj + 0001:0007114b ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1007214b f i libucrt:output.obj + 0001:000714aa ?to_integer_size@__crt_stdio_output@@YAIW4length_modifier@1@@Z 100724aa f i libucrt:output.obj + 0001:000714fe ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100724fe f i libucrt:output.obj + 0001:000714fe ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100724fe f i libucrt:output.obj + 0001:00071561 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10072561 f i libucrt:output.obj + 0001:00071561 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10072561 f i libucrt:output.obj + 0001:000716f2 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 100726f2 f i libucrt:output.obj + 0001:000716f2 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 100726f2 f i libucrt:output.obj + 0001:00071787 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10072787 f i libucrt:output.obj + 0001:00071787 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10072787 f i libucrt:output.obj + 0001:0007180c ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1007280c f i libucrt:output.obj + 0001:0007180c ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1007280c f i libucrt:output.obj + 0001:00071829 ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10072829 f i libucrt:output.obj + 0001:00071829 ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10072829 f i libucrt:output.obj + 0001:0007183f ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1007283f f i libucrt:output.obj + 0001:0007183f ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1007283f f i libucrt:output.obj + 0001:000718b1 ?unget@?$c_string_character_source@D@__crt_strtox@@QAEXD@Z 100728b1 f i libucrt:output.obj + 0001:000718da ?unget@?$c_string_character_source@_W@__crt_strtox@@QAEX_W@Z 100728da f i libucrt:output.obj + 0001:00071910 ?update_locale_slow@__crt_cached_ptd_host@@AAEXXZ 10072910 f i libucrt:output.obj + 0001:0007196b ?validate@?$c_string_character_source@D@__crt_strtox@@QBE_NXZ 1007296b f i libucrt:output.obj + 0001:0007196b ?validate@?$c_string_character_source@_W@__crt_strtox@@QBE_NXZ 1007296b f i libucrt:output.obj + 0001:00071986 ?validate@?$string_output_adapter@D@__crt_stdio_output@@QBE_NAAV__crt_cached_ptd_host@@@Z 10072986 f i libucrt:output.obj + 0001:000719b7 ?write_string@?$string_output_adapter@D@__crt_stdio_output@@QBEXQBDHQAHAAV__crt_cached_ptd_host@@@Z 100729b7 f i libucrt:output.obj + 0001:00071a1e ___acrt_locale_get_ctype_array_value 10072a1e f i libucrt:output.obj + 0001:00071a40 ___stdio_common_vsprintf 10072a40 f libucrt:output.obj + 0001:00071a81 ___stdio_common_vsprintf_s 10072a81 f libucrt:output.obj + 0001:00071ac2 ___acrt_errno_from_os_error 10072ac2 f libucrt:errno.obj + 0001:00071b05 ___acrt_errno_map_os_error 10072b05 f libucrt:errno.obj + 0001:00071b28 ___acrt_errno_map_os_error_ptd 10072b28 f libucrt:errno.obj + 0001:00071b4c ___doserrno 10072b4c f libucrt:errno.obj + 0001:00071b5f __errno 10072b5f f libucrt:errno.obj + 0001:00071b72 _frexp 10072b72 f libucrt:frexp.obj + 0001:00071c6c _calloc 10072c6c f libucrt:calloc.obj + 0001:00071c77 _abort 10072c77 f libucrt:abort.obj + 0001:00071cbb ??$is_overflow_condition@_K@__crt_strtox@@YA_NI_K@Z 10072cbb f i libucrt:atox.obj + 0001:00071cfc ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 10072cfc f i libucrt:atox.obj + 0001:00071f43 ??$parse_integer@KV?$c_string_character_source@_W@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@_W@0@H_N@Z 10072f43 f i libucrt:atox.obj + 0001:00072551 ??$parse_integer@_KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YA_KAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 10073551 f i libucrt:atox.obj + 0001:00072819 __ischartype_l 10073819 f i libucrt:atox.obj + 0001:00072870 __wtol 10073870 f libucrt:atox.obj + 0001:000728af _atoi 100738af f libucrt:atox.obj + 0001:000728af _atol 100738af f libucrt:atox.obj + 0001:000728ee ??$assemble_floating_point_value_t@M@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAM@Z 100738ee f i libucrt:strtod.obj + 0001:0007291e ??$assemble_floating_point_value_t@N@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAN@Z 1007391e f i libucrt:strtod.obj + 0001:000729ef ??$convert_decimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 100739ef f i libucrt:strtod.obj + 0001:00072a10 ??$convert_hexadecimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10073a10 f i libucrt:strtod.obj + 0001:00072a31 ??$parse_floating_point@V?$c_string_character_source@D@__crt_strtox@@M@__crt_strtox@@YA?AW4SLD_STATUS@@QAU__crt_locale_pointers@@V?$c_string_character_source@D@0@QAM@Z 10073a31 f i libucrt:strtod.obj + 0001:00072ab1 ??$parse_floating_point_from_source@V?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA?AW4floating_point_parse_result@0@QAU__crt_locale_pointers@@AAV?$c_string_character_source@D@0@AAUfloating_point_string@0@@Z 10073ab1 f i libucrt:strtod.obj + 0001:00072ec9 ??$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 10073ec9 f i libucrt:strtod.obj + 0001:00072f7c ??$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 10073f7c f i libucrt:strtod.obj + 0001:00073080 ??$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 10074080 f i libucrt:strtod.obj + 0001:000730bc ??$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 100740bc f i libucrt:strtod.obj + 0001:000730f8 ??$parse_floating_point_write_result@M@__crt_strtox@@YA?AW4SLD_STATUS@@W4floating_point_parse_result@0@ABUfloating_point_string@0@QAM@Z 100740f8 f i libucrt:strtod.obj + 0001:00073264 ??R@@QBE@XZ 10074264 f i libucrt:strtod.obj + 0001:00073264 ??R@@QBE@XZ 10074264 f i libucrt:strtod.obj + 0001:00073264 ??R@@QBE@XZ 10074264 f i libucrt:strtod.obj + 0001:0007328a ?as_double@floating_point_value@__crt_strtox@@QBEAANXZ 1007428a f i libucrt:strtod.obj + 0001:000732af ?as_float@floating_point_value@__crt_strtox@@QBEAAMXZ 100742af f i libucrt:strtod.obj + 0001:000732d4 ?assemble_floating_point_infinity@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 100742d4 f i libucrt:strtod.obj + 0001:00073314 ?assemble_floating_point_value@__crt_strtox@@YA?AW4SLD_STATUS@@_KH_N1ABVfloating_point_value@1@@Z 10074314 f i libucrt:strtod.obj + 0001:0007366d ?assemble_floating_point_value_from_big_integer@__crt_strtox@@YA?AW4SLD_STATUS@@ABUbig_integer@1@I_N1ABVfloating_point_value@1@@Z 1007466d f i libucrt:strtod.obj + 0001:000737ff ?assemble_floating_point_zero@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 100747ff f i libucrt:strtod.obj + 0001:00073834 ?convert_decimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10074834 f i libucrt:strtod.obj + 0001:000755da ?convert_hexadecimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 100765da f i libucrt:strtod.obj + 0001:00075680 ?denormal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 10076680 f i libucrt:strtod.obj + 0001:000756a0 ?divide@__crt_strtox@@YA_KAAUbig_integer@1@ABU21@@Z 100766a0 f i libucrt:strtod.obj + 0001:00075b4b ?normal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 10076b4b f i libucrt:strtod.obj + 0001:00075b62 _strtof 10076b62 f libucrt:strtod.obj + 0001:00075b80 _strcspn 10076b80 f libucrt:strcspn.obj + 0001:00075bd0 _strncmp 10076bd0 f libucrt:strncmp.obj + 0001:00075ed9 __localtime64_s 10076ed9 f libucrt:localtime.obj + 0001:00075ee4 _localeconv 10076ee4 f libucrt:localeconv.obj + 0001:00075f0c ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@ABV@@I@Z 10076f0c f i libucrt:strftime.obj + 0001:00075fce ??$__acrt_wcs_to_mbs_cp@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@I@Z 10076fce f i libucrt:strftime.obj + 0001:00075feb ??R@@QBE@IQB_WQADI@Z 10076feb f i libucrt:strftime.obj + 0001:00075feb ??R@@QBE@IQB_WQADI@Z 10076feb f i libucrt:argv_wildcards.obj + 0001:0007600f ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEHI@Z 1007700f f i libucrt:strftime.obj + 0001:00076036 ?set_to_nullptr@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEXXZ 10077036 f i libucrt:strftime.obj + 0001:0007604a __Gettnames 1007704a f libucrt:strftime.obj + 0001:0007604f __Strftime 1007704f f libucrt:strftime.obj + 0001:0007606f __Strftime_l 1007706f f libucrt:strftime.obj + 0001:0007616a __dclass 1007716a f libucrt:nan.obj + 0001:0007617b __dsign 1007717b f libucrt:nan.obj + 0001:0007618b __ldclass 1007718b f libucrt:nanl.obj + 0001:0007619c ___ascii_stricmp 1007719c f libucrt:stricmp.obj + 0001:000761d5 __strcmpi 100771d5 f libucrt:stricmp.obj + 0001:000761d5 __stricmp 100771d5 f libucrt:stricmp.obj + 0001:0007621e __stricmp_l 1007721e f libucrt:stricmp.obj + 0001:000762ae _strtoul 100772ae f libucrt:strtox.obj + 0001:000762f4 _strtoull 100772f4 f libucrt:strtox.obj + 0001:00076340 _wcstol 10077340 f libucrt:strtox.obj + 0001:00076386 __tolower_l 10077386 f libucrt:tolower_toupper.obj + 0001:00076484 _tolower 10077484 f libucrt:tolower_toupper.obj + 0001:000764c0 __libm_sse2_sqrt_precise 100774c0 f libucrt:sqrt_sse2_precise.obj + 0001:000765c0 _ceil 100775c0 f libucrt:ceil_pentium4.obj + 0001:00076600 __ceil_pentium4 10077600 f libucrt:ceil_pentium4.obj + 0001:000766e0 _islower 100776e0 f libucrt:_ctype.obj + 0001:00076770 _isupper 10077770 f libucrt:_ctype.obj + 0001:00076800 _isxdigit 10077800 f libucrt:_ctype.obj + 0001:0007688b __strnicmp 1007788b f libucrt:strnicmp.obj + 0001:000768f8 __strnicmp_l 100778f8 f libucrt:strnicmp.obj + 0001:000769d0 _strpbrk 100779d0 f libucrt:strpbrk.obj + 0001:00076a10 _terminate 10077a10 f libucrt:terminate.obj + 0001:00076a4c _malloc 10077a4c f libucrt:malloc.obj + 0001:00076a57 _strcpy_s 10077a57 f libucrt:strcpy_s.obj + 0001:00076ab1 _wcsncmp 10077ab1 f libucrt:wcsncmp.obj + 0001:00076e29 ___acrt_freeptd 10077e29 f libucrt:per_thread_data.obj + 0001:00076e55 ___acrt_getptd 10077e55 f libucrt:per_thread_data.obj + 0001:00076f10 ___acrt_getptd_head 10077f10 f libucrt:per_thread_data.obj + 0001:00076fa6 ___acrt_getptd_noexit 10077fa6 f libucrt:per_thread_data.obj + 0001:00077057 ___acrt_getptd_noexit_explicit 10078057 f libucrt:per_thread_data.obj + 0001:000770fa ___acrt_initialize_ptd 100780fa f libucrt:per_thread_data.obj + 0001:00077126 ___acrt_uninitialize_ptd 10078126 f libucrt:per_thread_data.obj + 0001:00077240 ??0_expandlocale_locale_name_cache@@QAE@QA_WIQAU__crt_qualified_locale_data@@@Z 10078240 f i libucrt:wsetlocale.obj + 0001:0007728a ??1_expandlocale_locale_name_cache@@QAE@XZ 1007828a f i libucrt:wsetlocale.obj + 0001:00077422 ?commit_locale_name@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 10078422 f i libucrt:wsetlocale.obj + 0001:00077466 ?commit_locale_name_cache_already_updated@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 10078466 f i libucrt:wsetlocale.obj + 0001:0007749b ___acrt_copy_locale_name 1007849b f libucrt:wsetlocale.obj + 0001:000774fb ___acrt_set_locale_changed 100784fb f libucrt:wsetlocale.obj + 0001:00077506 ___acrt_uninitialize_locale 10078506 f libucrt:wsetlocale.obj + 0001:0007752d ___lc_lctowcs 1007852d f libucrt:wsetlocale.obj + 0001:0007759d ___lc_wcstolc 1007859d f libucrt:wsetlocale.obj + 0001:00077acf __wcscats 10078acf f libucrt:wsetlocale.obj + 0001:00077b10 __wsetlocale 10078b10 f libucrt:wsetlocale.obj + 0001:00078805 __calloc_base 10079805 f libucrt:calloc_base.obj + 0001:00078862 __free_base 10079862 f libucrt:free_base.obj + 0001:00078925 ??$__crt_fast_encode_pointer@P6AHXZ@@YAP6AHXZQ6AHXZ@Z 10079925 f i libucrt:onexit.obj + 0001:00078925 ??$__crt_fast_encode_pointer@P6GHPA_WKJ@Z@@YAP6GHPA_WKJ@ZQ6GH0KJ@Z@Z 10079925 f i libucrt:winapi_thunks.obj + 0001:00078925 ??$__crt_fast_encode_pointer@PAP6AXXZ@@YAPAP6AXXZQAP6AXXZ@Z 10079925 f i libucrt:onexit.obj + 0001:00078925 ??$__crt_fast_encode_pointer@PAX@@YAPAXQAX@Z 10079925 f i libucrt:winapi_thunks.obj + 0001:00078be5 ___acrt_AppPolicyGetProcessTerminationMethodInternal@4 10079be5 f libucrt:winapi_thunks.obj + 0001:00078c25 ___acrt_AreFileApisANSI@0 10079c25 f libucrt:winapi_thunks.obj + 0001:00078c44 ___acrt_CompareStringEx@36 10079c44 f libucrt:winapi_thunks.obj + 0001:00078ca1 ___acrt_EnumSystemLocalesEx@16 10079ca1 f libucrt:winapi_thunks.obj + 0001:00078cf5 ___acrt_FlsAlloc@4 10079cf5 f libucrt:winapi_thunks.obj + 0001:00078d34 ___acrt_FlsFree@4 10079d34 f libucrt:winapi_thunks.obj + 0001:00078d73 ___acrt_FlsGetValue@4 10079d73 f libucrt:winapi_thunks.obj + 0001:00078db2 ___acrt_FlsSetValue@8 10079db2 f libucrt:winapi_thunks.obj + 0001:00078df4 ___acrt_GetDateFormatEx@28 10079df4 f libucrt:winapi_thunks.obj + 0001:00078e4b ___acrt_GetLocaleInfoEx@16 10079e4b f libucrt:winapi_thunks.obj + 0001:00078e8a ___acrt_GetTimeFormatEx@24 10079e8a f libucrt:winapi_thunks.obj + 0001:00078ecf ___acrt_GetUserDefaultLocaleName@8 10079ecf f libucrt:winapi_thunks.obj + 0001:00078f0b ___acrt_InitializeCriticalSectionEx@12 10079f0b f libucrt:winapi_thunks.obj + 0001:00078f56 ___acrt_IsValidLocaleName@4 10079f56 f libucrt:winapi_thunks.obj + 0001:00078f8e ___acrt_LCIDToLocaleName@16 10079f8e f libucrt:winapi_thunks.obj + 0001:00078fd0 ___acrt_LCMapStringEx@36 10079fd0 f libucrt:winapi_thunks.obj + 0001:0007902d ___acrt_LocaleNameToLCID@8 1007a02d f libucrt:winapi_thunks.obj + 0001:0007905e ___acrt_can_use_vista_locale_apis 1007a05e f libucrt:winapi_thunks.obj + 0001:00079069 ___acrt_eagerly_load_locale_apis 1007a069 f libucrt:winapi_thunks.obj + 0001:000790a0 ___acrt_initialize_winapi_thunks 1007a0a0 f libucrt:winapi_thunks.obj + 0001:000790b4 ___acrt_uninitialize_winapi_thunks 1007a0b4 f libucrt:winapi_thunks.obj + 0001:000790ea __fcloseall 1007a0ea f libucrt:closeall.obj + 0001:00079195 ___acrt_stdio_free_buffer_nolock 1007a195 f libucrt:_freebuf.obj + 0001:0007933b ___acrt_initialize_lowio 1007a33b f libucrt:ioinit.obj + 0001:0007939b ___acrt_uninitialize_lowio 1007a39b f libucrt:ioinit.obj + 0001:000793c7 __fileno 1007a3c7 f libucrt:fileno.obj + 0001:0007947f __close_internal 1007a47f f libucrt:close.obj + 0001:00079522 __close_nolock 1007a522 f libucrt:close.obj + 0001:00079552 __close_nolock_internal 1007a552 f libucrt:close.obj + 0001:000795f2 ?__acrt_stdio_allocate_stream@@YA?AV__crt_stdio_stream@@XZ 1007a5f2 f libucrt:stream.obj + 0001:0007965b ?__acrt_stdio_free_stream@@YAXV__crt_stdio_stream@@@Z 1007a65b f libucrt:stream.obj + 0001:00079758 ___acrt_initialize_locks 1007a758 f libucrt:locks.obj + 0001:00079799 ___acrt_lock 1007a799 f libucrt:locks.obj + 0001:000797b0 ___acrt_uninitialize_locks 1007a7b0 f libucrt:locks.obj + 0001:000797e1 ___acrt_unlock 1007a7e1 f libucrt:locks.obj + 0001:000797f8 __lock_locales 1007a7f8 f libucrt:locks.obj + 0001:00079806 __unlock_locales 1007a806 f libucrt:locks.obj + 0001:000798b1 __commit 1007a8b1 f libucrt:commit.obj + 0001:0007a0d0 __write 1007b0d0 f libucrt:write.obj + 0001:0007a107 __write_internal 1007b107 f libucrt:write.obj + 0001:0007a218 __write_nolock 1007b218 f libucrt:write.obj + 0001:0007a5c3 ___acrt_stdio_refill_and_read_narrow_nolock 1007b5c3 f libucrt:_filbuf.obj + 0001:0007abc5 __ftelli64 1007bbc5 f libucrt:ftell.obj + 0001:0007abfb __ftelli64_nolock_internal 1007bbfb f libucrt:ftell.obj + 0001:0007ae53 ___acrt_stdio_flush_and_write_narrow_nolock 1007be53 f libucrt:_flsbuf.obj + 0001:0007b33a __read 1007c33a f libucrt:read.obj + 0001:0007b453 __read_nolock 1007c453 f libucrt:read.obj + 0001:0007b986 __lseeki64 1007c986 f libucrt:lseek.obj + 0001:0007b9c6 __lseeki64_internal 1007c9c6 f libucrt:lseek.obj + 0001:0007b9e4 __lseeki64_nolock 1007c9e4 f libucrt:lseek.obj + 0001:0007ba24 __lseeki64_nolock_internal 1007ca24 f libucrt:lseek.obj + 0001:0007ba42 ___acrt_should_use_temporary_buffer 1007ca42 f libucrt:_sftbuf.obj + 0001:0007ba80 ___acrt_stdio_begin_temporary_buffering_nolock 1007ca80 f libucrt:_sftbuf.obj + 0001:0007bb2b ___acrt_stdio_end_temporary_buffering_nolock 1007cb2b f libucrt:_sftbuf.obj + 0001:0007bb69 ___acrt_stdio_allocate_buffer_nolock 1007cb69 f libucrt:_getbuf.obj + 0001:0007bbc5 __malloc_base 1007cbc5 f libucrt:malloc_base.obj + 0001:0007bcab ___acrt_MultiByteToWideChar 1007ccab f libucrt:multibytetowidechar.obj + 0001:0007bcd5 ___acrt_update_locale_info 1007ccd5 f libucrt:locale_update.obj + 0001:0007bd02 ___acrt_update_locale_info_explicit 1007cd02 f libucrt:locale_update.obj + 0001:0007bd33 ___acrt_update_multibyte_info 1007cd33 f libucrt:locale_update.obj + 0001:0007bd60 ___acrt_update_multibyte_info_explicit 1007cd60 f libucrt:locale_update.obj + 0001:0007bd91 __wrename 1007cd91 f libucrt:wrename.obj + 0001:0007bdbe _strnlen 1007cdbe f libucrt:strnlen.obj + 0001:0007bee0 _wcsnlen 1007cee0 f libucrt:strnlen.obj + 0001:0007c090 ?__acrt_fp_classify@@YA?AW4__acrt_fp_class@@ABN@Z 1007d090 f i libucrt:cvt.obj + 0001:0007ca68 ___acrt_fp_format 1007da68 f libucrt:cvt.obj + 0001:0007cbe9 __wctomb_internal 1007dbe9 f libucrt:wctomb.obj + 0001:0007cd53 __mbtowc_internal 1007dd53 f libucrt:mbtowc.obj + 0001:0007ce86 __get_printf_count_output 1007de86 f libucrt:printf_count_output.obj + 0001:0007ce9b __errcode 1007de9b f libucrt:fpexcept.obj + 0001:0007cecf __except1 1007decf f libucrt:fpexcept.obj + 0001:0007cf9d __handle_exc 1007df9d f libucrt:fpexcept.obj + 0001:0007d21d __raise_exc 1007e21d f libucrt:fpexcept.obj + 0001:0007d240 __raise_exc_ex 1007e240 f libucrt:fpexcept.obj + 0001:0007d531 __set_errno_from_matherr 1007e531 f libucrt:fpexcept.obj + 0001:0007d562 __umatherr 1007e562 f libucrt:fpexcept.obj + 0001:0007d602 __decomp 1007e602 f libucrt:util.obj + 0001:0007d6d4 __set_exp 1007e6d4 f libucrt:util.obj + 0001:0007d701 __sptype 1007e701 f libucrt:util.obj + 0001:0007d764 ___set_fpsr_sse2 1007e764 f libucrt:fpctrl.obj + 0001:0007d7e4 __clrfp 1007e7e4 f libucrt:fpctrl.obj + 0001:0007d7f5 __ctrlfp 1007e7f5 f libucrt:fpctrl.obj + 0001:0007d81f __set_statfp 1007e81f f libucrt:fpctrl.obj + 0001:0007d878 __statfp 1007e878 f libucrt:fpctrl.obj + 0001:0007d8d5 ??$__crt_fast_decode_pointer@P6AHI@Z@@YAP6AHI@ZQ6AHI@Z@Z 1007e8d5 f i libucrt:new_handler.obj + 0001:0007d8d5 ??$__crt_fast_decode_pointer@P6AXH@Z@@YAP6AXH@ZQ6AXH@Z@Z 1007e8d5 f i libucrt:signal.obj + 0001:0007d8d5 ??$__crt_fast_decode_pointer@P6GXPAXK0@Z@@YAP6GXPAXK0@ZQ6GX0K0@Z@Z 1007e8d5 f i libucrt:exit.obj + 0001:0007db7d ___acrt_initialize_thread_local_exit_callback 1007eb7d f libucrt:exit.obj + 0001:0007db8c __cexit 1007eb8c f libucrt:exit.obj + 0001:0007db9b __exit 1007eb9b f libucrt:exit.obj + 0001:0007dbb1 __is_c_termination_complete 1007ebb1 f libucrt:exit.obj + 0001:0007dc8a ___acrt_get_sigabrt_handler 1007ec8a f libucrt:signal.obj + 0001:0007dcb1 ___acrt_initialize_signal_handlers 1007ecb1 f libucrt:signal.obj + 0001:0007dccf _raise 1007eccf f libucrt:signal.obj + 0001:0007dec1 ___pctype_func 1007eec1 f libucrt:ctype.obj + 0001:0007dee5 _iswctype 1007eee5 f libucrt:iswctype.obj + 0001:0007df4e __isctype_l 1007ef4e f libucrt:isctype.obj + 0001:0007e019 _fegetround 1007f019 f libucrt:fegetround.obj + 0001:0007e026 ___acrt_initialize_timeset 1007f026 f libucrt:timeset.obj + 0001:0007e05b ___daylight 1007f05b f libucrt:timeset.obj + 0001:0007e061 ___dstbias 1007f061 f libucrt:timeset.obj + 0001:0007e067 ___timezone 1007f067 f libucrt:timeset.obj + 0001:0007e06d ___tzname 1007f06d f libucrt:timeset.obj + 0001:0007e073 ___wide_tzname 1007f073 f libucrt:timeset.obj + 0001:0007e079 __get_daylight 1007f079 f libucrt:timeset.obj + 0001:0007e0a5 __get_dstbias 1007f0a5 f libucrt:timeset.obj + 0001:0007e0d1 __get_timezone 1007f0d1 f libucrt:timeset.obj + 0001:0007e0fd ??$__crt_time_elapsed_leap_years@H@@YAHH@Z 1007f0fd f i libucrt:gmtime.obj + 0001:0007e137 ??$__crt_time_is_leap_year@H@@YA_NH@Z 1007f137 f i libucrt:gmtime.obj + 0001:0007e37d __gmtime64_s 1007f37d f libucrt:gmtime.obj + 0001:0007ec47 ___tzset 1007fc47 f libucrt:tzset.obj + 0001:0007eca4 __isindst 1007fca4 f libucrt:tzset.obj + 0001:0007ed88 ___acrt_WideCharToMultiByte 1007fd88 f libucrt:widechartomultibyte.obj + 0001:0007edf4 ??1?$__crt_scoped_stack_ptr@_W@@QAE@XZ 1007fdf4 f i libucrt:wcsftime.obj + 0001:0007fe58 __W_Gettnames 10080e58 f libucrt:wcsftime.obj + 0001:00080554 __Wcsftime_l 10081554 f libucrt:wcsftime.obj + 0001:000806b4 __freea_crt 100816b4 f i libucrt:wcsftime.obj + 0001:000806d4 __dtest 100816d4 f libucrt:_test.obj + 0001:00080738 __ldtest 10081738 f libucrt:_test.obj + 0001:00080932 ___acrt_LCMapStringA 10081932 f libucrt:lcmapstringa.obj + 0001:0008097b ___libm_error_support 1008197b f libucrt:libm_error.obj + 0001:00080b70 _sqrt 10081b70 f libucrt:sqrt.obj + 0001:00080b7e ___acrt_initialize_sse2 10081b7e f libucrt:mathfcns.obj + 0001:00080b8e __ceil_default 10081b8e f libucrt:ceil.obj + 0001:00080c50 ___ascii_strnicmp 10081c50 f libucrt:_strnicm.obj + 0001:00080cb1 ___acrt_add_locale_ref 10081cb1 f libucrt:locale_refcounting.obj + 0001:00080d2e ___acrt_free_locale 10081d2e f libucrt:locale_refcounting.obj + 0001:00080e76 ___acrt_locale_add_lc_time_reference 10081e76 f libucrt:locale_refcounting.obj + 0001:00080e9f ___acrt_locale_free_lc_time_if_unreferenced 10081e9f f libucrt:locale_refcounting.obj + 0001:00080ed0 ___acrt_locale_release_lc_time_reference 10081ed0 f libucrt:locale_refcounting.obj + 0001:00080ef9 ___acrt_release_locale_ref 10081ef9 f libucrt:locale_refcounting.obj + 0001:00080f7a ___acrt_update_thread_locale_data 10081f7a f libucrt:locale_refcounting.obj + 0001:00080ffb __updatetlocinfoEx_nolock 10081ffb f libucrt:locale_refcounting.obj + 0001:000815c7 ___acrt_initialize_multibyte 100825c7 f libucrt:mbctype.obj + 0001:0008160f ___acrt_update_thread_multibyte_data 1008260f f libucrt:mbctype.obj + 0001:00081622 __setmbcp_nolock 10082622 f libucrt:mbctype.obj + 0001:00081827 __seh_filter_dll 10082827 f libucrt:exception_filter.obj + 0001:00081847 __seh_filter_exe 10082847 f libucrt:exception_filter.obj + 0001:0008198d ____lc_codepage_func 1008298d f libucrt:initctype.obj + 0001:000819b2 ____lc_locale_name_func 100829b2 f libucrt:initctype.obj + 0001:000819d9 ____mb_cur_max_func 100829d9 f libucrt:initctype.obj + 0001:000819fe ___acrt_locale_initialize_ctype 100829fe f libucrt:initctype.obj + 0001:00081e5b ___acrt_locale_free_monetary 10082e5b f libucrt:initmon.obj + 0001:00081f59 ___acrt_locale_initialize_monetary 10082f59 f libucrt:initmon.obj + 0001:000822ba ___acrt_locale_free_numeric 100832ba f libucrt:initnum.obj + 0001:00082323 ___acrt_locale_initialize_numeric 10083323 f libucrt:initnum.obj + 0001:000827e1 ___acrt_locale_free_time 100837e1 f libucrt:inittime.obj + 0001:000828c5 ___acrt_locale_initialize_time 100838c5 f libucrt:inittime.obj + 0001:00082940 _wcscat_s 10083940 f libucrt:wcscat_s.obj + 0001:000829af _wcscpy_s 100839af f libucrt:wcscpy_s.obj + 0001:00082afb _wcsncat_s 10083afb f libucrt:wcsncat_s.obj + 0001:00082bd4 _wcsncpy_s 10083bd4 f libucrt:wcsncpy_s.obj + 0001:00082bdf _wcscspn 10083bdf f libucrt:wcscspn.obj + 0001:00082c38 _wcspbrk 10083c38 f libucrt:wcspbrk.obj + 0001:00082c86 ___acrt_GetStringTypeA 10083c86 f libucrt:getstringtypea.obj + 0001:0008347e ___acrt_get_qualified_locale 1008447e f libucrt:get_qualified_locale.obj + 0001:00083df3 ___acrt_get_qualified_locale_downlevel 10084df3 f libucrt:getqloc_downlevel.obj + 0001:00083fe3 ___acrt_initialize_new_handler 10084fe3 f libucrt:new_handler.obj + 0001:00083ff2 __callnewh 10084ff2 f libucrt:new_handler.obj + 0001:0008401e __query_new_handler 1008501e f libucrt:new_handler.obj + 0001:00084075 __query_new_mode 10085075 f libucrt:new_mode.obj + 0001:0008407c ___acrt_initialize_heap 1008507c f libucrt:heap_handle.obj + 0001:0008408d ___acrt_uninitialize_heap 1008508d f libucrt:heap_handle.obj + 0001:000840e7 ___acrt_DownlevelLCIDToLocaleName 100850e7 f libucrt:lcidtoname_downlevel.obj + 0001:0008418a ___acrt_DownlevelLocaleNameToLCID 1008518a f libucrt:lcidtoname_downlevel.obj + 0001:000841b6 ___acrt_get_process_end_policy 100851b6 f libucrt:win_policies.obj + 0001:000841dd ___acrt_lowio_create_handle_array 100851dd f libucrt:osfinfo.obj + 0001:00084258 ___acrt_lowio_destroy_handle_array 10085258 f libucrt:osfinfo.obj + 0001:0008428d ___acrt_lowio_ensure_fh_exists 1008528d f libucrt:osfinfo.obj + 0001:0008432b ___acrt_lowio_lock_fh 1008532b f libucrt:osfinfo.obj + 0001:0008434e ___acrt_lowio_set_os_handle 1008534e f libucrt:osfinfo.obj + 0001:000843e0 ___acrt_lowio_unlock_fh 100853e0 f libucrt:osfinfo.obj + 0001:00084403 __alloc_osfhnd 10085403 f libucrt:osfinfo.obj + 0001:00084516 __free_osfhnd 10085516 f libucrt:osfinfo.obj + 0001:000845a7 __get_osfhandle 100855a7 f libucrt:osfinfo.obj + 0001:00084611 __isatty 10085611 f libucrt:isatty.obj + 0001:00084693 ?__mbrtowc_utf8@__crt_mbstring@@YAIPA_WPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10085693 f libucrt:mbrtowc.obj + 0001:000846d6 ?__mbsrtowcs_utf8@__crt_mbstring@@YAIPA_WPAPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100856d6 f libucrt:mbrtowc.obj + 0001:000847de __putwch_nolock 100857de f libucrt:putwch.obj + 0001:000848c1 ___acrt_fp_strflt_to_string 100858c1 f libucrt:_fptostr.obj + 0001:000849bb ___acrt_fltout 100859bb f libucrt:cfout.obj + 0001:00085fa3 ?__c32rtomb_utf8@__crt_mbstring@@YAIPAD_UPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10086fa3 f libucrt:c32rtomb.obj + 0001:00086053 ___acrt_has_user_matherr 10087053 f libucrt:matherr.obj + 0001:00086070 ___acrt_initialize_user_matherr 10087070 f libucrt:matherr.obj + 0001:0008607f ___acrt_invoke_user_matherr 1008707f f libucrt:matherr.obj + 0001:000860b5 __initterm 100870b5 f libucrt:initterm.obj + 0001:000860e0 __initterm_e 100870e0 f libucrt:initterm.obj + 0001:000863a0 __crt_atexit 100873a0 f libucrt:onexit.obj + 0001:000863b6 __execute_onexit_table 100873b6 f libucrt:onexit.obj + 0001:000863f4 __initialize_onexit_table 100873f4 f libucrt:onexit.obj + 0001:0008641d __register_onexit_function 1008741d f libucrt:onexit.obj + 0001:00086450 ___acrt_app_verifier_enabled 10087450 f libucrt:peb_access.obj + 0001:00086462 ___acrt_is_secure_process 10087462 f libucrt:peb_access.obj + 0001:00086475 ___acrt_GetStringTypeW 10087475 f libucrt:getstringtypew.obj + 0001:00086757 ___acrt_fenv_get_common_round_control 10087757 f libucrt:_fenvutils.obj + 0001:00086779 ___acrt_fenv_get_control 10087779 f libucrt:_fenvutils.obj + 0001:000867f9 ___acrt_fenv_get_status 100877f9 f libucrt:_fenvutils.obj + 0001:000868a3 ___acrt_fenv_set_control 100878a3 f libucrt:_fenvutils.obj + 0001:0008691e ___acrt_fenv_set_status 1008791e f libucrt:_fenvutils.obj + 0001:00086bab __wgetenv_s 10087bab f libucrt:getenv.obj + 0001:00086bb6 ___ascii_wcsicmp 10087bb6 f libucrt:wcsicmp.obj + 0001:00086bf3 __towlower_internal 10087bf3 f i libucrt:wcsicmp.obj + 0001:00086c32 __wcsicmp 10087c32 f libucrt:wcsicmp.obj + 0001:00086c7b __wcsicmp_l 10087c7b f libucrt:wcsicmp.obj + 0001:00086d33 ___strncnt 10087d33 f libucrt:strncnt.obj + 0001:00086d50 __twoToTOS 10087d50 f libucrt:common.obj + 0001:00086d65 __load_CW 10087d65 f libucrt:common.obj + 0001:00086d7c __convertTOStoQNaN 10087d7c f libucrt:common.obj + 0001:00086d95 __fload_withFB 10087d95 f libucrt:common.obj + 0001:00086dd8 __checkTOS_withFB 10087dd8 f libucrt:common.obj + 0001:00086dee __fast_exit 10087dee f libucrt:common.obj + 0001:00086dfb __math_exit 10087dfb f libucrt:common.obj + 0001:00086e25 __check_overflow_exit 10087e25 f libucrt:common.obj + 0001:00086e39 __check_range_exit 10087e39 f libucrt:common.obj + 0001:00086ee0 __CIsqrt 10087ee0 f libucrt:sqrt_impl.obj + 0001:00086ef4 __sqrt_common 10087ef4 libucrt:sqrt_impl.obj + 0001:00086f91 __frnd 10087f91 f libucrt:frnd.obj + 0001:00087093 ___acrt_GetLocaleInfoA 10088093 f libucrt:getlocaleinfoa.obj + 0001:00087371 __itow_s 10088371 f libucrt:xtoa.obj + 0001:000873a4 ___ascii_wcsnicmp 100883a4 f libucrt:wcsnicmp.obj + 0001:000873f3 __wcsnicmp 100883f3 f libucrt:wcsnicmp.obj + 0001:0008743f __wcsnicmp_l 1008843f f libucrt:wcsnicmp.obj + 0001:00087512 __query_app_type 10088512 f libucrt:report_runtime_error.obj + 0001:00087518 ?__mbrtoc32_utf8@__crt_mbstring@@YAIPA_UPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10088518 f libucrt:mbrtoc32.obj + 0001:000876e8 ___dcrt_lowio_ensure_console_output_initialized 100886e8 f libucrt:initcon.obj + 0001:00087707 ___dcrt_terminate_console_output 10088707 f libucrt:initcon.obj + 0001:0008771e ___dcrt_write_console 1008871e f libucrt:initcon.obj + 0001:00087773 __controlfp_s 10088773 f libucrt:contrlfp.obj + 0001:000877d2 _fegetenv 100887d2 f libucrt:fegetenv.obj + 0001:000877ef _fesetenv 100887ef f libucrt:fesetenv.obj + 0001:0008783b _feholdexcept 1008883b f libucrt:feholdexcept.obj + 0001:00087890 __CIlog10 10088890 f libucrt:log10_impl.obj + 0001:000878cb __CIlog10_default 100888cb f libucrt:log10_impl.obj + 0001:000878df __log10_default 100888df libucrt:log10_impl.obj + 0001:000879a0 ?reset_and_return@__crt_mbstring@@YAIIPAU_Mbstatet@@@Z 100889a0 f libucrt:common_utf8.obj + 0001:000879b4 ?return_illegal_sequence@__crt_mbstring@@YAIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100889b4 f libucrt:common_utf8.obj + 0001:000879d6 __recalloc_base 100889d6 f libucrt:recalloc.obj + 0001:00087a43 __wcsnicoll 10088a43 f libucrt:wcsnicol.obj + 0001:00087ab0 __wcsnicoll_l 10088ab0 f libucrt:wcsnicol.obj + 0001:00087f31 ___dcrt_get_or_create_wide_environment_nolock 10088f31 f libucrt:environment_initialization.obj + 0001:00087f36 ___dcrt_uninitialize_environments_nolock 10088f36 f libucrt:environment_initialization.obj + 0001:00087f87 __initialize_narrow_environment 10088f87 f libucrt:environment_initialization.obj + 0001:00087f8c __towlower_l 10088f8c f libucrt:towlower.obj + 0001:00088060 __startTwoArgErrorHandling 10089060 f libucrt:genexcep.obj + 0001:00088077 __startOneArgErrorHandling 10089077 f libucrt:genexcep.obj + 0001:000880c0 __trandisp1 100890c0 f libucrt:87disp.obj + 0001:00088135 __trandisp2 10089135 f libucrt:87disp.obj + 0001:000881cf __rttospopde 100891cf libucrt:87disp.obj + 0001:000881d4 __rttospop 100891d4 libucrt:87disp.obj + 0001:000881e0 __rtnospop 100891e0 f libucrt:87disp.obj + 0001:000881f0 __rttosnpop 100891f0 f libucrt:87disp.obj + 0001:000881f1 __rtnospopde 100891f1 libucrt:87disp.obj + 0001:000881f8 __rtzeropop 100891f8 libucrt:87disp.obj + 0001:000881fa __rtzeronpop 100891fa libucrt:87disp.obj + 0001:00088200 __rtzerospop 10089200 f libucrt:87disp.obj + 0001:0008820d __rtonepop 1008920d libucrt:87disp.obj + 0001:00088210 __rtonenpop 10089210 f libucrt:87disp.obj + 0001:00088220 __tosnan1 10089220 f libucrt:87disp.obj + 0001:00088250 __nosnan2 10089250 f libucrt:87disp.obj + 0001:00088260 __tosnan2 10089260 f libucrt:87disp.obj + 0001:00088290 __nan2 10089290 f libucrt:87disp.obj + 0001:000882d0 __rtindfpop 100892d0 f libucrt:87disp.obj + 0001:000882d2 __rtindfnpop 100892d2 libucrt:87disp.obj + 0001:000882e3 __rttosnpopde 100892e3 libucrt:87disp.obj + 0001:000882f0 __rtatan2inf 100892f0 f libucrt:87disp.obj + 0001:0008830d __rtchsifneg 1008930d libucrt:87disp.obj + 0001:000883cb _strncpy_s 100893cb f libucrt:strncpy_s.obj + 0001:0008847d __clearfp 1008947d f libucrt:ieee87.obj + 0001:0008855b __control87 1008955b f libucrt:ieee87.obj + 0001:00088900 __CIlog10_pentium4 10089900 f libucrt:log10_pentium4.obj + 0001:00088918 __log10_pentium4 10089918 libucrt:log10_pentium4.obj + 0001:00088bb0 __fFEXP 10089bb0 f libucrt:87tran.obj + 0001:00088c07 __rtinfpopse 10089c07 libucrt:87tran.obj + 0001:00088c09 __rtinfnpopse 10089c09 libucrt:87tran.obj + 0001:00088c19 __fFLN 10089c19 libucrt:87tran.obj + 0001:00088cce __rtinfpop 10089cce libucrt:87tran.obj + 0001:00088cd0 __rtinfnpop 10089cd0 libucrt:87tran.obj + 0001:00088ce0 __rtforexpinf 10089ce0 f libucrt:87tran.obj + 0001:00088ced __ffexpm1 10089ced libucrt:87tran.obj + 0001:00088d96 __msize_base 10089d96 f libucrt:msize.obj + 0001:00088dc9 __realloc_base 10089dc9 f libucrt:realloc_base.obj + 0001:00088e32 ___acrt_CompareStringW 10089e32 f libucrt:comparestringw.obj + 0001:00088ece ___dcrt_get_narrow_environment_from_os 10089ece f libucrt:get_environment_from_os.obj + 0001:00088f6e ___dcrt_get_wide_environment_from_os 10089f6e f libucrt:get_environment_from_os.obj + 0001:00089377 ___dcrt_set_variable_in_wide_environment_nolock 1008a377 f libucrt:setenv.obj + 0001:00089382 ___acrt_LCMapStringW 1008a382 f libucrt:lcmapstringw.obj + 0001:000893c0 __87except 1008a3c0 f libucrt:87except.obj + 0001:000894d0 __d_inttype 1008a4d0 f libucrt:powhlp.obj + 0001:00089538 __powhlp 1008a538 f libucrt:powhlp.obj + 0001:00089906 _mbstowcs_s 1008a906 f libucrt:mbstowcs.obj + 0001:00089943 __fpclass 1008a943 f libucrt:ieeemisc.obj + 0001:000899e7 _CreateToolhelp32Snapshot@8 1008a9e7 f kernel32:KERNEL32.dll + 0001:000899ed _Thread32First@8 1008a9ed f kernel32:KERNEL32.dll + 0001:000899f3 _Thread32Next@8 1008a9f3 f kernel32:KERNEL32.dll + 0001:000899f9 ??0_Init_locks@std@@QAE@XZ 1008a9f9 f libcpmt:xlock.obj + 0001:00089a26 ??0_Lockit@std@@QAE@H@Z 1008aa26 f libcpmt:xlock.obj + 0001:00089a57 ??1_Init_locks@std@@QAE@XZ 1008aa57 f libcpmt:xlock.obj + 0001:00089a7e ??1_Lockit@std@@QAE@XZ 1008aa7e f libcpmt:xlock.obj + 0001:00089a9d ??0bad_function_call@std@@QAE@ABV01@@Z 1008aa9d f i libcpmt:xthrow.obj + 0001:00089ab8 ??0bad_function_call@std@@QAE@XZ 1008aab8 f i libcpmt:xthrow.obj + 0001:00089ac9 ??0invalid_argument@std@@QAE@ABV01@@Z 1008aac9 f i libcpmt:xthrow.obj + 0001:00089ae4 ??0invalid_argument@std@@QAE@PBD@Z 1008aae4 f i libcpmt:xthrow.obj + 0001:00089b03 ??0length_error@std@@QAE@ABV01@@Z 1008ab03 f i libcpmt:xthrow.obj + 0001:00089b1e ??0length_error@std@@QAE@PBD@Z 1008ab1e f i libcpmt:xthrow.obj + 0001:00089b3d ??0logic_error@std@@QAE@ABV01@@Z 1008ab3d f i libcpmt:xthrow.obj + 0001:00089b58 ??0out_of_range@std@@QAE@ABV01@@Z 1008ab58 f i libcpmt:xthrow.obj + 0001:00089b73 ??0out_of_range@std@@QAE@PBD@Z 1008ab73 f i libcpmt:xthrow.obj + 0001:00089b92 ??0runtime_error@std@@QAE@PBD@Z 1008ab92 f i libcpmt:xthrow.obj + 0001:00089bb1 ?_Xbad_alloc@std@@YAXXZ 1008abb1 f libcpmt:xthrow.obj + 0001:00089bb1 ?__scrt_throw_std_bad_alloc@@YAXXZ 1008abb1 f LIBCMT:throw_bad_alloc.obj + 0001:00089bce ?_Xbad_function_call@std@@YAXXZ 1008abce f libcpmt:xthrow.obj + 0001:00089beb ?_Xinvalid_argument@std@@YAXPBD@Z 1008abeb f libcpmt:xthrow.obj + 0001:00089c0b ?_Xlength_error@std@@YAXPBD@Z 1008ac0b f libcpmt:xthrow.obj + 0001:00089c2b ?_Xout_of_range@std@@YAXPBD@Z 1008ac2b f libcpmt:xthrow.obj + 0001:00089c4b ?_Xruntime_error@std@@YAXPBD@Z 1008ac4b f libcpmt:xthrow.obj + 0001:00089c6b ?what@bad_function_call@std@@UBEPBDXZ 1008ac6b f i libcpmt:xthrow.obj + 0001:00089c71 ?_Syserror_map@std@@YAPBDH@Z 1008ac71 f libcpmt:syserror.obj + 0001:00089c96 ??0_Locimp@locale@std@@AAE@_N@Z 1008ac96 f i libcpmt:locale0.obj + 0001:00089cd7 ??1_Fac_node@std@@QAE@XZ 1008acd7 f i libcpmt:locale0.obj + 0001:00089d08 ??1_Fac_tidy_reg_t@std@@QAE@XZ 1008ad08 f i libcpmt:locale0.obj + 0001:00089d2f ??1_Locimp@locale@std@@MAE@XZ 1008ad2f f i libcpmt:locale0.obj + 0001:00089d5a ??4?$_Yarn@D@std@@QAEAAV01@PBD@Z 1008ad5a f i libcpmt:locale0.obj + 0001:00089dae ??_E_Locimp@locale@std@@MAEPAXI@Z 1008adae f i libcpmt:locale0.obj + 0001:00089dae ??_G_Locimp@locale@std@@MAEPAXI@Z 1008adae f i libcpmt:locale0.obj + 0001:00089dd0 ?_Facet_Register@std@@YAXPAV_Facet_base@1@@Z 1008add0 f libcpmt:locale0.obj + 0001:00089dfc ?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ 1008adfc f libcpmt:locale0.obj + 0001:00089e02 ?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 1008ae02 f libcpmt:locale0.obj + 0001:00089e8f ?_Locimp_dtor@_Locimp@locale@std@@CAXPAV123@@Z 1008ae8f f libcpmt:locale0.obj + 0001:00089f00 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z 1008af00 f libcpmt:locale0.obj + 0001:00089f4b ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z 1008af4b f libcpmt:locale0.obj + 0001:00089f65 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@_N@Z 1008af65 f libcpmt:locale0.obj + 0001:00089f88 ?_Setgloballocale@locale@std@@CAXPAX@Z 1008af88 f libcpmt:locale0.obj + 0001:00089fb0 __Deletegloballocale 1008afb0 f libcpmt:locale0.obj + 0001:0008a015 __Getctype 1008b015 f libcpmt:_tolower.obj + 0001:0008a080 __Tolower 1008b080 f libcpmt:_tolower.obj + 0001:0008a18c __Toupper 1008b18c f libcpmt:_toupper.obj + 0001:0008a298 ?_Addstd@ios_base@std@@SAXPAV12@@Z 1008b298 f libcpmt:ios.obj + 0001:0008a2e4 ?_Callfns@ios_base@std@@AAEXW4event@12@@Z 1008b2e4 f i libcpmt:ios.obj + 0001:0008a317 ?_Ios_base_dtor@ios_base@std@@CAXPAV12@@Z 1008b317 f libcpmt:ios.obj + 0001:0008a357 ?_Tidy@ios_base@std@@AAEXXZ 1008b357 f i libcpmt:ios.obj + 0001:0008a3d2 ?uncaught_exception@std@@YA_NXZ 1008b3d2 f libcpmt:uncaught_exception.obj + 0001:0008a3d7 ___std_init_once_link_alternate_names_and_abort@0 1008b3d7 f libcpmt:xonce2.obj + 0001:0008a3dc __Query_perf_counter 1008b3dc f libcpmt:xtime.obj + 0001:0008a3f3 __Query_perf_frequency 1008b3f3 f libcpmt:xtime.obj + 0001:0008a430 __Xtime_get_ticks 1008b430 f libcpmt:xtime.obj + 0001:0008a457 __Getcvt 1008b457 f libcpmt:xwctomb.obj + 0001:0008a547 ?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z 1008b547 f libcpmt:fiopen.obj + 0001:0008a550 ?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z 1008b550 f libcpmt:iomanip.obj + 0001:0008a57e __Mtxdst 1008b57e f libcpmt:xmtx.obj + 0001:0008a58c __Mtxinit 1008b58c f libcpmt:xmtx.obj + 0001:0008a5a1 __Mtxlock 1008b5a1 f libcpmt:xmtx.obj + 0001:0008a5af __Mtxunlock 1008b5af f libcpmt:xmtx.obj + 0001:0008a5bd ??1_Init_atexit@@QAE@XZ 1008b5bd f i libcpmt:iosptrs.obj + 0001:0008a625 ?_Atexit@@YAXP6AXXZ@Z 1008b625 f libcpmt:iosptrs.obj + 0001:0008a654 ___crtLCMapStringA 1008b654 f libcpmt:StlLCMapStringA.obj + 0001:0008a865 ___crtGetSystemTimePreciseAsFileTime 1008b865 f libcpmt:winapisupp.obj + 0001:0008a8ba ??2@YAPAXI@Z 1008b8ba f LIBCMT:new_scalar.obj + 0001:0008a8ea ??3@YAXPAXI@Z 1008b8ea f LIBCMT:delete_scalar_size.obj + 0001:0008a8f8 ??_V@YAXPAX@Z 1008b8f8 f LIBCMT:delete_array.obj + 0001:0008a941 ___scrt_acquire_startup_lock 1008b941 f LIBCMT:utility.obj + 0001:0008a973 ___scrt_dllmain_after_initialize_c 1008b973 f LIBCMT:utility.obj + 0001:0008a99e ___scrt_dllmain_before_initialize_c 1008b99e f LIBCMT:utility.obj + 0001:0008a9ac ___scrt_dllmain_crt_thread_attach 1008b9ac f LIBCMT:utility.obj + 0001:0008a9cb ___scrt_dllmain_crt_thread_detach 1008b9cb f LIBCMT:utility.obj + 0001:0008a9d8 ___scrt_dllmain_exception_filter 1008b9d8 f LIBCMT:utility.obj + 0001:0008aa0c ___scrt_dllmain_uninitialize_c 1008ba0c f LIBCMT:utility.obj + 0001:0008aa2f ___scrt_dllmain_uninitialize_critical 1008ba2f f LIBCMT:utility.obj + 0001:0008aa3c ___scrt_initialize_crt 1008ba3c f LIBCMT:utility.obj + 0001:0008aa75 ___scrt_initialize_onexit_tables 1008ba75 f LIBCMT:utility.obj + 0001:0008aafc ___scrt_is_nonwritable_in_current_image 1008bafc f LIBCMT:utility.obj + 0001:0008ab90 ___scrt_release_startup_lock 1008bb90 f LIBCMT:utility.obj + 0001:0008abad ___scrt_uninitialize_crt 1008bbad f LIBCMT:utility.obj + 0001:0008abd5 __onexit 1008bbd5 f LIBCMT:utility.obj + 0001:0008ac02 _atexit 1008bc02 f LIBCMT:utility.obj + 0001:0008ac17 @__security_check_cookie@4 1008bc17 f LIBCMT:secchk.obj + 0001:0008ac25 ??_Etype_info@@UAEPAXI@Z 1008bc25 f i LIBCMT:std_type_info_static.obj + 0001:0008ac25 ??_Gtype_info@@UAEPAXI@Z 1008bc25 f i LIBCMT:std_type_info_static.obj + 0001:0008ac48 ??_U@YAPAXI@Z 1008bc48 f LIBCMT:new_array.obj + 0001:0008ac60 __allshl 1008bc60 f LIBCMT:llshl.obj + 0001:0008ac80 __aullshr 1008bc80 f LIBCMT:ullshr.obj + 0001:0008ac9f __Init_thread_abort 1008bc9f f LIBCMT:thread_safe_statics.obj + 0001:0008acca __Init_thread_footer 1008bcca f LIBCMT:thread_safe_statics.obj + 0001:0008ad1b __Init_thread_header 1008bd1b f LIBCMT:thread_safe_statics.obj + 0001:0008ad6a __Init_thread_wait_v2 1008bd6a f LIBCMT:thread_safe_statics.obj + 0001:0008ad80 __alldiv 1008bd80 f LIBCMT:lldiv.obj + 0001:0008ae30 __alldvrm 1008be30 f LIBCMT:lldvrm.obj + 0001:0008af10 __allmul 1008bf10 f LIBCMT:llmul.obj + 0001:0008af50 __allrem 1008bf50 f LIBCMT:llrem.obj + 0001:0008b002 ?__scrt_initialize_type_info@@YAXXZ 1008c002 f LIBCMT:tncleanup.obj + 0001:0008b00e ?__scrt_uninitialize_type_info@@YAXXZ 1008c00e f LIBCMT:tncleanup.obj + 0001:0008b020 __ftol3 1008c020 f LIBCMT:ftol3.obj + 0001:0008b090 __dtoul3 1008c090 f LIBCMT:ftol3.obj + 0001:0008b140 __dtoul3_legacy 1008c140 f LIBCMT:ftol3.obj + 0001:0008b170 __dtol3 1008c170 f LIBCMT:ftol3.obj + 0001:0008b220 __ultod3 1008c220 f LIBCMT:ftol3.obj + 0001:0008b270 __ltod3 1008c270 f LIBCMT:ftol3.obj + 0001:0008b5f2 __DllMainCRTStartup@12 1008c5f2 f LIBCMT:dll_dllmain.obj + 0001:0008b620 __SEH_prolog4 1008c620 f LIBCMT:sehprolg4.obj + 0001:0008b665 @_guard_check_icall@4 1008c665 f i LIBCMT:checkcfg.obj + 0001:0008b66b ___isa_available_init 1008c66b f LIBCMT:cpu_disp.obj + 0001:0008b9a0 __FindPESection 1008c9a0 f LIBCMT:pesect.obj + 0001:0008b9f0 __IsNonwritableInCurrentImage 1008c9f0 f LIBCMT:pesect.obj + 0001:0008bab0 __ValidateImageBase 1008cab0 f LIBCMT:pesect.obj + 0001:0008bae1 __EH_epilog3 1008cae1 f LIBCMT:ehprolg3.obj + 0001:0008baf5 __EH_prolog3 1008caf5 f LIBCMT:ehprolg3.obj + 0001:0008bb28 __EH_prolog3_catch 1008cb28 f LIBCMT:ehprolg3.obj + 0001:0008bb60 __aulldvrm 1008cb60 f LIBCMT:ulldvrm.obj + 0001:0008bbf5 ___scrt_fastfail 1008cbf5 f LIBCMT:utility_desktop.obj + 0001:0008bd0a __crt_debugger_hook 1008cd0a f LIBCMT:utility_desktop.obj + 0001:0008bd20 __aulldiv 1008cd20 f LIBCMT:ulldiv.obj + 0001:0008bd90 __aullrem 1008cd90 f LIBCMT:ullrem.obj + 0001:0008be05 ___raise_securityfailure 1008ce05 f LIBCMT:gs_report.obj + 0001:0008be2d ___report_gsfailure 1008ce2d f LIBCMT:gs_report.obj + 0001:0008bf28 ___report_rangecheckfailure 1008cf28 f LIBCMT:gs_report.obj + 0001:0008bf35 ___report_securityfailure 1008cf35 f LIBCMT:gs_report.obj + 0001:0008c010 __alloca_probe 1008d010 f LIBCMT:chkstk.obj + 0001:0008c010 __chkstk 1008d010 f LIBCMT:chkstk.obj + 0001:0008c040 __alloca_probe_16 1008d040 f LIBCMT:alloca16.obj + 0001:0008c056 __alloca_probe_8 1008d056 LIBCMT:alloca16.obj + 0001:0008c070 __ftol2_sse 1008d070 f LIBCMT:ftol2.obj + 0001:0008c080 __ftoi2 1008d080 f LIBCMT:ftol2.obj + 0001:0008c0fc ?__scrt_throw_std_bad_array_new_length@@YAXXZ 1008d0fc f LIBCMT:throw_bad_alloc.obj + 0001:0008c119 ___scrt_is_ucrt_dll_in_use 1008d119 f LIBCMT:ucrt_detection.obj + 0001:0008c172 ___security_init_cookie 1008d172 f LIBCMT:gs_support.obj + 0001:0008c1bd _DllMain@12 1008d1bd f LIBCMT:dll_dllmain_stub.obj + 0001:0008c1c3 ___local_stdio_scanf_options 1008d1c3 f i LIBCMT:default_local_stdio_options.obj + 0001:0008c1c9 ___scrt_initialize_default_local_stdio_options 1008d1c9 f LIBCMT:default_local_stdio_options.obj + 0001:0008c1e6 ___scrt_get_dyn_tls_init_callback 1008d1e6 f LIBCMT:dyn_tls_init.obj + 0001:0008c1ec __RTC_Initialize 1008d1ec f LIBCMT:initsect.obj + 0001:0008c218 __RTC_Terminate 1008d218 f LIBCMT:initsect.obj + 0001:0008c244 _CryptProtectData@28 1008d244 f Crypt32:CRYPT32.dll + 0001:0008c24a _CryptUnprotectData@28 1008d24a f Crypt32:CRYPT32.dll + 0001:0008c250 _memcmp 1008d250 f libvcruntime:memcmp.obj + 0001:0008d8d8 _wcschr 1008e8d8 f libvcruntime:wcschr.obj + 0001:0008d979 ___uncaught_exception 1008e979 f libvcruntime:uncaught_exception.obj + 0001:0008d98d ___vcrt_initialize 1008e98d f libvcruntime:initialization.obj + 0001:0008d9ac ___vcrt_thread_attach 1008e9ac f libvcruntime:initialization.obj + 0001:0008d9b7 ___vcrt_thread_detach 1008e9b7 f libvcruntime:initialization.obj + 0001:0008d9bf ___vcrt_uninitialize 1008e9bf f libvcruntime:initialization.obj + 0001:0008d9d6 ___vcrt_uninitialize_critical 1008e9d6 f libvcruntime:initialization.obj + 0001:0008dc33 _setlocale 1008ec33 f libucrt:setlocale.obj + 0001:0008dc6b __wcsdup 1008ec6b f libucrt:wcsdup.obj + 0001:0008dd81 __fsopen 1008ed81 f libucrt:fopen.obj + 0001:0008e03d ___acrt_allocate_buffer_for_argv 1008f03d f libucrt:argv_parsing.obj + 0001:0008e08c __configure_narrow_argv 1008f08c f libucrt:argv_parsing.obj + 0001:0008e192 ___acrt_initialize 1008f192 f libucrt:initialization.obj + 0001:0008e1a4 ___acrt_thread_attach 1008f1a4 f libucrt:initialization.obj + 0001:0008e1af ___acrt_thread_detach 1008f1af f libucrt:initialization.obj + 0001:0008e1b7 ___acrt_uninitialize 1008f1b7 f libucrt:initialization.obj + 0001:0008e1e7 ___acrt_uninitialize_critical 1008f1e7 f libucrt:initialization.obj + 0001:0008e575 __wcstombs_s_l 1008f575 f libucrt:wcstombs.obj + 0001:0008e5b3 ??$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z 1008f5b3 f i libucrt:openfile.obj + 0001:0008e860 ?__acrt_stdio_parse_mode_D@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008f860 f i libucrt:openfile.obj + 0001:0008e87b ?__acrt_stdio_parse_mode_T@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008f87b f i libucrt:openfile.obj + 0001:0008e89a ?__acrt_stdio_parse_mode_b@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008f89a f i libucrt:openfile.obj + 0001:0008e8ba ?__acrt_stdio_parse_mode_c@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1008f8ba f i libucrt:openfile.obj + 0001:0008e8dc ?__acrt_stdio_parse_mode_n@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1008f8dc f i libucrt:openfile.obj + 0001:0008e8fe ?__acrt_stdio_parse_mode_plus@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1008f8fe f i libucrt:openfile.obj + 0001:0008e934 ?__acrt_stdio_parse_mode_t@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008f934 f i libucrt:openfile.obj + 0001:0008e954 ?__acrt_stdio_parse_mode_x@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1008f954 f i libucrt:openfile.obj + 0001:0008e974 __openfile 1008f974 f libucrt:openfile.obj + 0001:0008e997 ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 1008f997 f i libucrt:argv_wildcards.obj + 0001:0008ef35 ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 1008ff35 f i libucrt:argv_wildcards.obj + 0001:0008eff8 ___acrt_expand_narrow_argv_wildcards 1008fff8 f libucrt:argv_wildcards.obj + 0001:0008f003 ___acrt_GetModuleFileNameA 10090003 f libucrt:getmodulefilenamea.obj + 0001:0008f0f4 __ismbblead 100900f4 f libucrt:ismbbyte.obj + 0001:0008f10c ___acrt_initialize_command_line 1009010c f libucrt:argv_data.obj + 0001:0008f125 ___acrt_execute_initializers 10090125 f libucrt:shared_initialization.obj + 0001:0008f18d ___acrt_execute_uninitializers 1009018d f libucrt:shared_initialization.obj + 0001:0008f1be ?__wcsrtombs_utf8@__crt_mbstring@@YAIPADPAPB_WIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100901be f libucrt:wcrtomb.obj + 0001:0008f8b7 __sopen_nolock 100908b7 f libucrt:open.obj + 0001:0008f925 __sopen_s 10090925 f libucrt:open.obj + 0001:0008f945 __wsopen_nolock 10090945 f libucrt:open.obj + 0001:0008fc70 _qsort 10090c70 f libucrt:qsort.obj + 0001:0009015e __mbsdec 1009115e f libucrt:mbsdec.obj + 0001:00090175 __mbsdec_l 10091175 f libucrt:mbsdec.obj + 0001:00090202 ?__c16rtomb_utf8@__crt_mbstring@@YAIPAD_SPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10091202 f libucrt:c16rtomb.obj + 0001:000902ac __get_fmode 100912ac f libucrt:setmode.obj + 0001:000902d9 __setmode_nolock 100912d9 f libucrt:setmode.obj + 0001:000903a8 ??0__crt_seek_guard@@QAE@H_J@Z 100913a8 f i libucrt:chsize.obj + 0001:000903f5 __chsize_nolock 100913f5 f libucrt:chsize.obj + 0001:0009042c __chsize_nolock_internal 1009142c f libucrt:chsize.obj + 0001:000905c3 ___acrt_initialize_fmode 100915c3 f libucrt:txtmode.obj + 0001:000905d9 __filter_x86_sse2_floating_point_exception 100915d9 f LIBCMT:x86_exception_filter.obj + 0001:000905d9 __filter_x86_sse2_floating_point_exception_default 100915d9 f LIBCMT:x86_exception_filter.obj + 0002:00000000 __imp__CryptProtectData@28 10099000 Crypt32:CRYPT32.dll + 0002:00000004 __imp__CryptBinaryToStringA@20 10099004 Crypt32:CRYPT32.dll + 0002:00000008 __imp__CryptStringToBinaryA@28 10099008 Crypt32:CRYPT32.dll + 0002:0000000c __imp__CryptUnprotectData@28 1009900c Crypt32:CRYPT32.dll + 0002:00000010 \177CRYPT32_NULL_THUNK_DATA 10099010 Crypt32:CRYPT32.dll + 0002:00000014 __imp__OutputDebugStringA@4 10099014 kernel32:KERNEL32.dll + 0002:00000018 __imp__CloseHandle@4 10099018 kernel32:KERNEL32.dll + 0002:0000001c __imp__DuplicateHandle@28 1009901c kernel32:KERNEL32.dll + 0002:00000020 __imp__GetLastError@0 10099020 kernel32:KERNEL32.dll + 0002:00000024 __imp__Sleep@4 10099024 kernel32:KERNEL32.dll + 0002:00000028 __imp__GetCurrentProcess@0 10099028 kernel32:KERNEL32.dll + 0002:0000002c __imp__GetCurrentProcessId@0 1009902c kernel32:KERNEL32.dll + 0002:00000030 __imp__GetCurrentThread@0 10099030 kernel32:KERNEL32.dll + 0002:00000034 __imp__GetCurrentThreadId@0 10099034 kernel32:KERNEL32.dll + 0002:00000038 __imp__OpenThread@12 10099038 kernel32:KERNEL32.dll + 0002:0000003c __imp__SuspendThread@4 1009903c kernel32:KERNEL32.dll + 0002:00000040 __imp__ResumeThread@4 10099040 kernel32:KERNEL32.dll + 0002:00000044 __imp__GetProcessIdOfThread@4 10099044 kernel32:KERNEL32.dll + 0002:00000048 __imp__GetThreadContext@8 10099048 kernel32:KERNEL32.dll + 0002:0000004c __imp__FlushInstructionCache@12 1009904c kernel32:KERNEL32.dll + 0002:00000050 __imp__OpenProcess@12 10099050 kernel32:KERNEL32.dll + 0002:00000054 __imp__GetSystemInfo@4 10099054 kernel32:KERNEL32.dll + 0002:00000058 __imp__VirtualQuery@12 10099058 kernel32:KERNEL32.dll + 0002:0000005c __imp__VirtualAllocEx@20 1009905c kernel32:KERNEL32.dll + 0002:00000060 __imp__VirtualProtectEx@20 10099060 kernel32:KERNEL32.dll + 0002:00000064 __imp__VirtualQueryEx@16 10099064 kernel32:KERNEL32.dll + 0002:00000068 __imp__ReadProcessMemory@20 10099068 kernel32:KERNEL32.dll + 0002:0000006c __imp__WriteProcessMemory@20 1009906c kernel32:KERNEL32.dll + 0002:00000070 __imp__VirtualFreeEx@16 10099070 kernel32:KERNEL32.dll + 0002:00000074 __imp__IsWow64Process@8 10099074 kernel32:KERNEL32.dll + 0002:00000078 __imp__CreateToolhelp32Snapshot@8 10099078 kernel32:KERNEL32.dll + 0002:0000007c __imp__Thread32First@8 1009907c kernel32:KERNEL32.dll + 0002:00000080 __imp__Thread32Next@8 10099080 kernel32:KERNEL32.dll + 0002:00000084 __imp__GetEnvironmentVariableA@12 10099084 kernel32:KERNEL32.dll + 0002:00000088 __imp__GetFullPathNameA@16 10099088 kernel32:KERNEL32.dll + 0002:0000008c __imp__LocalFree@4 1009908c kernel32:KERNEL32.dll + 0002:00000090 __imp__RaiseException@16 10099090 kernel32:KERNEL32.dll + 0002:00000094 __imp__RtlUnwind@16 10099094 kernel32:KERNEL32.dll + 0002:00000098 __imp__InterlockedPushEntrySList@8 10099098 kernel32:KERNEL32.dll + 0002:0000009c __imp__InterlockedFlushSList@4 1009909c kernel32:KERNEL32.dll + 0002:000000a0 __imp__SetLastError@4 100990a0 kernel32:KERNEL32.dll + 0002:000000a4 __imp__EncodePointer@4 100990a4 kernel32:KERNEL32.dll + 0002:000000a8 __imp__InitializeCriticalSectionAndSpinCount@8 100990a8 kernel32:KERNEL32.dll + 0002:000000ac __imp__TlsAlloc@0 100990ac kernel32:KERNEL32.dll + 0002:000000b0 __imp__TlsGetValue@4 100990b0 kernel32:KERNEL32.dll + 0002:000000b4 __imp__TlsSetValue@8 100990b4 kernel32:KERNEL32.dll + 0002:000000b8 __imp__TlsFree@4 100990b8 kernel32:KERNEL32.dll + 0002:000000bc __imp__FreeLibrary@4 100990bc kernel32:KERNEL32.dll + 0002:000000c0 __imp__GetProcAddress@8 100990c0 kernel32:KERNEL32.dll + 0002:000000c4 __imp__LoadLibraryExW@12 100990c4 kernel32:KERNEL32.dll + 0002:000000c8 __imp__EnterCriticalSection@4 100990c8 kernel32:KERNEL32.dll + 0002:000000cc __imp__LeaveCriticalSection@4 100990cc kernel32:KERNEL32.dll + 0002:000000d0 __imp__DeleteCriticalSection@4 100990d0 kernel32:KERNEL32.dll + 0002:000000d4 __imp__IsDebuggerPresent@0 100990d4 kernel32:KERNEL32.dll + 0002:000000d8 __imp__UnhandledExceptionFilter@4 100990d8 kernel32:KERNEL32.dll + 0002:000000dc __imp__SetUnhandledExceptionFilter@4 100990dc kernel32:KERNEL32.dll + 0002:000000e0 __imp__SetFileAttributesA@8 100990e0 kernel32:KERNEL32.dll + 0002:000000e4 __imp__IsProcessorFeaturePresent@4 100990e4 kernel32:KERNEL32.dll + 0002:000000e8 __imp__HeapAlloc@12 100990e8 kernel32:KERNEL32.dll + 0002:000000ec __imp__HeapFree@12 100990ec kernel32:KERNEL32.dll + 0002:000000f0 __imp__GetSystemTimeAsFileTime@4 100990f0 kernel32:KERNEL32.dll + 0002:000000f4 __imp__GetDateFormatW@24 100990f4 kernel32:KERNEL32.dll + 0002:000000f8 __imp__GetTimeFormatW@24 100990f8 kernel32:KERNEL32.dll + 0002:000000fc __imp__CompareStringW@24 100990fc kernel32:KERNEL32.dll + 0002:00000100 __imp__LCMapStringW@24 10099100 kernel32:KERNEL32.dll + 0002:00000104 __imp__GetLocaleInfoW@16 10099104 kernel32:KERNEL32.dll + 0002:00000108 __imp__IsValidLocale@8 10099108 kernel32:KERNEL32.dll + 0002:0000010c __imp__GetUserDefaultLCID@0 1009910c kernel32:KERNEL32.dll + 0002:00000110 __imp__EnumSystemLocalesW@8 10099110 kernel32:KERNEL32.dll + 0002:00000114 __imp__GetStdHandle@4 10099114 kernel32:KERNEL32.dll + 0002:00000118 __imp__GetFileType@4 10099118 kernel32:KERNEL32.dll + 0002:0000011c __imp__GetStartupInfoW@4 1009911c kernel32:KERNEL32.dll + 0002:00000120 __imp__FlushFileBuffers@4 10099120 kernel32:KERNEL32.dll + 0002:00000124 __imp__WriteFile@20 10099124 kernel32:KERNEL32.dll + 0002:00000128 __imp__GetConsoleOutputCP@0 10099128 kernel32:KERNEL32.dll + 0002:0000012c __imp__GetConsoleMode@8 1009912c kernel32:KERNEL32.dll + 0002:00000130 __imp__ReadFile@20 10099130 kernel32:KERNEL32.dll + 0002:00000134 __imp__GetFileSizeEx@8 10099134 kernel32:KERNEL32.dll + 0002:00000138 __imp__SetFilePointerEx@20 10099138 kernel32:KERNEL32.dll + 0002:0000013c __imp__ReadConsoleW@20 1009913c kernel32:KERNEL32.dll + 0002:00000140 __imp__MultiByteToWideChar@24 10099140 kernel32:KERNEL32.dll + 0002:00000144 __imp__MoveFileExW@12 10099144 kernel32:KERNEL32.dll + 0002:00000148 __imp__ExitProcess@4 10099148 kernel32:KERNEL32.dll + 0002:0000014c __imp__GetModuleHandleW@4 1009914c kernel32:KERNEL32.dll + 0002:00000150 __imp__GetModuleHandleExW@12 10099150 kernel32:KERNEL32.dll + 0002:00000154 __imp__GetTimeZoneInformation@4 10099154 kernel32:KERNEL32.dll + 0002:00000158 __imp__WideCharToMultiByte@32 10099158 kernel32:KERNEL32.dll + 0002:0000015c __imp__DecodePointer@4 1009915c kernel32:KERNEL32.dll + 0002:00000160 __imp__IsValidCodePage@4 10099160 kernel32:KERNEL32.dll + 0002:00000164 __imp__GetACP@0 10099164 kernel32:KERNEL32.dll + 0002:00000168 __imp__GetOEMCP@0 10099168 kernel32:KERNEL32.dll + 0002:0000016c __imp__GetCPInfo@8 1009916c kernel32:KERNEL32.dll + 0002:00000170 __imp__GetStringTypeW@16 10099170 kernel32:KERNEL32.dll + 0002:00000174 __imp__GetProcessHeap@0 10099174 kernel32:KERNEL32.dll + 0002:00000178 __imp__SetStdHandle@8 10099178 kernel32:KERNEL32.dll + 0002:0000017c __imp__GetModuleFileNameW@12 1009917c kernel32:KERNEL32.dll + 0002:00000180 __imp__CreateFileW@28 10099180 kernel32:KERNEL32.dll + 0002:00000184 __imp__WriteConsoleW@20 10099184 kernel32:KERNEL32.dll + 0002:00000188 __imp__HeapSize@12 10099188 kernel32:KERNEL32.dll + 0002:0000018c __imp__HeapReAlloc@16 1009918c kernel32:KERNEL32.dll + 0002:00000190 __imp__GetEnvironmentStringsW@0 10099190 kernel32:KERNEL32.dll + 0002:00000194 __imp__FreeEnvironmentStringsW@4 10099194 kernel32:KERNEL32.dll + 0002:00000198 __imp__SetEnvironmentVariableW@8 10099198 kernel32:KERNEL32.dll + 0002:0000019c __imp__GetCommandLineW@0 1009919c kernel32:KERNEL32.dll + 0002:000001a0 __imp__GetCommandLineA@0 100991a0 kernel32:KERNEL32.dll + 0002:000001a4 __imp__FindNextFileW@8 100991a4 kernel32:KERNEL32.dll + 0002:000001a8 __imp__GetFileAttributesA@4 100991a8 kernel32:KERNEL32.dll + 0002:000001ac __imp__DeleteFileA@4 100991ac kernel32:KERNEL32.dll + 0002:000001b0 __imp__CreateFileA@28 100991b0 kernel32:KERNEL32.dll + 0002:000001b4 __imp__TerminateProcess@8 100991b4 kernel32:KERNEL32.dll + 0002:000001b8 __imp__CreateDirectoryA@8 100991b8 kernel32:KERNEL32.dll + 0002:000001bc __imp__InitOnceBeginInitialize@16 100991bc kernel32:KERNEL32.dll + 0002:000001bc __imp____std_init_once_begin_initialize@16 100991bc kernel32:KERNEL32.dll + 0002:000001c0 __imp__InitOnceComplete@12 100991c0 kernel32:KERNEL32.dll + 0002:000001c0 __imp____std_init_once_complete@12 100991c0 kernel32:KERNEL32.dll + 0002:000001c4 __imp__QueryPerformanceCounter@4 100991c4 kernel32:KERNEL32.dll + 0002:000001c8 __imp__QueryPerformanceFrequency@4 100991c8 kernel32:KERNEL32.dll + 0002:000001cc __imp__InitializeCriticalSectionEx@12 100991cc kernel32:KERNEL32.dll + 0002:000001d0 __imp__LCMapStringEx@36 100991d0 kernel32:KERNEL32.dll + 0002:000001d4 __imp__ReleaseSRWLockExclusive@4 100991d4 kernel32:KERNEL32.dll + 0002:000001d8 __imp__AcquireSRWLockExclusive@4 100991d8 kernel32:KERNEL32.dll + 0002:000001dc __imp__WakeAllConditionVariable@4 100991dc kernel32:KERNEL32.dll + 0002:000001e0 __imp__SleepConditionVariableSRW@16 100991e0 kernel32:KERNEL32.dll + 0002:000001e4 __imp__InitializeSListHead@4 100991e4 kernel32:KERNEL32.dll + 0002:000001e8 __imp__FindClose@4 100991e8 kernel32:KERNEL32.dll + 0002:000001ec __imp__FindFirstFileExW@24 100991ec kernel32:KERNEL32.dll + 0002:000001f0 __imp__SetEndOfFile@4 100991f0 kernel32:KERNEL32.dll + 0002:000001f4 \177KERNEL32_NULL_THUNK_DATA 100991f4 kernel32:KERNEL32.dll + 0002:000001f8 __imp__MessageBoxA@16 100991f8 user32:USER32.dll + 0002:000001fc \177USER32_NULL_THUNK_DATA 100991fc user32:USER32.dll + 0002:00000200 ___guard_check_icall_fptr 10099200 libucrt:guard_support.obj + 0002:00000204 ___castguard_check_failure_os_handled_fptr 10099204 libucrt:guard_support.obj + 0002:00000208 ___xc_a 10099208 LIBCMT:initializers.obj + 0002:00000370 ___xc_z 10099370 LIBCMT:initializers.obj + 0002:00000374 ___xi_a 10099374 LIBCMT:initializers.obj + 0002:00000378 ___acrt_stdio_initializer 10099378 libucrt:stdio_initializer.obj + 0002:0000037c ___acrt_timeset_initializer 1009937c libucrt:timeset_initializer.obj + 0002:00000380 ___acrt_tran_sse2_initializer 10099380 libucrt:sse2_initializer.obj + 0002:00000384 ___acrt_multibyte_initializer 10099384 libucrt:multibyte_initializer.obj + 0002:0000038c ___acrt_fmode_initializer 1009938c libucrt:fmode_initializer.obj + 0002:00000390 ___xi_z 10099390 LIBCMT:initializers.obj + 0002:00000394 ___xl_a 10099394 LIBCMT:tlssup.obj + 0002:00000398 ___xl_z 10099398 LIBCMT:tlssup.obj + 0002:0000039c ___xp_a 1009939c LIBCMT:initializers.obj + 0002:000003a0 ___acrt_locale_terminator 100993a0 libucrt:locale_initializer.obj + 0002:000003a4 ___dcrt_console_output_terminator 100993a4 libucrt:console_output_initializer.obj + 0002:000003a8 ___acrt_stdio_terminator 100993a8 libucrt:stdio_initializer.obj + 0002:000003ac ___xp_z 100993ac LIBCMT:initializers.obj + 0002:000003b0 ___xt_a 100993b0 LIBCMT:initializers.obj + 0002:000003b4 ___xt_z 100993b4 LIBCMT:initializers.obj + 0002:000003c8 ??_7exception@std@@6B@ 100993c8 logging.cpp.obj + 0002:000003d0 ??_C@_0BC@EOODALEL@Unknown?5exception@ 100993d0 logging.cpp.obj + 0002:000003e8 ??_7bad_alloc@std@@6B@ 100993e8 logging.cpp.obj + 0002:000003f4 ??_7bad_array_new_length@std@@6B@ 100993f4 logging.cpp.obj + 0002:000003fc ??_C@_0BF@KINCDENJ@bad?5array?5new?5length@ 100993fc logging.cpp.obj + 0002:00000414 ??_C@_0BA@JFNIOLAK@string?5too?5long@ 10099414 logging.cpp.obj + 0002:00000428 ??_7runtime_error@std@@6B@ 10099428 logging.cpp.obj + 0002:00000434 ??_7_System_error@std@@6B@ 10099434 logging.cpp.obj + 0002:0000043c ??_C@_02LMMGGCAJ@?3?5@ 1009943c logging.cpp.obj + 0002:00000444 ??_7system_error@std@@6B@ 10099444 logging.cpp.obj + 0002:00000450 ??_7_Iostream_error_category2@std@@6B@ 10099450 logging.cpp.obj + 0002:00000468 ??_C@_08LLGCOLLL@iostream@ 10099468 logging.cpp.obj + 0002:00000474 ?_Iostream_error@?4??message@_Iostream_error_category2@std@@UBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@H@Z@4QBDB 10099474 logging.cpp.obj + 0002:00000490 ??_7bad_cast@std@@6B@ 10099490 logging.cpp.obj + 0002:00000498 ??_C@_08EPJLHIJG@bad?5cast@ 10099498 logging.cpp.obj + 0002:000004a8 ??_7_Facet_base@std@@6B@ 100994a8 logging.cpp.obj + 0002:000004b4 ??_C@_0BA@ELKIONDK@bad?5locale?5name@ 100994b4 logging.cpp.obj + 0002:000004c4 ??_C@_00CNPNBAHC@@ 100994c4 logging.cpp.obj + 0002:000004cc ??_7?$ctype@D@std@@6B@ 100994cc logging.cpp.obj + 0002:000004fc ??_7failure@ios_base@std@@6B@ 100994fc logging.cpp.obj + 0002:00000508 ??_7ios_base@std@@6B@ 10099508 logging.cpp.obj + 0002:0000050c ??_C@_0BF@PHHKMMFD@ios_base?3?3badbit?5set@ 1009950c logging.cpp.obj + 0002:00000524 ??_C@_0BG@FMKFHCIL@ios_base?3?3failbit?5set@ 10099524 logging.cpp.obj + 0002:0000053c ??_C@_0BF@OOHOMBOF@ios_base?3?3eofbit?5set@ 1009953c logging.cpp.obj + 0002:00000558 ??_7?$basic_ios@DU?$char_traits@D@std@@@std@@6B@ 10099558 logging.cpp.obj + 0002:00000560 ??_7?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@ 10099560 logging.cpp.obj + 0002:00000564 ??_8?$basic_ostream@DU?$char_traits@D@std@@@std@@7B@ 10099564 logging.cpp.obj + 0002:00000570 ??_7?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@ 10099570 logging.cpp.obj + 0002:000005b0 ??_7?$basic_filebuf@DU?$char_traits@D@std@@@std@@6B@ 100995b0 logging.cpp.obj + 0002:000005f0 ??_7?$basic_ofstream@DU?$char_traits@D@std@@@std@@6B@ 100995f0 logging.cpp.obj + 0002:000005f4 ??_8?$basic_ofstream@DU?$char_traits@D@std@@@std@@7B@ 100995f4 logging.cpp.obj + 0002:00000600 ??_7?$codecvt@DDU_Mbstatet@@@std@@6B@ 10099600 logging.cpp.obj + 0002:00000628 ??_C@_0BI@CFPLBAOH@invalid?5string?5position@ 10099628 logging.cpp.obj + 0002:00000648 ??_7bad_exception@std@@6B@ 10099648 main.cpp.obj + 0002:00000650 ??_C@_0O@DPKOEFFH@bad?5exception@ 10099650 main.cpp.obj + 0002:00000660 ??_C@_0P@GHFPNOJB@bad?5allocation@ 10099660 main.cpp.obj + 0002:00000670 ??_C@_05LAPONLG@false@ 10099670 main.cpp.obj + 0002:00000678 ??_C@_04LOAJBDKD@true@ 10099678 main.cpp.obj + 0002:00000680 ??_C@_0BG@OFLLLHIE@invalid?5stof?5argument@ 10099680 main.cpp.obj + 0002:00000698 ??_C@_0BL@CGEIMNKL@stof?5argument?5out?5of?5range@ 10099698 main.cpp.obj + 0002:000006b4 ??_C@_02NJPGOMH@?$CFf@ 100996b4 main.cpp.obj + 0002:000006b8 ??_C@_0BB@GCADKGJO@map?1set?5too?5long@ 100996b8 main.cpp.obj + 0002:000006d0 ??_7error_info_container@exception_detail@boost@@6B@ 100996d0 main.cpp.obj + 0002:000006ec ??_7exception@boost@@6B@ 100996ec main.cpp.obj + 0002:000006f4 ??_7clone_base@exception_detail@boost@@6B@ 100996f4 main.cpp.obj + 0002:00000704 ??_7error_info_base@exception_detail@boost@@6B@ 10099704 main.cpp.obj + 0002:00000714 ??_7sp_counted_base@detail@boost@@6B@ 10099714 main.cpp.obj + 0002:00000730 ??_7error_info_container_impl@exception_detail@boost@@6B@ 10099730 main.cpp.obj + 0002:0000074c ??_7?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 1009974c main.cpp.obj + 0002:0000078c ??_7?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 1009978c main.cpp.obj + 0002:00000790 ??_8?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B@ 10099790 main.cpp.obj + 0002:00000798 ??_C@_0CF@CFFMGBAP@No?5diagnostic?5information?5avail@ 10099798 main.cpp.obj + 0002:000007c0 ??_C@_0BD@OKEHHCDP@Unknown?5exception?4@ 100997c0 main.cpp.obj + 0002:000007d4 ??_C@_0DP@GHFCDMCB@Throw?5location?5unknown?5?$CIconside@ 100997d4 main.cpp.obj + 0002:00000814 ??_C@_03LPPJIELD@?$CJ?3?5@ 10099814 main.cpp.obj + 0002:00000818 ??_C@_0BD@FCCHBKHG@Throw?5in?5function?5@ 10099818 main.cpp.obj + 0002:0000082c ??_C@_09GPGAJHPD@?$CIunknown?$CJ@ 1009982c main.cpp.obj + 0002:00000838 ??_C@_0BJ@GCNBPHBB@Dynamic?5exception?5type?3?5@ 10099838 main.cpp.obj + 0002:00000854 ??_C@_06OJHGLDPL@?$CInull?$CJ@ 10099854 main.cpp.obj + 0002:0000085c ??_C@_0BH@IJDPHMMC@std?3?3exception?3?3what?3?5@ 1009985c main.cpp.obj + 0002:00000874 ??_C@_04OAFLPOMH@?$FN?5?$DN?5@ 10099874 main.cpp.obj + 0002:00000880 ??_7bad_alloc_@exception_detail@boost@@6Bexception@2@@ 10099880 main.cpp.obj + 0002:00000888 ??_7bad_alloc_@exception_detail@boost@@6Bbad_alloc@std@@@ 10099888 main.cpp.obj + 0002:00000894 ??_7bad_exception_@exception_detail@boost@@6Bexception@2@@ 10099894 main.cpp.obj + 0002:0000089c ??_7bad_exception_@exception_detail@boost@@6Bbad_exception@std@@@ 1009989c main.cpp.obj + 0002:000008a8 ??_7Error@hadesmem@@6Bexception@std@@@ 100998a8 main.cpp.obj + 0002:000008b4 ??_7Error@hadesmem@@6Bexception@boost@@@ 100998b4 main.cpp.obj + 0002:000008b8 ??_8Error@hadesmem@@7B@ 100998b8 main.cpp.obj + 0002:000008c8 ??_7?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@6B@ 100998c8 main.cpp.obj + 0002:000008d8 ??_7?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@6B@ 100998d8 main.cpp.obj + 0002:000008e4 ??_C@_0O@LHJCBCAJ@?$FL?$CFlu?$FN?5?$CFs?3?5?$CFs?6@ 100998e4 main.cpp.obj + 0002:000008f4 ??_C@_0P@DMJNBGBJ@IsWoW64Process@ 100998f4 main.cpp.obj + 0002:00000908 ??_C@_0FC@HMKIBJE@C?3?2software?2hadesmem?9v142?9Relea@ 10099908 main.cpp.obj + 0002:0000095c ??_C@_0BH@CAHPBGBP@IsWoW64Process?5failed?4@ 1009995c main.cpp.obj + 0002:00000974 ??_C@_0M@MMCMKPDL@OpenProcess@ 10099974 main.cpp.obj + 0002:00000980 ??_C@_0BE@LHGDOJMK@OpenProcess?5failed?4@ 10099980 main.cpp.obj + 0002:00000994 ??_C@_0L@EHKLHJ@OpenThread@ 10099994 main.cpp.obj + 0002:000009a0 ??_C@_0BD@GGECPCAK@OpenThread?5failed?4@ 100999a0 main.cpp.obj + 0002:000009b4 ??_C@_0BA@KKBHKMMH@DuplicateHandle@ 100999b4 main.cpp.obj + 0002:000009c4 ??_C@_0BI@FGIAIHNB@DuplicateHandle?5failed?4@ 100999c4 main.cpp.obj + 0002:000009dc ??_C@_0L@BPDMILMI@CheckWoW64@ 100999dc main.cpp.obj + 0002:000009e8 ??_C@_0EM@FPGLKILF@C?3?2software?2hadesmem?9v142?9Relea@ 100999e8 main.cpp.obj + 0002:00000a34 ??_C@_0CN@CIONBDMF@x86?5?9?$DO?5x64?5process?5modification@ 10099a34 main.cpp.obj + 0002:00000a64 ??_C@_02DKCKIIND@?$CFs@ 10099a64 main.cpp.obj + 0002:00000a68 ??_C@_0CE@NLAKHOBH@hadesmem?3?3Process?3?3CleanupUnche@ 10099a68 main.cpp.obj + 0002:00000a8c ??_C@_05KKFAOBBL@Alloc@ 10099a8c main.cpp.obj + 0002:00000a98 ??_C@_0EK@ILAEBCGD@C?3?2software?2hadesmem?9v142?9Relea@ 10099a98 main.cpp.obj + 0002:00000ae4 ??_C@_0BH@PKAGPCAJ@VirtualAllocEx?5failed?4@ 10099ae4 main.cpp.obj + 0002:00000afc ??_C@_04HJMOFLDF@Free@ 10099afc main.cpp.obj + 0002:00000b04 ??_C@_0BG@MMIHDGBH@VirtualFreeEx?5failed?4@ 10099b04 main.cpp.obj + 0002:00000b1c ??_C@_0CD@GFAOAFIL@hadesmem?3?3Allocator?3?3FreeUnchec@ 10099b1c main.cpp.obj + 0002:00000b40 ??_C@_0CD@LNPEPGDL@hadesmem?3?3Thread?3?3CleanupUnchec@ 10099b40 main.cpp.obj + 0002:00000b64 ??_C@_0BJ@JEFKDHMD@CreateToolhelp32Snapshot@ 10099b64 main.cpp.obj + 0002:00000b80 ??_C@_0FE@PMPDGIMA@C?3?2software?2hadesmem?9v142?9Relea@ 10099b80 main.cpp.obj + 0002:00000bd4 ??_C@_0CB@JCNCLELI@CreateToolhelp32Snapshot?5failed@ 10099bd4 main.cpp.obj + 0002:00000bf8 ??_C@_0BG@CIDIKHKO@Thread32First?5failed?4@ 10099bf8 main.cpp.obj + 0002:00000c10 ??_C@_0BF@OOLHIKFH@Thread32Next?5failed?4@ 10099c10 main.cpp.obj + 0002:00000c28 ??_C@_0BB@MBPKHMON@GetThreadContext@ 10099c28 main.cpp.obj + 0002:00000c40 ??_C@_0FD@GFMGBNPP@C?3?2software?2hadesmem?9v142?9Relea@ 10099c40 main.cpp.obj + 0002:00000c94 ??_C@_0CM@PMFHKMCF@GetThreadContext?5called?5for?5cur@ 10099c94 main.cpp.obj + 0002:00000cc0 ??_C@_0BJ@NBMNLEAK@GetThreadContext?5failed?4@ 10099cc0 main.cpp.obj + 0002:00000cdc ??_C@_0O@HMJOGGOE@SuspendThread@ 10099cdc main.cpp.obj + 0002:00000cec ??_C@_0BG@HGBOONEI@SuspendThread?5failed?4@ 10099cec main.cpp.obj + 0002:00000d04 ??_C@_0N@JPHIGJOE@ResumeThread@ 10099d04 main.cpp.obj + 0002:00000d14 ??_C@_0BF@CPDPNIDB@ResumeThread?5failed?4@ 10099d14 main.cpp.obj + 0002:00000d2c ??_C@_0CL@NOFNLPJH@hadesmem?3?3SuspendedThread?3?3Resu@ 10099d2c main.cpp.obj + 0002:00000d58 ??_C@_0EB@CHHFMIFP@WARNING?$CB?5Error?5while?5suspending@ 10099d58 main.cpp.obj + 0002:00000d9c ??_C@_0CN@OAFEMMLD@hadesmem?3?3SuspendedProcess?3?3Sus@ 10099d9c main.cpp.obj + 0002:00000dcc ??_C@_0BB@CEKDJBHG@SuspendedProcess@ 10099dcc main.cpp.obj + 0002:00000de0 ??_C@_0DN@FMFFEHNA@Failed?5to?5suspend?5all?5threads?5i@ 10099de0 main.cpp.obj + 0002:00000e20 ??_C@_09OJCFAFOB@VerifyPid@ 10099e20 main.cpp.obj + 0002:00000e2c ??_C@_0BN@EEJAIICA@GetProcessIdOfThread?5failed?4@ 10099e2c main.cpp.obj + 0002:00000e4c ??_C@_0BJ@PHFJBNAN@PID?5verification?5failed?4@ 10099e4c main.cpp.obj + 0002:00000e68 ??_C@_0BG@JNMEKNNO@FlushInstructionCache@ 10099e68 main.cpp.obj + 0002:00000e80 ??_C@_0EK@MAJFCFGD@C?3?2software?2hadesmem?9v142?9Relea@ 10099e80 main.cpp.obj + 0002:00000ecc ??_C@_0BO@BEKIKMHC@FlushInstructionCache?5failed?4@ 10099ecc main.cpp.obj + 0002:00000eec ??_C@_07EMMGCHGI@Protect@ 10099eec main.cpp.obj + 0002:00000ef8 ??_C@_0FK@CJDMOKGD@C?3?2software?2hadesmem?9v142?9Relea@ 10099ef8 main.cpp.obj + 0002:00000f54 ??_C@_0BJ@GOHMJHGO@VirtualProtectEx?5failed?4@ 10099f54 main.cpp.obj + 0002:00000f70 ??_C@_05BNKNJDAB@Query@ 10099f70 main.cpp.obj + 0002:00000f78 ??_C@_0FI@NAPLGFGJ@C?3?2software?2hadesmem?9v142?9Relea@ 10099f78 main.cpp.obj + 0002:00000fd0 ??_C@_0BH@JFGDHIMO@VirtualQueryEx?5failed?4@ 10099fd0 main.cpp.obj + 0002:00000fe8 ??_C@_0N@KLFIJGGA@ProtectGuard@ 10099fe8 main.cpp.obj + 0002:00000ff8 ??_C@_0FJ@OFKJBOII@C?3?2software?2hadesmem?9v142?9Relea@ 10099ff8 main.cpp.obj + 0002:00001054 ??_C@_0DF@BAHJNPFD@Attempt?5to?5access?5page?5with?5a?5?8@ 1009a054 main.cpp.obj + 0002:0000108c ??_C@_0DB@CGKFDJFG@hadesmem?3?3detail?3?3ProtectGuard?3@ 1009a08c main.cpp.obj + 0002:000010c0 ??_C@_0O@KAKHNDGG@ReadUnchecked@ 1009a0c0 main.cpp.obj + 0002:000010d0 ??_C@_0FF@IFPHEENA@C?3?2software?2hadesmem?9v142?9Relea@ 1009a0d0 main.cpp.obj + 0002:00001128 ??_C@_0BK@NFNEHIDL@ReadProcessMemory?5failed?4@ 1009a128 main.cpp.obj + 0002:00001144 ??_C@_0P@LBLMMGGB@WriteUnchecked@ 1009a144 main.cpp.obj + 0002:00001158 ??_C@_0FG@HKAAFBIF@C?3?2software?2hadesmem?9v142?9Relea@ 1009a158 main.cpp.obj + 0002:000011b0 ??_C@_0BL@BKBINFBA@WriteProcessMemory?5failed?4@ 1009a1b0 main.cpp.obj + 0002:000011cc ??_C@_0DD@NEDPJGDL@Address?5?$DN?5?$CFp?0?5Target?5?$DN?5?$CFp?0?5Push@ 1009a1cc main.cpp.obj + 0002:00001200 ??_C@_0BM@BLAEMDDL@hadesmem?3?3detail?3?3WriteJump@ 1009a200 main.cpp.obj + 0002:0000121c ??_C@_0BF@NLCMJOPD@Using?5relative?5jump?4@ 1009a21c main.cpp.obj + 0002:00001234 ??_C@_0BK@FPNCDMKG@Address?5?$DN?5?$CFp?0?5Target?5?$DN?5?$CFp@ 1009a234 main.cpp.obj + 0002:00001250 ??_C@_0BM@CONKFGOI@hadesmem?3?3detail?3?3WriteCall@ 1009a250 main.cpp.obj + 0002:0000126c ??_C@_0BF@MEMDMDAI@Using?5relative?5call?4@ 1009a26c main.cpp.obj + 0002:00001284 ??_C@_0BD@KKJJLKB@VerifyPatchThreads@ 1009a284 main.cpp.obj + 0002:00001298 ??_C@_0FH@FDDALOBI@C?3?2software?2hadesmem?9v142?9Relea@ 1009a298 main.cpp.obj + 0002:000012f0 ??_C@_0CM@OJCIIPGE@Thread?5is?5currently?5executing?5p@ 1009a2f0 main.cpp.obj + 0002:00001320 ??_7?$basic_istream@DU?$char_traits@D@std@@@std@@6B@ 1009a320 main.cpp.obj + 0002:00001328 ??_7?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@ 1009a328 main.cpp.obj + 0002:0000132c ??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@ 1009a32c main.cpp.obj + 0002:00001334 ??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@ 1009a334 main.cpp.obj + 0002:0000133c ??_C@_0CE@GCLPNIIO@hadesmem?3?3PatchRaw?3?3RemoveUnche@ 1009a33c main.cpp.obj + 0002:00001360 ??_C@_07NJGAEJFG@?$FLDEBUG?$FN@ 1009a360 main.cpp.obj + 0002:0000136c ??_7CDataStore@Nampower@@6B@ 1009a36c main.cpp.obj + 0002:00001394 ??_C@_06BALNJMNP@player@ 1009a394 main.cpp.obj + 0002:000013a0 ??_7?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 1009a3a0 main.cpp.obj + 0002:000013a4 ??_8?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@ 1009a3a4 main.cpp.obj + 0002:000013ac ??_8?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@ 1009a3ac main.cpp.obj + 0002:000013b4 ??_C@_0M@EHAPGNAC@?$CFY?9?$CFm?9?$CFd?5?$CFX@ 1009a3b4 main.cpp.obj + 0002:000013c0 ??_C@_06CGLFEPBO@Unused@ 1009a3c0 main.cpp.obj + 0002:000013c8 ??_C@_04MKEOLIJC@?5to?5@ 1009a3c8 main.cpp.obj + 0002:000013d0 ??_C@_0N@JECGEPKH@Registering?5@ 1009a3d0 main.cpp.obj + 0002:000013e0 ??_C@_0BK@ECMBPKJF@?5triggering?5queued?5spells@ 1009a3e0 main.cpp.obj + 0002:000013fc ??_C@_01LBDDMOBJ@?$FN@ 1009a3fc main.cpp.obj + 0002:00001400 ??_C@_0BE@DJPHGBFK@?5latency?5reduction?5@ 1009a400 main.cpp.obj + 0002:00001414 ??_C@_0BE@MCKMMINL@?5original?5duration?5@ 1009a414 main.cpp.obj + 0002:00001428 ??_C@_0M@GDEDPOEP@?5elapsed?5?$DO?5@ 1009a428 main.cpp.obj + 0002:00001434 ??_C@_0BB@CLMMGHMA@Ending?5channel?5?$FL@ 1009a434 main.cpp.obj + 0002:00001448 ??_C@_0BF@PLCENIP@?5latency?5reduction?3?5@ 1009a448 main.cpp.obj + 0002:00001460 ??_C@_0BG@BKKFKINO@Remaining?5tick?5time?3?5@ 1009a460 main.cpp.obj + 0002:00001478 ??_C@_0CO@EPCFCBPN@Ending?5channel?5due?5to?5cancelCha@ 1009a478 main.cpp.obj + 0002:000014a8 ??_C@_0DA@KGIDDBKC@Non?5gcd?5spell?5cooldown?5up?0?5cast@ 1009a4a8 main.cpp.obj + 0002:000014d8 ??_C@_0CB@OKGJLKOH@?5due?5to?5max?5time?5since?5last?5cas@ 1009a4d8 main.cpp.obj + 0002:000014fc ??_C@_0BJ@MOIJJLEH@Ignoring?5queued?5cast?5of?5@ 1009a4fc main.cpp.obj + 0002:00001518 ??_C@_0CI@DLDOLJJB@Spell?5cooldown?5up?0?5casting?5queu@ 1009a518 main.cpp.obj + 0002:00001540 ??_C@_0BH@JFBHEHPE@NP_QueueCastTimeSpells@ 1009a540 main.cpp.obj + 0002:00001558 ??_C@_0BP@PICLLELH@Set?5NP_QueueCastTimeSpells?5to?5@ 1009a558 main.cpp.obj + 0002:00001578 ??_C@_0BG@EPNAOJED@NP_QueueInstantSpells@ 1009a578 main.cpp.obj + 0002:00001590 ??_C@_0BO@FGKHFEMB@Set?5NP_QueueInstantSpells?5to?5@ 1009a590 main.cpp.obj + 0002:000015b0 ??_C@_0BG@NHCCGJDA@NP_QueueOnSwingSpells@ 1009a5b0 main.cpp.obj + 0002:000015c8 ??_C@_0BO@BGEGNIHK@Set?5NP_QueueOnSwingSpells?5to?5@ 1009a5c8 main.cpp.obj + 0002:000015e8 ??_C@_0BJ@KIPOCKFK@NP_QueueChannelingSpells@ 1009a5e8 main.cpp.obj + 0002:00001604 ??_C@_0CB@OBNLDPCK@Set?5NP_QueueChannelingSpells?5to@ 1009a604 main.cpp.obj + 0002:00001628 ??_C@_0BI@OGLIEAGM@NP_QueueTargetingSpells@ 1009a628 main.cpp.obj + 0002:00001640 ??_C@_0CA@DMKPKEFC@Set?5NP_QueueTargetingSpells?5to?5@ 1009a640 main.cpp.obj + 0002:00001660 ??_C@_0BJ@EEBEGJJE@NP_QueueSpellsOnCooldown@ 1009a660 main.cpp.obj + 0002:0000167c ??_C@_0CB@ILICALD@Set?5NP_QueueSpellsOnCooldown?5to@ 1009a67c main.cpp.obj + 0002:000016a0 ??_C@_0CH@NKILOBGJ@NP_InterruptChannelsOutsideQueu@ 1009a6a0 main.cpp.obj + 0002:000016c8 ??_C@_0CP@CBMJDLLE@Set?5NP_InterruptChannelsOutside@ 1009a6c8 main.cpp.obj + 0002:000016f8 ??_C@_0BN@BPHINGMM@NP_RetryServerRejectedSpells@ 1009a6f8 main.cpp.obj + 0002:00001718 ??_C@_0CF@GJMGHEJL@Set?5NP_RetryServerRejectedSpell@ 1009a718 main.cpp.obj + 0002:00001740 ??_C@_0BM@KAAEKKLI@NP_QuickcastTargetingSpells@ 1009a740 main.cpp.obj + 0002:0000175c ??_C@_0CE@LGHOMBHC@Set?5NP_QuickcastTargetingSpells@ 1009a75c main.cpp.obj + 0002:00001780 ??_C@_0CB@HPGIFMMF@NP_ReplaceMatchingNonGcdCategor@ 1009a780 main.cpp.obj + 0002:000017a4 ??_C@_0CJ@BKCNDEIE@Set?5NP_ReplaceMatchingNonGcdCat@ 1009a7a4 main.cpp.obj + 0002:000017d0 ??_C@_0CE@HNEFELI@NP_OptimizeBufferUsingPacketTim@ 1009a7d0 main.cpp.obj + 0002:000017f4 ??_C@_0CM@IFFMCJBG@Set?5NP_OptimizeBufferUsingPacke@ 1009a7f4 main.cpp.obj + 0002:00001820 ??_C@_0CB@PAPCHMPF@NP_PreventRightClickTargetChang@ 1009a820 main.cpp.obj + 0002:00001844 ??_C@_0CJ@CEOCHGOE@Set?5NP_PreventRightClickTargetC@ 1009a844 main.cpp.obj + 0002:00001870 ??_C@_0BO@IJCJBII@NP_PreventRightClickPvPAttack@ 1009a870 main.cpp.obj + 0002:00001890 ??_C@_0CG@OFCDCGBE@Set?5NP_PreventRightClickPvPAtta@ 1009a890 main.cpp.obj + 0002:000018b8 ??_C@_0BP@COIIKABN@NP_DoubleCastToEndChannelEarly@ 1009a8b8 main.cpp.obj + 0002:000018d8 ??_C@_0CH@FPPJPDAN@Set?5NP_DoubleCastToEndChannelEa@ 1009a8d8 main.cpp.obj + 0002:00001900 ??_C@_0BJ@OGGMANCP@NP_QuickcastOnDoubleCast@ 1009a900 main.cpp.obj + 0002:0000191c ??_C@_0CB@FCCLLLOO@Set?5NP_QuickcastOnDoubleCast?5to@ 1009a91c main.cpp.obj + 0002:00001940 ??_C@_0BJ@BNCLKABI@NP_SpamProtectionEnabled@ 1009a940 main.cpp.obj + 0002:0000195c ??_C@_0CB@HLCAEHJD@Set?5NP_SpamProtectionEnabled?5to@ 1009a95c main.cpp.obj + 0002:00001980 ??_C@_0CA@HJJDEHK@NP_PreserveGreaterDemonAutocast@ 1009a980 main.cpp.obj + 0002:000019a0 ??_C@_0CI@PFLGHHNE@Set?5NP_PreserveGreaterDemonAuto@ 1009a9a0 main.cpp.obj + 0002:000019c8 ??_C@_0BH@KAMACOOH@NP_EnableUnitEventsPet@ 1009a9c8 main.cpp.obj + 0002:000019e0 ??_C@_0BP@GFELCLJC@Set?5NP_EnableUnitEventsPet?5to?5@ 1009a9e0 main.cpp.obj + 0002:00001a00 ??_C@_0BJ@LAAHDDAL@NP_EnableUnitEventsParty@ 1009aa00 main.cpp.obj + 0002:00001a1c ??_C@_0CB@FHIPANLA@Set?5NP_EnableUnitEventsParty?5to@ 1009aa1c main.cpp.obj + 0002:00001a40 ??_C@_0BI@NOADONEC@NP_EnableUnitEventsRaid@ 1009aa40 main.cpp.obj + 0002:00001a58 ??_C@_0CA@ICNBHNIB@Set?5NP_EnableUnitEventsRaid?5to?5@ 1009aa58 main.cpp.obj + 0002:00001a78 ??_C@_0BN@NCMLNAFN@NP_EnableUnitEventsMouseover@ 1009aa78 main.cpp.obj + 0002:00001a98 ??_C@_0CF@ECIKMNJO@Set?5NP_EnableUnitEventsMouseove@ 1009aa98 main.cpp.obj + 0002:00001ac0 ??_C@_0BI@KJHIDFHI@NP_EnableUnitEventsGuid@ 1009aac0 main.cpp.obj + 0002:00001ad8 ??_C@_0CA@JMHHEFGO@Set?5NP_EnableUnitEventsGuid?5to?5@ 1009aad8 main.cpp.obj + 0002:00001af8 ??_C@_0CB@GODFGNOP@NP_EnableUnitEventsGuidFilterin@ 1009aaf8 main.cpp.obj + 0002:00001b1c ??_C@_0CJ@JFKOPHJC@Set?5NP_EnableUnitEventsGuidFilt@ 1009ab1c main.cpp.obj + 0002:00001b48 ??_C@_0BI@OFECCKJA@NP_EnableAuraCastEvents@ 1009ab48 main.cpp.obj + 0002:00001b60 ??_C@_0CA@MCAFBLDG@Set?5NP_EnableAuraCastEvents?5to?5@ 1009ab60 main.cpp.obj + 0002:00001b80 ??_C@_0BK@MBLEOKAE@NP_EnableAutoAttackEvents@ 1009ab80 main.cpp.obj + 0002:00001b9c ??_C@_0CC@FLEKOLKF@Set?5NP_EnableAutoAttackEvents?5t@ 1009ab9c main.cpp.obj + 0002:00001bc0 ??_C@_0BK@HPKDDDJN@NP_EnableSpellStartEvents@ 1009abc0 main.cpp.obj + 0002:00001bdc ??_C@_0CC@DAAAFBCJ@Set?5NP_EnableSpellStartEvents?5t@ 1009abdc main.cpp.obj + 0002:00001c00 ??_C@_0BH@DBJNDJCK@NP_EnableSpellGoEvents@ 1009ac00 main.cpp.obj + 0002:00001c18 ??_C@_0BP@HABICIHH@Set?5NP_EnableSpellGoEvents?5to?5@ 1009ac18 main.cpp.obj + 0002:00001c38 ??_C@_0BJ@OPDINFN@NP_EnableSpellHealEvents@ 1009ac38 main.cpp.obj + 0002:00001c54 ??_C@_0CB@CKCADEOG@Set?5NP_EnableSpellHealEvents?5to@ 1009ac54 main.cpp.obj + 0002:00001c78 ??_C@_0BN@DLFLANCE@NP_EnableSpellEnergizeEvents@ 1009ac78 main.cpp.obj + 0002:00001c98 ??_C@_0CF@HJHLFECN@Set?5NP_EnableSpellEnergizeEvent@ 1009ac98 main.cpp.obj + 0002:00001cc0 ??_C@_0CB@CLDKJOLH@NP_PreventMountingWhenBuffCappe@ 1009acc0 main.cpp.obj + 0002:00001ce4 ??_C@_0CJ@KNLLLEIG@Set?5NP_PreventMountingWhenBuffC@ 1009ace4 main.cpp.obj + 0002:00001d10 ??_C@_0BD@KEENKIJP@NP_MinBufferTimeMs@ 1009ad10 main.cpp.obj + 0002:00001d24 ??_C@_0CO@NIJCIBCJ@Set?5NP_MinBufferTimeMs?5and?5curr@ 1009ad24 main.cpp.obj + 0002:00001d54 ??_C@_0BG@LLHBJGHN@NP_NonGcdBufferTimeMs@ 1009ad54 main.cpp.obj + 0002:00001d6c ??_C@_0BO@BEDCEPJD@Set?5NP_NonGcdBufferTimeMs?5to?5@ 1009ad6c main.cpp.obj + 0002:00001d8c ??_C@_0BH@MKMOFKHN@NP_MaxBufferIncreaseMs@ 1009ad8c main.cpp.obj + 0002:00001da4 ??_C@_0BP@NHKKEPBG@Set?5NP_MaxBufferIncreaseMs?5to?5@ 1009ada4 main.cpp.obj + 0002:00001dc4 ??_C@_0BG@HPCNJHHL@NP_SpellQueueWindowMs@ 1009adc4 main.cpp.obj + 0002:00001ddc ??_C@_0BO@LKJMGOIJ@Set?5NP_SpellQueueWindowMs?5to?5@ 1009addc main.cpp.obj + 0002:00001dfc ??_C@_0BL@KOCNOCFF@NP_OnSwingBufferCooldownMs@ 1009adfc main.cpp.obj + 0002:00001e18 ??_C@_0CD@BOIHNHHB@Set?5NP_OnSwingBufferCooldownMs?5@ 1009ae18 main.cpp.obj + 0002:00001e3c ??_C@_0BI@LPMHBLBF@NP_ChannelQueueWindowMs@ 1009ae3c main.cpp.obj + 0002:00001e54 ??_C@_0CA@PAGBAGHM@Set?5NP_ChannelQueueWindowMs?5to?5@ 1009ae54 main.cpp.obj + 0002:00001e74 ??_C@_0BK@KEKPPKMD@NP_TargetingQueueWindowMs@ 1009ae74 main.cpp.obj + 0002:00001e90 ??_C@_0CC@DIBIMACH@Set?5NP_TargetingQueueWindowMs?5t@ 1009ae90 main.cpp.obj + 0002:00001eb4 ??_C@_0BJ@EPEDEFB@NP_CooldownQueueWindowMs@ 1009aeb4 main.cpp.obj + 0002:00001ed0 ??_C@_0CB@FONDBBI@Set?5NP_CooldownQueueWindowMs?5to@ 1009aed0 main.cpp.obj + 0002:00001ef4 ??_C@_0CF@LNIPLOJI@NP_ChannelLatencyReductionPerce@ 1009aef4 main.cpp.obj + 0002:00001f1c ??_C@_0CN@EINCDKGL@Set?5NP_ChannelLatencyReductionP@ 1009af1c main.cpp.obj + 0002:00001f4c ??_C@_0BF@NPNCLNJG@NP_NameplateDistance@ 1009af4c main.cpp.obj + 0002:00001f64 ??_C@_0BN@EGLOHIBD@Set?5NP_NameplateDistance?5to?5@ 1009af64 main.cpp.obj + 0002:00001f88 ??_7?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@6B@ 1009af88 main.cpp.obj + 0002:00001fd8 ??_C@_03PEOPGAMG@NP_@ 1009afd8 main.cpp.obj + 0002:00001fdc ??_C@_0BJ@HNOEHODG@Using?5default?5value?5for?5@ 1009afdc main.cpp.obj + 0002:00001ff8 ??_C@_04IOBBKNGP@Logs@ 1009aff8 main.cpp.obj + 0002:00002000 ??_C@_0BD@FEPMOMFL@nampower_debug?4log@ 1009b000 main.cpp.obj + 0002:00002014 ??_C@_0BI@LDBODINK@Logs?2nampower_debug?4log@ 1009b014 main.cpp.obj + 0002:0000202c ??_C@_0BF@EHNBCGI@nampower_debug?4log?41@ 1009b02c main.cpp.obj + 0002:00002044 ??_C@_0BK@KHFLEKEN@Logs?2nampower_debug?4log?41@ 1009b044 main.cpp.obj + 0002:00002060 ??_C@_0BF@CPFAEBKL@nampower_debug?4log?42@ 1009b060 main.cpp.obj + 0002:00002078 ??_C@_0BK@IMHGBJIO@Logs?2nampower_debug?4log?42@ 1009b078 main.cpp.obj + 0002:00002094 ??_C@_0BF@DGELHAOK@nampower_debug?4log?43@ 1009b094 main.cpp.obj + 0002:000020ac ??_C@_0BK@JFGNCIMP@Logs?2nampower_debug?4log?43@ 1009b0ac main.cpp.obj + 0002:000020c8 ??_C@_01LFCBOECM@?4@ 1009b0c8 main.cpp.obj + 0002:000020cc ??_C@_0BD@BPOEFIKN@Loading?5nampower?5v@ 1009b0cc main.cpp.obj + 0002:000020e0 ??_C@_0BK@INOGODLN@Registering?1Loading?5CVars@ 1009b0e0 main.cpp.obj + 0002:000020fc ??_C@_0BI@JDKNJGGE@NP_FelguardAutocastData@ 1009b0fc main.cpp.obj + 0002:00002114 ??_C@_0BJ@MKNOLCCP@NP_DoomguardAutocastData@ 1009b114 main.cpp.obj + 0002:00002130 ??_C@_0CF@IALCIHCG@?$DN?$DN?$DN?5Starting?5hook?5initializatio@ 1009b130 main.cpp.obj + 0002:00002158 ??_C@_0CL@MJPJAFAM@?$DN?$DN?$DN?5All?5hooks?5initialized?5succe@ 1009b158 main.cpp.obj + 0002:00002184 ??_C@_01CLKCMJKC@?5@ 1009b184 main.cpp.obj + 0002:00002188 ??_C@_0BJ@DDBOIFAJ@Added?5custom?5event?5code?3@ 1009b188 main.cpp.obj + 0002:000021a4 ??_C@_0BC@IIJKILOC@SPELL_QUEUE_EVENT@ 1009b1a4 main.cpp.obj + 0002:000021b8 ??_C@_0BB@INAPBEKM@SPELL_CAST_EVENT@ 1009b1b8 main.cpp.obj + 0002:000021cc ??_C@_0BI@IIEOEKLK@SPELL_DAMAGE_EVENT_SELF@ 1009b1cc main.cpp.obj + 0002:000021e4 ??_C@_0BJ@HABHONC@SPELL_DAMAGE_EVENT_OTHER@ 1009b1e4 main.cpp.obj + 0002:00002200 ??_C@_0BC@FNMHDFMM@DEBUFF_ADDED_SELF@ 1009b200 main.cpp.obj + 0002:00002214 ??_C@_0BE@IPCENOKC@DEBUFF_REMOVED_SELF@ 1009b214 main.cpp.obj + 0002:00002228 ??_C@_0BD@LOLCCDKE@DEBUFF_ADDED_OTHER@ 1009b228 main.cpp.obj + 0002:0000223c ??_C@_0BF@BEGKIMBA@DEBUFF_REMOVED_OTHER@ 1009b23c main.cpp.obj + 0002:00002254 ??_C@_0BA@MOKKJPMK@BUFF_ADDED_SELF@ 1009b254 main.cpp.obj + 0002:00002264 ??_C@_0BC@OPHNKALP@BUFF_REMOVED_SELF@ 1009b264 main.cpp.obj + 0002:00002278 ??_C@_0BB@FHECOLDL@BUFF_ADDED_OTHER@ 1009b278 main.cpp.obj + 0002:0000228c ??_C@_0BD@HHAMLJLH@BUFF_REMOVED_OTHER@ 1009b28c main.cpp.obj + 0002:000022a0 ??_C@_09OAKDIAEE@UNIT_DIED@ 1009b2a0 main.cpp.obj + 0002:000022ac ??_C@_0BC@HMKGCEPB@AURA_CAST_ON_SELF@ 1009b2ac main.cpp.obj + 0002:000022c0 ??_C@_0BD@OGPLAOKE@AURA_CAST_ON_OTHER@ 1009b2c0 main.cpp.obj + 0002:000022d4 ??_C@_0BB@GJGJCOEG@AUTO_ATTACK_SELF@ 1009b2d4 main.cpp.obj + 0002:000022e8 ??_C@_0BC@LDOLOHIB@AUTO_ATTACK_OTHER@ 1009b2e8 main.cpp.obj + 0002:000022fc ??_C@_0BB@LFPNKHHB@SPELL_START_SELF@ 1009b2fc main.cpp.obj + 0002:00002310 ??_C@_0BC@LIKNGAH@SPELL_START_OTHER@ 1009b310 main.cpp.obj + 0002:00002324 ??_C@_0O@EBECIIDL@SPELL_GO_SELF@ 1009b324 main.cpp.obj + 0002:00002334 ??_C@_0P@JNHHMBKG@SPELL_GO_OTHER@ 1009b334 main.cpp.obj + 0002:00002344 ??_C@_0BC@IAGOOOHI@SPELL_FAILED_SELF@ 1009b344 main.cpp.obj + 0002:00002358 ??_C@_0BD@HCGDPNOK@SPELL_FAILED_OTHER@ 1009b358 main.cpp.obj + 0002:0000236c ??_C@_0BD@BEPEMHGP@SPELL_DELAYED_SELF@ 1009b36c main.cpp.obj + 0002:00002380 ??_C@_0BE@PBCEOCAE@SPELL_DELAYED_OTHER@ 1009b380 main.cpp.obj + 0002:00002394 ??_C@_0BE@IOCKMDKP@SPELL_CHANNEL_START@ 1009b394 main.cpp.obj + 0002:000023a8 ??_C@_0BF@LJOECPNH@SPELL_CHANNEL_UPDATE@ 1009b3a8 main.cpp.obj + 0002:000023c0 ??_C@_0BD@MPPCDFLO@SPELL_HEAL_BY_SELF@ 1009b3c0 main.cpp.obj + 0002:000023d4 ??_C@_0BE@CLAGLE@SPELL_HEAL_BY_OTHER@ 1009b3d4 main.cpp.obj + 0002:000023e8 ??_C@_0BD@PGIOICCP@SPELL_HEAL_ON_SELF@ 1009b3e8 main.cpp.obj + 0002:000023fc ??_C@_0BH@FKIAPLHB@SPELL_ENERGIZE_BY_SELF@ 1009b3fc main.cpp.obj + 0002:00002414 ??_C@_0BI@LGFKLFL@SPELL_ENERGIZE_BY_OTHER@ 1009b414 main.cpp.obj + 0002:0000242c ??_C@_0BH@GDPMEMOA@SPELL_ENERGIZE_ON_SELF@ 1009b42c main.cpp.obj + 0002:00002444 ??_C@_0BK@LABCOB@BUFF_UPDATE_DURATION_SELF@ 1009b444 main.cpp.obj + 0002:00002460 ??_C@_0BM@OJOKLDBP@DEBUFF_UPDATE_DURATION_SELF@ 1009b460 main.cpp.obj + 0002:0000247c ??_C@_0BA@GBKNELAD@SPELL_MISS_SELF@ 1009b47c main.cpp.obj + 0002:0000248c ??_C@_0BB@LFFFJGPL@SPELL_MISS_OTHER@ 1009b48c main.cpp.obj + 0002:000024a0 ??_C@_0BB@IBMHAJAM@UNIT_COMBAT_GUID@ 1009b4a0 main.cpp.obj + 0002:000024b4 ??_C@_0BG@EEJJBMGL@UNIT_NAME_UPDATE_GUID@ 1009b4b4 main.cpp.obj + 0002:000024cc ??_C@_0BK@HFCILLKB@UNIT_PORTRAIT_UPDATE_GUID@ 1009b4cc main.cpp.obj + 0002:000024e8 ??_C@_0BI@BNJDINBF@UNIT_MODEL_CHANGED_GUID@ 1009b4e8 main.cpp.obj + 0002:00002500 ??_C@_0BM@BPKDJDMK@UNIT_INVENTORY_CHANGED_GUID@ 1009b500 main.cpp.obj + 0002:0000251c ??_C@_0O@CDAGPNCP@UNIT_PET_GUID@ 1009b51c main.cpp.obj + 0002:0000252c ??_C@_0BB@FECBAHGP@UNIT_HEALTH_GUID@ 1009b52c main.cpp.obj + 0002:00002540 ??_C@_0P@INHDBPOB@UNIT_MANA_GUID@ 1009b540 main.cpp.obj + 0002:00002550 ??_C@_0P@LANGPKLM@UNIT_RAGE_GUID@ 1009b550 main.cpp.obj + 0002:00002560 ??_C@_0BB@LHNLBJOO@UNIT_ENERGY_GUID@ 1009b560 main.cpp.obj + 0002:00002574 ??_C@_0BA@KMIOLEEG@UNIT_FLAGS_GUID@ 1009b574 main.cpp.obj + 0002:00002584 ??_C@_0P@ENHHMIHG@UNIT_AURA_GUID@ 1009b584 main.cpp.obj + 0002:00002594 ??_C@_0BI@OEJBNCMD@UNIT_DYNAMIC_FLAGS_GUID@ 1009b594 main.cpp.obj + 0002:000025ac ??_C@_0BJ@OKKIPLGF@PLAYER_GUILD_UPDATE_GUID@ 1009b5ac main.cpp.obj + 0002:000025c8 ??_C@_08GNEEABI@KEY_DOWN@ 1009b5c8 main.cpp.obj + 0002:000025d4 ??_C@_06NKLJJJM@KEY_UP@ 1009b5d4 main.cpp.obj + 0002:000025dc ??_C@_07NFDODHAI@?5to?5700@ 1009b5dc main.cpp.obj + 0002:000025e4 ??_C@_0BN@PFEPHOAH@Increasing?5event?5count?5from?5@ 1009b5e4 main.cpp.obj + 0002:00002604 ??_C@_0CB@KNPGGJME@Registering?5Custom?5Lua?5function@ 1009b604 main.cpp.obj + 0002:00002628 ??_C@_0BB@COEIEDHD@QueueSpellByName@ 1009b628 main.cpp.obj + 0002:0000263c ??_C@_0BH@EFPAODGH@CastSpellByNameNoQueue@ 1009b63c main.cpp.obj + 0002:00002654 ??_C@_0BB@HKEDLMIG@CastSpellNoQueue@ 1009b654 main.cpp.obj + 0002:00002668 ??_C@_0M@PPLDGHGJ@QueueScript@ 1009b668 main.cpp.obj + 0002:00002674 ??_C@_0P@EEAKKLOD@IsSpellInRange@ 1009b674 main.cpp.obj + 0002:00002684 ??_C@_0O@OJOODJBA@IsSpellUsable@ 1009b684 main.cpp.obj + 0002:00002694 ??_C@_0BG@LHDLCFEE@GetCurrentCastingInfo@ 1009b694 main.cpp.obj + 0002:000026ac ??_C@_0BC@NFIAGJCO@GetSpellIdForName@ 1009b6ac main.cpp.obj + 0002:000026c0 ??_C@_0BJ@OIEGKLKO@GetSpellNameAndRankForId@ 1009b6c0 main.cpp.obj + 0002:000026dc ??_C@_0BK@PJJFEGPC@GetSpellSlotTypeIdForName@ 1009b6dc main.cpp.obj + 0002:000026f8 ??_C@_0BL@MFCJKIGL@ChannelStopCastingNextTick@ 1009b6f8 main.cpp.obj + 0002:00002714 ??_C@_0BD@GKGGEBFB@GetNampowerVersion@ 1009b714 main.cpp.obj + 0002:00002728 ??_C@_0N@JDLNMJKE@GetItemLevel@ 1009b728 main.cpp.obj + 0002:00002738 ??_C@_0N@CBMNGPCH@GetItemStats@ 1009b738 main.cpp.obj + 0002:00002748 ??_C@_0BA@OKINMLMF@StartItemExport@ 1009b748 main.cpp.obj + 0002:00002758 ??_C@_0M@GCMNFEPN@GetSpellRec@ 1009b758 main.cpp.obj + 0002:00002764 ??_C@_0BC@EMLGDCK@GetItemStatsField@ 1009b764 main.cpp.obj + 0002:00002778 ??_C@_0BB@DLPAGHLE@GetSpellRecField@ 1009b778 main.cpp.obj + 0002:0000278c ??_C@_0M@GMDOHMKD@GetUnitData@ 1009b78c main.cpp.obj + 0002:00002798 ??_C@_0N@NDOHCLOO@GetUnitField@ 1009b798 main.cpp.obj + 0002:000027a8 ??_C@_0BC@OJJLHCMM@GetSpellModifiers@ 1009b7a8 main.cpp.obj + 0002:000027bc ??_C@_0BD@JFAGNKGG@FindPlayerItemSlot@ 1009b7bc main.cpp.obj + 0002:000027d0 ??_C@_0BB@DMAMHCNP@GetEquippedItems@ 1009b7d0 main.cpp.obj + 0002:000027e4 ??_C@_0BA@MGJKCOKC@GetEquippedItem@ 1009b7e4 main.cpp.obj + 0002:000027f4 ??_C@_0M@NACEOJGE@GetBagItems@ 1009b7f4 main.cpp.obj + 0002:00002800 ??_C@_0L@INPDLDGD@GetBagItem@ 1009b800 main.cpp.obj + 0002:0000280c ??_C@_0M@IILIBIAD@GetCastInfo@ 1009b80c main.cpp.obj + 0002:00002818 ??_C@_0BD@FMMMOHBG@GetSpellIdCooldown@ 1009b818 main.cpp.obj + 0002:0000282c ??_C@_0BC@JJBCKJPB@GetItemIdCooldown@ 1009b82c main.cpp.obj + 0002:00002840 ??_C@_0BD@JMKKPPOD@GetTrinketCooldown@ 1009b840 main.cpp.obj + 0002:00002854 ??_C@_0BA@EIDAGHKD@UseItemIdOrName@ 1009b854 main.cpp.obj + 0002:00002864 ??_C@_0L@NMBBKLLO@UseTrinket@ 1009b864 main.cpp.obj + 0002:00002870 ??_C@_0M@EGBLDCCI@GetTrinkets@ 1009b870 main.cpp.obj + 0002:0000287c ??_C@_0O@JMOODDHF@DisenchantAll@ 1009b87c main.cpp.obj + 0002:0000288c ??_C@_0BD@CIKGFBEL@GetItemIconTexture@ 1009b88c main.cpp.obj + 0002:000028a0 ??_C@_0BE@BGANPINO@GetSpellIconTexture@ 1009b8a0 main.cpp.obj + 0002:000028b4 ??_C@_0BG@NHHLBJIB@GetPlayerAuraDuration@ 1009b8b4 main.cpp.obj + 0002:000028cc ??_C@_0BF@JCGGDHDN@CancelPlayerAuraSlot@ 1009b8cc main.cpp.obj + 0002:000028e4 ??_C@_0BI@EGDKELMA@CancelPlayerAuraSpellId@ 1009b8e4 main.cpp.obj + 0002:000028fc ??_C@_0O@EGACADAN@GetSpellPower@ 1009b8fc main.cpp.obj + 0002:0000290c ??_C@_0BB@GJJOHFMI@GetSpellDuration@ 1009b90c main.cpp.obj + 0002:00002920 ??_C@_0BA@HLJFEPBF@LearnTalentRank@ 1009b920 main.cpp.obj + 0002:00002930 ??_C@_0P@GNPNONPK@PlayerIsMoving@ 1009b930 main.cpp.obj + 0002:00002940 ??_C@_0P@BEJAMHEO@PlayerIsRooted@ 1009b940 main.cpp.obj + 0002:00002950 ??_C@_0BB@DODJPBOK@PlayerIsSwimming@ 1009b950 main.cpp.obj + 0002:00002964 ??_C@_0BB@ICFMFGMO@SetMouseoverUnit@ 1009b964 main.cpp.obj + 0002:00002978 ??_C@_0M@JAJHMPKB@GetUnitGUID@ 1009b978 main.cpp.obj + 0002:00002984 ??_C@_0N@GJHOCJAI@IsAuraHidden@ 1009b984 main.cpp.obj + 0002:00002994 ??_C@_0P@JHGANGDE@CombatLogFlush@ 1009b994 main.cpp.obj + 0002:000029a4 ??_C@_0BA@NPLJFLOD@WriteCustomFile@ 1009b9a4 main.cpp.obj + 0002:000029b4 ??_C@_0P@EBMMNFFF@ReadCustomFile@ 1009b9b4 main.cpp.obj + 0002:000029c4 ??_C@_0BB@JMDMLFMH@CustomFileExists@ 1009b9c4 main.cpp.obj + 0002:000029d8 ??_C@_0L@MHJCKBGI@ImportFile@ 1009b9d8 main.cpp.obj + 0002:000029e4 ??_C@_0L@MAPHJAD@ExportFile@ 1009b9e4 main.cpp.obj + 0002:000029f0 ??_C@_0BF@OGGDEDEG@ExecuteCustomLuaFile@ 1009b9f0 main.cpp.obj + 0002:00002a08 ??_C@_0BP@CLLCOBDF@Registering?5Glue?5Lua?5functions@ 1009ba08 main.cpp.obj + 0002:00002a28 ??_C@_0BA@DKCPPAAE@EncryptPassword@ 1009ba28 main.cpp.obj + 0002:00002a38 ??_C@_0BF@OEDNNOGG@EncryptedServerLogin@ 1009ba38 main.cpp.obj + 0002:00002a54 ??_7?$PatchDetour@P6IXXZPAX@hadesmem@@6B@ 1009ba54 main.cpp.obj + 0002:00002aa4 ??_C@_0CA@CBNOLNBD@Exception?5in?5Nampower?3?3load?$CI?$CJ?3?5@ 1009baa4 main.cpp.obj + 0002:00002ac4 ??_C@_0P@NAFFIKBA@Nampower?5Error@ 1009bac4 main.cpp.obj + 0002:00002ad4 ??_C@_0CG@PNCMOHNE@Unknown?5exception?5in?5Nampower?3?3@ 1009bad4 main.cpp.obj + 0002:00002afc ??_C@_0BK@DKOOEMML@Restoring?5original?5bytes?4@ 1009bafc main.cpp.obj + 0002:00002b18 ??_C@_0EE@CMAMOMOO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009bb18 main.cpp.obj + 0002:00002b5c ??_C@_0BG@LCAOCHAL@Writing?5jump?5to?5stub?4@ 1009bb5c main.cpp.obj + 0002:00002b78 ??_C@_0ED@FNJJIMJO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009bb78 main.cpp.obj + 0002:00002bbc ??_C@_0L@NBAFHLHH@Stub?5near?4@ 1009bbbc main.cpp.obj + 0002:00002bc8 ??_C@_0EF@HPLFPOCH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009bbc8 main.cpp.obj + 0002:00002c10 ??_C@_0EI@IEHKJNFE@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009bc10 main.cpp.obj + 0002:00002c58 ??_C@_0M@GFKJMBMN@operator?5?$CI?$CJ@ 1009bc58 main.cpp.obj + 0002:00002c68 ??_C@_0FH@PGJHJNK@C?3?2software?2hadesmem?9v142?9Relea@ 1009bc68 main.cpp.obj + 0002:00002cc0 ??_C@_0BK@NOAOGKJA@Unknown?5instruction?5size?4@ 1009bcc0 main.cpp.obj + 0002:00002cdc ??_C@_0DG@JEMBOIJP@This?5?$DN?5?$CFp?0?5Target?5?$DN?5?$CFp?0?5Detour?5@ 1009bcdc main.cpp.obj + 0002:00002d14 ??_C@_0DO@BDGDLPLM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009bd14 main.cpp.obj + 0002:00002d54 ??_C@_05KHOEDHDN@Apply@ 1009bd54 main.cpp.obj + 0002:00002d5c ??_C@_0BE@FPCEIMCK@Disassembly?5failed?4@ 1009bd5c main.cpp.obj + 0002:00002d70 ??_C@_08LMIDJNHP@Invalid?4@ 1009bd70 main.cpp.obj + 0002:00002d7c ??_C@_09CGOPAKAI@?$CFs?4?5?$FL?$CFs?$FN?4@ 1009bd7c main.cpp.obj + 0002:00002d88 ??_C@_0BM@LBDNLCLP@Operand?1offset?5size?5is?5?$CFhu?4@ 1009bd88 main.cpp.obj + 0002:00002da4 ??_C@_0BH@BFFFOFOC@Jump?1call?5target?5?$DN?5?$CFp?4@ 1009bda4 main.cpp.obj + 0002:00002dbc ??_C@_0BH@LEKNPHHB@Writing?5resolved?5jump?4@ 1009bdbc main.cpp.obj + 0002:00002dd4 ??_C@_0BH@KLECKKIK@Writing?5resolved?5call?4@ 1009bdd4 main.cpp.obj + 0002:00002dec ??_C@_0CE@JLFHLNDK@Writing?5jump?5back?5to?5original?5c@ 1009bdec main.cpp.obj + 0002:00002e10 ??_C@_0EN@DGGOEDLL@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009be10 main.cpp.obj + 0002:00002e60 ??_C@_0EM@OFOCKEIK@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009be60 main.cpp.obj + 0002:00002eb0 ??_C@_0EO@GEKODJPD@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009beb0 main.cpp.obj + 0002:00002f00 ??_C@_0FB@CEIIMG@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009bf00 main.cpp.obj + 0002:00002f58 ??_C@_0EH@NEPCCDBP@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009bf58 main.cpp.obj + 0002:00002fa0 ??_C@_07CLEOFAGA@Cleanup@ 1009bfa0 main.cpp.obj + 0002:00002fa8 ??_C@_0FI@HFJICEID@C?3?2software?2hadesmem?9v142?9Relea@ 1009bfa8 main.cpp.obj + 0002:00003000 ??_C@_0BM@KIILNFBE@SmartHandle?5cleanup?5failed?4@ 1009c000 main.cpp.obj + 0002:00003020 ??_7?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 1009c020 main.cpp.obj + 0002:0000304c ??_C@_02BBAHNLBA@?$CFp@ 1009c04c main.cpp.obj + 0002:00003054 ??_7?$numpunct@D@std@@6B@ 1009c054 main.cpp.obj + 0002:00003078 ??_7?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@6B@ 1009c078 main.cpp.obj + 0002:000030cc ??_7?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@6B@ 1009c0cc main.cpp.obj + 0002:00003120 ??_7?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@6B@ 1009c120 main.cpp.obj + 0002:00003174 ??_7?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@6B@ 1009c174 main.cpp.obj + 0002:000031c8 ??_7?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@6B@ 1009c1c8 main.cpp.obj + 0002:0000321c ??_7?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@6B@ 1009c21c main.cpp.obj + 0002:00003270 ??_7?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@6B@ 1009c270 main.cpp.obj + 0002:000032c4 ??_7?$PatchDetour@P6IXI@ZPAX@hadesmem@@6B@ 1009c2c4 main.cpp.obj + 0002:00003318 ??_7?$PatchDetour@P6IXEH@ZPAX@hadesmem@@6B@ 1009c318 main.cpp.obj + 0002:0000336c ??_7?$PatchDetour@P6IX_K@ZPAX@hadesmem@@6B@ 1009c36c main.cpp.obj + 0002:000033c0 ??_7?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@6B@ 1009c3c0 main.cpp.obj + 0002:00003414 ??_7?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@6B@ 1009c414 main.cpp.obj + 0002:00003468 ??_7?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@6B@ 1009c468 main.cpp.obj + 0002:000034bc ??_7?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 1009c4bc main.cpp.obj + 0002:00003510 ??_7?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 1009c510 main.cpp.obj + 0002:00003564 ??_7?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 1009c564 main.cpp.obj + 0002:000035b8 ??_7?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@6B@ 1009c5b8 main.cpp.obj + 0002:0000360c ??_7?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@6B@ 1009c60c main.cpp.obj + 0002:00003660 ??_7?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@6B@ 1009c660 main.cpp.obj + 0002:000036b4 ??_7?$PatchDetour@P6IH_K@ZPAX@hadesmem@@6B@ 1009c6b4 main.cpp.obj + 0002:00003708 ??_7?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@6B@ 1009c708 main.cpp.obj + 0002:0000375c ??_7?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 1009c75c main.cpp.obj + 0002:000037b0 ??_7?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@6B@ 1009c7b0 main.cpp.obj + 0002:00003804 ??_7?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@6B@ 1009c804 main.cpp.obj + 0002:00003858 ??_7?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@6B@ 1009c858 main.cpp.obj + 0002:000038ac ??_7?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@6B@ 1009c8ac main.cpp.obj + 0002:00003900 ??_7?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@6B@ 1009c900 main.cpp.obj + 0002:00003954 ??_7?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@6B@ 1009c954 main.cpp.obj + 0002:000039a8 ??_7?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@6B@ 1009c9a8 main.cpp.obj + 0002:000039fc ??_7?$PatchDetour@P6IXHI@ZPAX@hadesmem@@6B@ 1009c9fc main.cpp.obj + 0002:00003a50 ??_7?$PatchDetour@P6GXXZPAX@hadesmem@@6B@ 1009ca50 main.cpp.obj + 0002:00003aa0 ??_C@_0FJ@CKOLAMMN@hadesmem?3?3detail?3?3SmartHandleIm@ 1009caa0 main.cpp.obj + 0002:00003b00 ??_C@_0FL@DOKMKPPP@hadesmem?3?3detail?3?3SmartHandleIm@ 1009cb00 main.cpp.obj + 0002:00003b60 ??_C@_0ED@JCILNKDP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 1009cb60 main.cpp.obj + 0002:00003ba8 ??_C@_0EC@NBLPENOM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 1009cba8 main.cpp.obj + 0002:00003bf0 ??_C@_0EE@IONPJLFD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 1009cbf0 main.cpp.obj + 0002:00003c38 ??_C@_0EH@GCGPEKIN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 1009cc38 main.cpp.obj + 0002:00003c80 ??_C@_0DN@HCDNLHCD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__s@ 1009cc80 main.cpp.obj + 0002:00003cc0 ??_C@_0FA@GGFAPFCJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ccc0 main.cpp.obj + 0002:00003d10 ??_C@_0EP@NOCFAKPK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009cd10 main.cpp.obj + 0002:00003d60 ??_C@_0FB@HKPPPFCN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009cd60 main.cpp.obj + 0002:00003db8 ??_C@_0FE@PMBAGJMC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009cdb8 main.cpp.obj + 0002:00003e10 ??_C@_0EK@IODNOJBC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ce10 main.cpp.obj + 0002:00003e60 ??_C@_0FK@DHPECJNJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ce60 main.cpp.obj + 0002:00003ec0 ??_C@_0FJ@KEPJMAML@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009cec0 main.cpp.obj + 0002:00003f20 ??_C@_0FL@MHBDKDON@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009cf20 main.cpp.obj + 0002:00003f80 ??_C@_0FO@CIOCKLLO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009cf80 main.cpp.obj + 0002:00003fe0 ??_C@_0FE@OCCPBJAI@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009cfe0 main.cpp.obj + 0002:00004038 ??_C@_0GB@CMIPBGLM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d038 main.cpp.obj + 0002:000040a0 ??_C@_0GA@NOGDNOJO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d0a0 main.cpp.obj + 0002:00004100 ??_C@_0GC@PKNAENAF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d100 main.cpp.obj + 0002:00004168 ??_C@_0GF@ENIDGHPD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d168 main.cpp.obj + 0002:000041d0 ??_C@_0FL@MEMFFBCH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d1d0 main.cpp.obj + 0002:00004230 ??_C@_0IE@MPIDPNEO@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009d230 main.cpp.obj + 0002:000042b8 ??_C@_0ID@LBIDDOBG@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009d2b8 main.cpp.obj + 0002:00004340 ??_C@_0IF@KJIANCNO@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009d340 main.cpp.obj + 0002:000043c8 ??_C@_0II@FBONHKFA@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009d3c8 main.cpp.obj + 0002:00004450 ??_C@_0HO@FGBNGFMK@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009d450 main.cpp.obj + 0002:000044d0 ??_C@_0FN@COKBPBGB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d4d0 main.cpp.obj + 0002:00004530 ??_C@_0FM@JNBHAJFN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d530 main.cpp.obj + 0002:00004590 ??_C@_0FO@CLAMNIL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d590 main.cpp.obj + 0002:000045f0 ??_C@_0GB@NABJKIJC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d5f0 main.cpp.obj + 0002:00004658 ??_C@_0FH@MGHHMICM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d658 main.cpp.obj + 0002:000046b0 ??_C@_0GE@LHOMILHH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d6b0 main.cpp.obj + 0002:00004718 ??_C@_0GD@NJDMKFFO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d718 main.cpp.obj + 0002:00004780 ??_C@_0GF@PGPNDFKA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d780 main.cpp.obj + 0002:000047e8 ??_C@_0GI@DAAJFHPP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d7e8 main.cpp.obj + 0002:00004850 ??_C@_0FO@PNFCAMCC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d850 main.cpp.obj + 0002:000048b0 ??_C@_0HE@KIIMFCKG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d8b0 main.cpp.obj + 0002:00004928 ??_C@_0HD@GDGGBKIN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d928 main.cpp.obj + 0002:000049a0 ??_C@_0HF@HDGLHDL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009d9a0 main.cpp.obj + 0002:00004a18 ??_C@_0HI@MEEMOBOO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009da18 main.cpp.obj + 0002:00004a90 ??_C@_0GO@CMGODEII@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009da90 main.cpp.obj + 0002:00004b00 ??_C@_0EP@MGMDIOMN@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 1009db00 main.cpp.obj + 0002:00004b50 ??_C@_0EO@EHLMJGBK@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 1009db50 main.cpp.obj + 0002:00004ba0 ??_C@_0FA@NNDIEADH@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 1009dba0 main.cpp.obj + 0002:00004bf0 ??_C@_0FD@HBBDECCN@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 1009dbf0 main.cpp.obj + 0002:00004c48 ??_C@_0EJ@GALGJHOJ@hadesmem?3?3PatchDetour?$DMint?5?$CK?5?$CI__@ 1009dc48 main.cpp.obj + 0002:00004c98 ??_C@_0IP@NMBMNIFG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009dc98 main.cpp.obj + 0002:00004d28 ??_C@_0IO@ECDOHAAO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009dd28 main.cpp.obj + 0002:00004db8 ??_C@_0JA@LKPPNFKN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ddb8 main.cpp.obj + 0002:00004e48 ??_C@_0JD@IIKBFGCA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009de48 main.cpp.obj + 0002:00004ee0 ??_C@_0IJ@KIKGLEPM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009dee0 main.cpp.obj + 0002:00004f70 ??_C@_0FG@CLOAKDIP@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009df70 main.cpp.obj + 0002:00004fc8 ??_C@_0FF@NMBCPEJK@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009dfc8 main.cpp.obj + 0002:00005020 ??_C@_0FH@EFAHEDKG@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e020 main.cpp.obj + 0002:00005078 ??_C@_0FK@BAIJOOIM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e078 main.cpp.obj + 0002:000050d8 ??_C@_0FA@FNDKAGCN@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e0d8 main.cpp.obj + 0002:00005128 ??_C@_0EP@CMBHHAFN@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009e128 main.cpp.obj + 0002:00005178 ??_C@_0EO@EGAFDPJO@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009e178 main.cpp.obj + 0002:000051c8 ??_C@_0FA@CNNNAHIN@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009e1c8 main.cpp.obj + 0002:00005218 ??_C@_0FD@NGICPGCO@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009e218 main.cpp.obj + 0002:00005270 ??_C@_0EJ@BHJFEBKJ@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009e270 main.cpp.obj + 0002:000052c0 ??_C@_0GJ@FBMDGMBA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e2c0 main.cpp.obj + 0002:00005330 ??_C@_0GI@JFIHMDBB@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e330 main.cpp.obj + 0002:00005398 ??_C@_0GK@CFMNOOLM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e398 main.cpp.obj + 0002:00005408 ??_C@_0GN@GBCACBEA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e408 main.cpp.obj + 0002:00005478 ??_C@_0GD@HFBIACGA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009e478 main.cpp.obj + 0002:000054e0 ??_C@_0EO@EHOAFBKP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009e4e0 main.cpp.obj + 0002:00005530 ??_C@_0EN@NKHFDJMO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009e530 main.cpp.obj + 0002:00005580 ??_C@_0EP@HOAFGDJM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009e580 main.cpp.obj + 0002:000055d0 ??_C@_0FC@ECPPMLHP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009e5d0 main.cpp.obj + 0002:00005628 ??_C@_0EI@NIFCFMJK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009e628 main.cpp.obj + 0002:00005670 ??_C@_0HA@OBNHLGJL@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009e670 main.cpp.obj + 0002:000056e0 ??_C@_0GP@FBMFGKGL@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009e6e0 main.cpp.obj + 0002:00005750 ??_C@_0HB@FPBHKAMO@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009e750 main.cpp.obj + 0002:000057c8 ??_C@_0HE@DOKJMEEF@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009e7c8 main.cpp.obj + 0002:00005840 ??_C@_0GK@OBCFALJF@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009e840 main.cpp.obj + 0002:000058b0 ??_C@_0GJ@DKOBECBA@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009e8b0 main.cpp.obj + 0002:00005920 ??_C@_0GI@NMPIDHEB@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009e920 main.cpp.obj + 0002:00005988 ??_C@_0GK@CFKGMMJC@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009e988 main.cpp.obj + 0002:000059f8 ??_C@_0GN@COCBLEFK@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009e9f8 main.cpp.obj + 0002:00005a68 ??_C@_0GD@LGHOPJLB@hadesmem?3?3PatchDetour?$DMint?5?$CI__st@ 1009ea68 main.cpp.obj + 0002:00005ad0 ??_C@_0IC@FJDBMJMP@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009ead0 main.cpp.obj + 0002:00005b58 ??_C@_0IB@KBPDBFM@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009eb58 main.cpp.obj + 0002:00005be0 ??_C@_0ID@DDKJNDFM@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009ebe0 main.cpp.obj + 0002:00005c68 ??_C@_0IG@OIPFBMAJ@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009ec68 main.cpp.obj + 0002:00005cf0 ??_C@_0HM@JJIDEBIB@hadesmem?3?3PatchDetour?$DMint?5?$CI__fa@ 1009ecf0 main.cpp.obj + 0002:00005d70 ??_C@_0GK@EOGIHJKJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ed70 main.cpp.obj + 0002:00005de0 ??_C@_0GJ@OEBBBEMC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ede0 main.cpp.obj + 0002:00005e50 ??_C@_0GL@JHGPEOIB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ee50 main.cpp.obj + 0002:00005ec0 ??_C@_0GO@NLEMCJBM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009eec0 main.cpp.obj + 0002:00005f30 ??_C@_0GE@KOJFDDGH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ef30 main.cpp.obj + 0002:00005f98 ??_C@_0FE@OMCNLAAC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009ef98 main.cpp.obj + 0002:00005ff0 ??_C@_0FD@MGKJMNOB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009eff0 main.cpp.obj + 0002:00006048 ??_C@_0FF@NGMJHBCI@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f048 main.cpp.obj + 0002:000060a0 ??_C@_0FI@GKIOGDFD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f0a0 main.cpp.obj + 0002:000060f8 ??_C@_0EO@BGCEFFKG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f0f8 main.cpp.obj + 0002:00006148 ??_C@_0GP@DKFIDIIB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f148 main.cpp.obj + 0002:000061b8 ??_C@_0GO@GFICKGEB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f1b8 main.cpp.obj + 0002:00006228 ??_C@_0HA@KCKONGDK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f228 main.cpp.obj + 0002:00006298 ??_C@_0HD@EHLMMKOM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f298 main.cpp.obj + 0002:00006310 ??_C@_0GJ@EAIACKBB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f310 main.cpp.obj + 0002:00006380 ??_C@_0GH@BBHBKCOP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f380 main.cpp.obj + 0002:000063e8 ??_C@_0GG@PIECFKPL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f3e8 main.cpp.obj + 0002:00006450 ??_C@_0GI@IIPLDPP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f450 main.cpp.obj + 0002:000064b8 ??_C@_0GL@IEDLBBFB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f4b8 main.cpp.obj + 0002:00006528 ??_C@_0GB@MMKDCIPG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f528 main.cpp.obj + 0002:00006590 ??_C@_0FA@LPCANDDG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f590 main.cpp.obj + 0002:000065e0 ??_C@_0EP@HIFJMJBD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f5e0 main.cpp.obj + 0002:00006630 ??_C@_0FB@PHCOIIPO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f630 main.cpp.obj + 0002:00006688 ??_C@_0FE@BIJKAHNP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f688 main.cpp.obj + 0002:000066e0 ??_C@_0EK@NCEOOBCN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f6e0 main.cpp.obj + 0002:00006730 ??_C@_0FB@IOIDOGLA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f730 main.cpp.obj + 0002:00006788 ??_C@_0FA@LFOCKALN@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f788 main.cpp.obj + 0002:000067d8 ??_C@_0FC@PDMEANNO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f7d8 main.cpp.obj + 0002:00006830 ??_C@_0FF@CGPMCGFD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f830 main.cpp.obj + 0002:00006888 ??_C@_0EL@MJEICIOC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f888 main.cpp.obj + 0002:000068d8 ??_C@_0EM@DLPEIJNB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f8d8 main.cpp.obj + 0002:00006928 ??_C@_0EL@BCECPAAA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f928 main.cpp.obj + 0002:00006978 ??_C@_0EN@MJMECLHP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f978 main.cpp.obj + 0002:000069c8 ??_C@_0FA@DNJIJCBK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009f9c8 main.cpp.obj + 0002:00006a18 ??_C@_0EG@HFKCIJJB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 1009fa18 main.cpp.obj + 0002:00006a60 ??_C@_0HE@JCEOEHIB@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fa60 main.cpp.obj + 0002:00006ad8 ??_C@_0HD@BECCPDOM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fad8 main.cpp.obj + 0002:00006b50 ??_C@_0HF@KCAGMAEF@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fb50 main.cpp.obj + 0002:00006bc8 ??_C@_0HI@NMIEHLIM@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fbc8 main.cpp.obj + 0002:00006c40 ??_C@_0GO@FAAFNIEE@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fc40 main.cpp.obj + 0002:00006cb0 ??_C@_0FL@HGFCPJFG@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009fcb0 main.cpp.obj + 0002:00006d10 ??_C@_0FK@GFDCPGA@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009fd10 main.cpp.obj + 0002:00006d70 ??_C@_0FM@LKFFJLIM@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009fd70 main.cpp.obj + 0002:00006dd0 ??_C@_0FP@OJNHFCIK@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009fdd0 main.cpp.obj + 0002:00006e30 ??_C@_0FF@BDJILBEG@hadesmem?3?3PatchDetour?$DMbool?5?$CI__f@ 1009fe30 main.cpp.obj + 0002:00006e88 ??_C@_0FI@JFOCINPB@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fe88 main.cpp.obj + 0002:00006ee0 ??_C@_0FH@NFCMJKOI@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fee0 main.cpp.obj + 0002:00006f38 ??_C@_0FJ@PCAEBNLD@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009ff38 main.cpp.obj + 0002:00006f98 ??_C@_0FM@LHFFKOMA@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009ff98 main.cpp.obj + 0002:00006ff8 ??_C@_0FC@FDIEOGFG@hadesmem?3?3PatchDetour?$DMunsigned?5@ 1009fff8 main.cpp.obj + 0002:00007050 ??_C@_0FP@FDCKJHHF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0050 main.cpp.obj + 0002:000070b0 ??_C@_0FO@BBOPKMNC@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a00b0 main.cpp.obj + 0002:00007110 ??_C@_0GA@BIBHJCJA@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0110 main.cpp.obj + 0002:00007170 ??_C@_0GD@LFPLJDMJ@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0170 main.cpp.obj + 0002:000071d8 ??_C@_0FJ@GCIPOLHH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a01d8 main.cpp.obj + 0002:00007238 ??_C@_0GH@JJEDIHGL@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0238 main.cpp.obj + 0002:000072a0 ??_C@_0GG@MCDNDICD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a02a0 main.cpp.obj + 0002:00007308 ??_C@_0GI@OCNCMGOD@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0308 main.cpp.obj + 0002:00007370 ??_C@_0GL@NGJFOLFF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0370 main.cpp.obj + 0002:000073e0 ??_C@_0GB@HOKLGKJM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a03e0 main.cpp.obj + 0002:00007448 ??_C@_0EO@EOPBFFM@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0448 main.cpp.obj + 0002:00007498 ??_C@_0EN@LMNIKAKG@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0498 main.cpp.obj + 0002:000074e8 ??_C@_0EP@FKPCMPHO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a04e8 main.cpp.obj + 0002:00007538 ??_C@_0FC@MJPCFLMP@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0538 main.cpp.obj + 0002:00007590 ??_C@_0EI@CEDHEIMB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0590 main.cpp.obj + 0002:000075d8 ??_C@_0GL@GGLNAMIF@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a05d8 main.cpp.obj + 0002:00007648 ??_C@_0GK@DDNMKGPK@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0648 main.cpp.obj + 0002:000076b8 ??_C@_0GM@KFJPPHBH@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a06b8 main.cpp.obj + 0002:00007728 ??_C@_0GP@KKGIAKIB@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0728 main.cpp.obj + 0002:00007798 ??_C@_0GF@NNBFNMOO@hadesmem?3?3PatchDetour?$DMvoid?5?$CI__f@ 100a0798 main.cpp.obj + 0002:00007804 ??_7?$wrapexcept@VError@hadesmem@@@boost@@6B@ 100a0804 main.cpp.obj + 0002:00007814 ??_7?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@std@@@ 100a0814 main.cpp.obj + 0002:00007820 ??_7?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@1@@ 100a0820 main.cpp.obj + 0002:00007824 ??_8?$wrapexcept@VError@hadesmem@@@boost@@7B@ 100a0824 main.cpp.obj + 0002:00007830 ??_C@_0P@CADPMCCM@Toolhelp32Enum@ 100a0830 main.cpp.obj + 0002:00007844 ??_7?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 100a0844 main.cpp.obj + 0002:00007854 ??_C@_01PKGAHCOL@?$CJ@ 100a0854 main.cpp.obj + 0002:00007858 ??_C@_0BF@KCPMKJAM@?5attempts?5?$CIoffset?50x@ 100a0858 main.cpp.obj + 0002:00007870 ??_C@_0BI@LPFEPKOA@?5?5Hook?5succeeded?5after?5@ 100a0870 main.cpp.obj + 0002:00007888 ??_C@_0P@GMOIJGGB@?5?9?5retrying?4?4?4@ 100a0888 main.cpp.obj + 0002:00007898 ??_C@_0BL@GLPGJHGB@?5?5Hook?5failed?5on?5offset?50x@ 100a0898 main.cpp.obj + 0002:000078b4 ??_C@_0BA@BHOKINGE@?5?5FAILED?5after?5@ 100a08b4 main.cpp.obj + 0002:000078c4 ??_C@_0CP@GBDDEGCO@?5?5Hook?5failed?5with?5std?3?3excepti@ 100a08c4 main.cpp.obj + 0002:000078f4 ??_C@_0DC@OCFGAIKL@?5?5Hook?5failed?5with?5unknown?5exce@ 100a08f4 main.cpp.obj + 0002:00007928 ??_C@_07NBEOHAHH@?5Type?3?5@ 100a0928 main.cpp.obj + 0002:00007930 ??_C@_0L@LKMHAKKL@?5Protect?3?5@ 100a0930 main.cpp.obj + 0002:0000793c ??_C@_08CHPDLAMK@?5State?3?5@ 100a093c main.cpp.obj + 0002:00007948 ??_C@_07FNIPFEMD@?5Size?3?5@ 100a0948 main.cpp.obj + 0002:00007950 ??_C@_0BJ@KJCAKANC@?5?5Memory?5info?5?9?5Base?3?50x@ 100a0950 main.cpp.obj + 0002:0000796c ??_C@_0L@CLBNCPDM@createHook@ 100a096c main.cpp.obj + 0002:00007978 ??_C@_0CI@DFGDNLDL@C?3?2workspace?2nampower?2nampower?2@ 100a0978 main.cpp.obj + 0002:000079a0 ??_C@_0CP@CACHEKIE@Failed?5to?5create?5hook?5after?5all@ 100a09a0 main.cpp.obj + 0002:000079d4 ??_7?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 100a09d4 main.cpp.obj + 0002:000079e8 ??_7?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 100a09e8 main.cpp.obj + 0002:000079f8 ??_C@_02MDKMJEGG@eE@ 100a09f8 main.cpp.obj + 0002:000079fc ??_C@_02OOPEBDOJ@pP@ 100a09fc main.cpp.obj + 0002:00007a00 ??_C@_04IHCGILC@?$CB?$CFx?$AA@ 100a0a00 main.cpp.obj + 0002:00007a08 ??_C@_0M@HIBANGPP@PatchDetour@ 100a0a08 main.cpp.obj + 0002:00007a14 ??_C@_0CN@JBEOHMAH@PatchDetour?5only?5supported?5on?5l@ 100a0a14 main.cpp.obj + 0002:00007a44 ??_C@_0BA@FOIKENOD@vector?5too?5long@ 100a0a44 main.cpp.obj + 0002:00007a58 ??_7?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 100a0a58 main.cpp.obj + 0002:00007a60 ??_7?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bbad_alloc@std@@@ 100a0a60 main.cpp.obj + 0002:00007a6c ??_7?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6B@ 100a0a6c main.cpp.obj + 0002:00007a78 ??_8?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@7B@ 100a0a78 main.cpp.obj + 0002:00007a80 ??_C@_0EC@KFLIJNMG@C?3?2software?2boost_1_80_0?2boost?1@ 100a0a80 main.cpp.obj + 0002:00007ac8 ??_C@_0IK@LHEHAGMH@class?5boost?3?3exception_ptr?5__cd@ 100a0ac8 main.cpp.obj + 0002:00007b58 ??_7?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 100a0b58 main.cpp.obj + 0002:00007b60 ??_7?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bbad_exception@std@@@ 100a0b60 main.cpp.obj + 0002:00007b6c ??_7?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6B@ 100a0b6c main.cpp.obj + 0002:00007b78 ??_8?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@7B@ 100a0b78 main.cpp.obj + 0002:00007b80 ??_C@_0IO@BHMGIOEK@class?5boost?3?3exception_ptr?5__cd@ 100a0b80 main.cpp.obj + 0002:00007c14 ??_7?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@6B@ 100a0c14 main.cpp.obj + 0002:00007c30 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@6B@ 100a0c30 main.cpp.obj + 0002:00007c4c ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@6B@ 100a0c4c main.cpp.obj + 0002:00007c68 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@6B@ 100a0c68 main.cpp.obj + 0002:00007c84 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@6B@ 100a0c84 main.cpp.obj + 0002:00007ca0 ??_7?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@6B@ 100a0ca0 main.cpp.obj + 0002:00007cbc ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@6B@ 100a0cbc main.cpp.obj + 0002:00007cd8 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@6B@ 100a0cd8 main.cpp.obj + 0002:00007cf4 ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@6B@ 100a0cf4 main.cpp.obj + 0002:00007d10 ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@6B@ 100a0d10 main.cpp.obj + 0002:00007d2c ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@6B@ 100a0d2c main.cpp.obj + 0002:00007d48 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@6B@ 100a0d48 main.cpp.obj + 0002:00007d64 ??_7?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@6B@ 100a0d64 main.cpp.obj + 0002:00007d80 ??_7?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@6B@ 100a0d80 main.cpp.obj + 0002:00007d9c ??_7?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@6B@ 100a0d9c main.cpp.obj + 0002:00007db8 ??_7?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@6B@ 100a0db8 main.cpp.obj + 0002:00007dd4 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@6B@ 100a0dd4 main.cpp.obj + 0002:00007df0 ??_7?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@6B@ 100a0df0 main.cpp.obj + 0002:00007e0c ??_7?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@6B@ 100a0e0c main.cpp.obj + 0002:00007e28 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@6B@ 100a0e28 main.cpp.obj + 0002:00007e44 ??_7?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@6B@ 100a0e44 main.cpp.obj + 0002:00007e60 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@6B@ 100a0e60 main.cpp.obj + 0002:00007e7c ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@6B@ 100a0e7c main.cpp.obj + 0002:00007e98 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@6B@ 100a0e98 main.cpp.obj + 0002:00007eb4 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@6B@ 100a0eb4 main.cpp.obj + 0002:00007ed0 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@6B@ 100a0ed0 main.cpp.obj + 0002:00007eec ??_7?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@6B@ 100a0eec main.cpp.obj + 0002:00007f08 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@6B@ 100a0f08 main.cpp.obj + 0002:00007f24 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@6B@ 100a0f24 main.cpp.obj + 0002:00007f40 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@6B@ 100a0f40 main.cpp.obj + 0002:00007f5c ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@6B@ 100a0f5c main.cpp.obj + 0002:00007f78 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@6B@ 100a0f78 main.cpp.obj + 0002:00007f94 ??_7?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@6B@ 100a0f94 main.cpp.obj + 0002:00007fb0 ??_7?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 100a0fb0 main.cpp.obj + 0002:00007fcc ??_7?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 100a0fcc main.cpp.obj + 0002:00007fe8 ??_7?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@6B@ 100a0fe8 main.cpp.obj + 0002:00008004 ??_7?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@6B@ 100a1004 main.cpp.obj + 0002:00008020 __real@4202a05f20000000 100a1020 main.cpp.obj + 0002:00008030 __xmm@7fffffffffffffff7fffffffffffffff 100a1030 main.cpp.obj + 0002:00008040 __xmm@ffffffff000000000000000000000000 100a1040 main.cpp.obj + 0002:00008050 ?kNilGuidStr@Nampower@@3QBDB 100a1050 helper.cpp.obj + 0002:00008068 ??_C@_09IFBAIJJB@0x?$CF016llX@ 100a1068 helper.cpp.obj + 0002:00008074 ??_C@_02MDDDDAID@0x@ 100a1074 helper.cpp.obj + 0002:00008078 ??_C@_02FGLHBECB@0X@ 100a1078 helper.cpp.obj + 0002:0000807c ??_C@_0BL@GOIGLPKN@unordered_map?1set?5too?5long@ 100a107c helper.cpp.obj + 0002:00008098 ??_C@_0BK@OGNNAFAB@invalid?5hash?5bucket?5count@ 100a1098 helper.cpp.obj + 0002:000080b8 __real@3ff8000000000000 100a10b8 helper.cpp.obj + 0002:000080c0 __xmm@41f00000000000000000000000000000 100a10c0 helper.cpp.obj + 0002:000080d4 ??_C@_0BC@MHCHADOA@?5for?5gcdCategory?5@ 100a10d4 spellcast.cpp.obj + 0002:000080e8 ??_C@_06BIDGLIKJ@?5with?5@ 100a10e8 spellcast.cpp.obj + 0002:000080f0 ??_C@_0BP@FJKKCADI@Replacing?5queued?5nonGcd?5spell?5@ 100a10f0 spellcast.cpp.obj + 0002:00008110 ??_C@_0DN@LFNKAAEA@Target?5changed?5during?5quick?5cas@ 100a1110 spellcast.cpp.obj + 0002:00008150 ??_C@_0BA@MCIJFKAO@?5queuetrigger?3?5@ 100a1150 spellcast.cpp.obj + 0002:00008160 ??_C@_0N@CJFDIMCD@?5quickcast?3?5@ 100a1160 spellcast.cpp.obj + 0002:00008170 ??_C@_0BM@EOLKOAOP@Quickcasting?5terrain?5spell?5@ 100a1170 spellcast.cpp.obj + 0002:0000818c ??_C@_0DL@IFODHHPF@GetChannelBaseDuration?3?5Duratio@ 100a118c spellcast.cpp.obj + 0002:000081c8 ??_C@_0DA@JCBAJNFA@Ignoring?5non?5active?5player?5begi@ 100a11c8 spellcast.cpp.obj + 0002:000081f8 ??_C@_0BH@CIIHKNNM@?5time?5since?5last?5cast?5@ 100a11f8 spellcast.cpp.obj + 0002:00008210 ??_C@_0L@CFJAIELA@?5latency?3?5@ 100a1210 spellcast.cpp.obj + 0002:0000821c ??_C@_06GJNNAKOE@?5Gcd?3?5@ 100a121c spellcast.cpp.obj + 0002:00008224 ??_C@_09NPFKODNJ@?5buffer?3?5@ 100a1224 spellcast.cpp.obj + 0002:00008230 ??_C@_0N@CCNKJBBP@?5cast?5time?3?5@ 100a1230 spellcast.cpp.obj + 0002:00008240 ??_C@_01ODHLEDKK@?$CI@ 100a1240 spellcast.cpp.obj + 0002:00008244 ??_C@_0M@BFOLJPLE@BeginCast?5?$CD@ 100a1244 spellcast.cpp.obj + 0002:00008250 ??_C@_07FJDGAAH@?5NO?5Gcd@ 100a1250 spellcast.cpp.obj + 0002:00008258 ??_C@_0BO@OKAMCEBE@Decreasing?5default?5buffer?5to?5@ 100a1258 spellcast.cpp.obj + 0002:00008278 ??_C@_0CD@HHFGFCEF@Triggering?5queued?5non?5gcd?5cast?5@ 100a1278 spellcast.cpp.obj + 0002:0000829c ??_C@_0CK@IDCOKNOH@Ignoring?5queued?5non?5gcd?5cast?0?5n@ 100a129c spellcast.cpp.obj + 0002:000082c8 ??_C@_0BL@OIEKGDFF@Triggering?5queued?5cast?5of?5@ 100a12c8 spellcast.cpp.obj + 0002:000082e4 ??_C@_0CC@DLDNPCKF@Ignoring?5queued?5cast?0?5no?5spell?5@ 100a12e4 spellcast.cpp.obj + 0002:00008308 ??_C@_0BH@MNDFAADJ@?0?5triggering?5quickcast@ 100a1308 spellcast.cpp.obj + 0002:00008320 ??_C@_0DE@CEFFBIDD@CastSpell?5double?5cast?5detected?5@ 100a1320 spellcast.cpp.obj + 0002:00008354 ??_C@_0DF@OKDGBKLA@Use?5action?5double?5cast?5detected@ 100a1354 spellcast.cpp.obj + 0002:0000838c ??_C@_0CK@KAINKJIL@Ignoring?5non?5active?5player?5cast@ 100a138c spellcast.cpp.obj + 0002:000083b8 ??_C@_0BB@POLDOEMN@?5due?5to?5buff?5cap@ 100a13b8 spellcast.cpp.obj + 0002:000083cc ??_C@_0BG@FMMOGOEG@Blocking?5mount?5spell?5@ 100a13cc spellcast.cpp.obj + 0002:000083e4 ??_C@_06EGFPNNHB@?5from?5@ 100a13e4 spellcast.cpp.obj + 0002:000083ec ??_C@_0BO@GDCPHICE@Updating?5selection?5target?5to?5@ 100a13ec spellcast.cpp.obj + 0002:0000840c ??_C@_0BH@DKPBEKJE@?0?5ending?5channel?5early@ 100a140c spellcast.cpp.obj + 0002:00008424 ??_C@_0BK@JFKBDLAO@Double?5cast?5detected?5for?5@ 100a1424 spellcast.cpp.obj + 0002:00008440 ??_C@_0BI@LMDLBPCD@?0?5time?5since?5last?5cast?5@ 100a1440 spellcast.cpp.obj + 0002:00008458 ??_C@_08DJKAFFEB@?5target?5@ 100a1458 spellcast.cpp.obj + 0002:00008464 ??_C@_09GCJJPOLD@?5on?5guid?5@ 100a1464 spellcast.cpp.obj + 0002:00008470 ??_C@_08EJFJFLKG@?5itemId?5@ 100a1470 spellcast.cpp.obj + 0002:0000847c ??_C@_0O@CIKJCEOK@Attempt?5cast?5@ 100a147c spellcast.cpp.obj + 0002:0000848c ??_C@_0BI@DAADBDOK@Queuing?5on?5swing?5spell?5@ 100a148c spellcast.cpp.obj + 0002:000084a4 ??_C@_0BL@JIPDAEEF@Successful?5on?5swing?5spell?5@ 100a14a4 spellcast.cpp.obj + 0002:000084c0 ??_C@_03NEMEPNJG@ms?5@ 100a14c0 spellcast.cpp.obj + 0002:000084c4 ??_C@_0CH@CAOMOENB@Queuing?5targeting?5for?5after?5cas@ 100a14c4 spellcast.cpp.obj + 0002:000084ec ??_C@_0DE@KDCLAKNN@Queuing?5instant?5cast?5targeting?5@ 100a14ec spellcast.cpp.obj + 0002:00008520 ??_C@_0DE@BKONOIBH@Updating?5instant?5cast?5non?5GCD?5t@ 100a1520 spellcast.cpp.obj + 0002:00008554 ??_C@_0P@NGFFJPPH@?5gcd?5category?5@ 100a1554 spellcast.cpp.obj + 0002:00008564 ??_C@_0DM@FPCEIGOB@Queuing?5instant?5cast?5non?5GCD?5ta@ 100a1564 spellcast.cpp.obj + 0002:000085a0 ??_C@_0BN@HPKBJIBH@Queuing?5for?5after?5cast?1gcd?3?5@ 100a15a0 spellcast.cpp.obj + 0002:000085c0 ??_C@_0BN@NNFKHHAA@Updating?5non?5GCD?5params?5for?5@ 100a15c0 spellcast.cpp.obj + 0002:000085e0 ??_C@_0CF@LOKNHDBF@Queuing?5non?5GCD?5for?5after?5cast?1@ 100a15e0 spellcast.cpp.obj + 0002:00008608 ??_C@_0N@PBPCOGKN@instant?5cast@ 100a1608 spellcast.cpp.obj + 0002:00008618 ??_C@_0L@OAKOENBO@channeling@ 100a1618 spellcast.cpp.obj + 0002:00008624 ??_C@_0BG@HMCDLKNN@?5for?5after?5cast?1gcd?3?5@ 100a1624 spellcast.cpp.obj + 0002:0000863c ??_C@_08INMJLCKL@Queuing?5@ 100a163c spellcast.cpp.obj + 0002:00008648 ??_C@_0BF@COEDODBD@?5non?5GCD?5params?5for?5@ 100a1648 spellcast.cpp.obj + 0002:00008660 ??_C@_09MNPPNDJM@Updating?5@ 100a1660 spellcast.cpp.obj + 0002:0000866c ??_C@_0BO@BJDBMPFM@?5non?5GCD?5for?5after?5cast?1gcd?3?5@ 100a166c spellcast.cpp.obj + 0002:0000868c ??_C@_0N@MJFJIIIG@ms?5remaining@ 100a168c spellcast.cpp.obj + 0002:0000869c ??_C@_0BG@BELMLGGG@Cast?5or?5delay?5active?5@ 100a169c spellcast.cpp.obj + 0002:000086b4 ??_C@_0M@GEFIMPOA@Gcd?5active?5@ 100a16b4 spellcast.cpp.obj + 0002:000086c0 ??_C@_0DJ@HICJFDGG@?5cast?5still?5waiting?5for?5server?5@ 100a16c0 spellcast.cpp.obj + 0002:000086fc ??_C@_09CPGKBJMK@Ignoring?5@ 100a16fc spellcast.cpp.obj + 0002:00008708 ??_C@_0DH@KHOFHJBE@?5cast?5recently?5succeeded?5for?5th@ 100a1708 spellcast.cpp.obj + 0002:00008740 ??_C@_0EA@OCEKPMFJ@Canceling?5spell?5cast?5due?5to?5pre@ 100a1740 spellcast.cpp.obj + 0002:00008780 ??_C@_0CF@LIPBLKIF@Retry?5cast?5after?5cancel?5still?5f@ 100a1780 spellcast.cpp.obj + 0002:000087a8 ??_C@_0BF@BEANNNJB@?5spellIsOnCooldown?5?$DN@ 100a17a8 spellcast.cpp.obj + 0002:000087c0 ??_C@_0BG@JAEPGBDL@?5pendingOnSwingCast?5?$DN@ 100a17c0 spellcast.cpp.obj + 0002:000087d8 ??_C@_0EF@NBDHPPFO@Initial?5cast?5failed?5but?5not?5can@ 100a17d8 spellcast.cpp.obj + 0002:00008820 ??_C@_0DE@DGCCEIJD@Ignoring?5cancel?5spell?5cast?5due?5@ 100a1820 spellcast.cpp.obj + 0002:00008854 ??_C@_08NFIDAFLL@?5reason?3@ 100a1854 spellcast.cpp.obj + 0002:00008860 ??_C@_0P@OHLEPHP@?5notifyServer?3@ 100a1860 spellcast.cpp.obj + 0002:00008870 ??_C@_0BK@LBLJOMCE@Cancel?5spell?5cast?5failed?3@ 100a1870 spellcast.cpp.obj + 0002:0000888c ??_C@_0L@DHBENNO@?5duration?5@ 100a188c spellchannel.cpp.obj + 0002:00008898 ??_C@_0BA@PHCPFKHC@Channel?5start?3?5@ 100a1898 spellchannel.cpp.obj + 0002:000088a8 ??_C@_0EB@ONHCPBOA@Adding?51?5second?5to?5Arcane?5Missi@ 100a18a8 spellchannel.cpp.obj + 0002:000088ec ??_C@_05POFHKGEO@?5for?5@ 100a18ec spellchannel.cpp.obj + 0002:000088f4 ??_C@_0BN@FEHMJJBM@Invalid?5originalDuration?5of?5@ 100a18f4 spellchannel.cpp.obj + 0002:00008914 ??_C@_0BD@BMJLBBMG@?5scaled?5tick?5time?5@ 100a1914 spellchannel.cpp.obj + 0002:00008928 ??_C@_0BE@HNMLIODA@Original?5tick?5time?5@ 100a1928 spellchannel.cpp.obj + 0002:0000893c ??_C@_0BJ@OBCFLFNO@?0?5defaulting?5to?5duration@ 100a193c spellchannel.cpp.obj + 0002:00008958 ??_C@_0BP@KNLPIMJL@Invalid?5channel?5tick?5time?5for?5@ 100a1958 spellchannel.cpp.obj + 0002:00008978 ??_C@_0CD@PPICPDAH@Ignoring?1resetting?5channeling?5f@ 100a1978 spellchannel.cpp.obj + 0002:0000899c ??_C@_09IMKLHFKG@?5elapsed?5@ 100a199c spellchannel.cpp.obj + 0002:000089a8 ??_C@_0P@DILMPNKC@Channel?5done?3?5@ 100a19a8 spellchannel.cpp.obj + 0002:000089b8 ??_C@_0M@HOBALKP@?5remaining?5@ 100a19b8 spellchannel.cpp.obj + 0002:000089c4 ??_C@_0BB@IJINAKFI@Channel?5update?3?5@ 100a19c4 spellchannel.cpp.obj + 0002:000089d8 __real@3f800000 100a19d8 spellchannel.cpp.obj + 0002:000089e0 ??_C@_08KHPECABI@?5result?5@ 100a19e0 spellevents.cpp.obj + 0002:000089ec ??_C@_06BFJJLGJH@?5guid?5@ 100a19ec spellevents.cpp.obj + 0002:000089f4 ??_C@_0BD@JCCHCLOL@Spell?5target?5unit?5@ 100a19f4 spellevents.cpp.obj + 0002:00008a08 ??_C@_0BL@DLGFEAGG@?0?5stopping?5disenchant?5loop@ 100a1a08 spellevents.cpp.obj + 0002:00008a24 ??_C@_0CF@GIAGKMIP@Disenchant?5spell?5failed?5with?5re@ 100a1a24 spellevents.cpp.obj + 0002:00008a4c ??_C@_0P@LJPLECIE@?5queuing?5retry@ 100a1a4c spellevents.cpp.obj + 0002:00008a5c ??_C@_0BH@EOGBFMAP@?5is?5still?5on?5cooldown?5@ 100a1a5c spellevents.cpp.obj + 0002:00008a74 ??_C@_0P@KAMGEGPI@Non?5gcd?5spell?5@ 100a1a74 spellevents.cpp.obj + 0002:00008a84 ??_C@_06IPOHHIAK@Spell?5@ 100a1a84 spellevents.cpp.obj + 0002:00008a8c ??_C@_05LDELDIBH@Item?5@ 100a1a8c spellevents.cpp.obj + 0002:00008a94 ??_C@_0DK@JCOGHOGB@?5not?5queuing?5retry?5due?5to?5retry@ 100a1a94 spellevents.cpp.obj + 0002:00008ad0 ??_C@_06FHPAMJEI@?5code?5@ 100a1ad0 spellevents.cpp.obj + 0002:00008ad8 ??_C@_0BB@GOHBAIHL@Cast?5failed?5for?5@ 100a1ad8 spellevents.cpp.obj + 0002:00008aec ??_C@_0CM@MHLCDCAG@?0?5but?5a?5recent?5cast?5succeeded?0?5@ 100a1aec spellevents.cpp.obj + 0002:00008b18 ??_C@_0P@LOMEMCGF@?5non?5gcd?5code?5@ 100a1b18 spellevents.cpp.obj + 0002:00008b28 ??_C@_0BC@HJBAKONN@Cast?5failed?5for?5?$CD@ 100a1b28 spellevents.cpp.obj + 0002:00008b3c ??_C@_08KEELPODO@?0?5retry?5@ 100a1b3c spellevents.cpp.obj + 0002:00008b48 ??_C@_0BK@OMKDJBI@?0?5gcd?5active?5not?5retrying@ 100a1b48 spellevents.cpp.obj + 0002:00008b64 ??_C@_0DG@MLJODHHA@?0?5not?5retrying?5as?5it?5has?5alread@ 100a1b64 spellevents.cpp.obj + 0002:00008b9c ??_C@_0CJ@IJODEHEO@?0?5no?5recent?5cast?5params?5found?5i@ 100a1b9c spellevents.cpp.obj + 0002:00008bc8 ??_C@_0BG@FLHHKDJE@Increasing?5buffer?5to?5@ 100a1bc8 spellevents.cpp.obj + 0002:00008be0 ??_C@_0BO@GJJBLJHI@?5spell?5queued?5?$CL?5ignored?5code?5@ 100a1be0 spellevents.cpp.obj + 0002:00008c00 ??_C@_0P@HGCHGFMH@?5ignored?5code?5@ 100a1c00 spellevents.cpp.obj + 0002:00008c10 ??_C@_0L@OAJLDHO@?5cast?5end?5@ 100a1c10 spellevents.cpp.obj + 0002:00008c1c ??_C@_0M@IGIIHODJ@?5for?5cast?5?$CD@ 100a1c1c spellevents.cpp.obj + 0002:00008c28 ??_C@_0BC@DONHDJOM@Spell?5delayed?5by?5@ 100a1c28 spellevents.cpp.obj + 0002:00008c3c ??_C@_0CC@EGDHOKK@Negative?5server?5delay?5using?51?5m@ 100a1c3c spellevents.cpp.obj + 0002:00008c60 ??_C@_0BJ@OIOPABDB@?5since?5last?5cast?5result?5@ 100a1c60 spellevents.cpp.obj + 0002:00008c7c ??_C@_0P@NNAMHHPH@?5server?5delay?5@ 100a1c7c spellevents.cpp.obj + 0002:00008c8c ??_C@_09HEBFMKKB@?5latency?5@ 100a1c8c spellevents.cpp.obj + 0002:00008c98 ??_C@_08PBNHDDEM@?5status?5@ 100a1c98 spellevents.cpp.obj + 0002:00008ca4 ??_C@_0BC@EJFCOIPD@Cast?5result?5for?5?$CD@ 100a1ca4 spellevents.cpp.obj + 0002:00008cb8 ??_C@_0DG@HHHCJMND@Unable?5to?5determine?5spell?5infor@ 100a1cb8 spellevents.cpp.obj + 0002:00008cf0 ??_C@_0CK@IFJMEEJK@?5resolved?0?5casting?5queued?5on?5sw@ 100a1cf0 spellevents.cpp.obj + 0002:00008d1c ??_C@_0BA@IBBPALEH@On?5swing?5spell?5@ 100a1d1c spellevents.cpp.obj + 0002:00008d2c ??_C@_0BP@KBPEDDDH@ms?4?5?5Updated?5cast?5end?5time?5to?5@ 100a1d2c spellevents.cpp.obj + 0002:00008d4c ??_C@_0P@FFNLEJE@?5increased?5by?5@ 100a1d4c spellevents.cpp.obj + 0002:00008d5c ??_C@_0BG@GOJCDGMO@Server?5cast?5time?5for?5@ 100a1d5c spellevents.cpp.obj + 0002:00008d74 ??_C@_0BD@BGGCHONF@?5using?5gcd?5instead@ 100a1d74 spellevents.cpp.obj + 0002:00008d88 ??_C@_0BL@FOLCLIGH@?5was?5reduced?5below?5gcd?5of?5@ 100a1d88 spellevents.cpp.obj + 0002:00008da4 ??_C@_0BC@BIFPIPLA@Server?5cast?5time?5@ 100a1da4 spellevents.cpp.obj + 0002:00008db8 ??_C@_0P@FFGOHLGM@?5decreased?5by?5@ 100a1db8 spellevents.cpp.obj + 0002:00008dc8 ??_C@_01IHBHIGKO@?0@ 100a1dc8 spellevents.cpp.obj + 0002:00008dcc ??_C@_05FAEMOKCC@0?00?00@ 100a1dcc spellevents.cpp.obj + 0002:00008dd4 ??_C@_0DK@CIFAMPDN@ChannelStopCastingNextTick?5acti@ 100a1dd4 misc_scripts.cpp.obj + 0002:00008e10 ??_C@_0BH@ICDGKODB@Trying?5to?5queue?5script@ 100a1e10 misc_scripts.cpp.obj + 0002:00008e28 ??_C@_0BJ@GCMABBOM@Queuing?5script?5priority?5@ 100a1e28 misc_scripts.cpp.obj + 0002:00008e44 ??_C@_0BB@FNONMKDE@Queuing?5script?3?5@ 100a1e44 misc_scripts.cpp.obj + 0002:00008e58 ??_C@_0P@HMLODIOA@Invalid?5script@ 100a1e58 misc_scripts.cpp.obj + 0002:00008e68 ??_C@_0DB@IIJNBKKP@Usage?3?5QueueScript?$CI?$CCscript?$CC?0?5?$CIo@ 100a1e68 misc_scripts.cpp.obj + 0002:00008e9c ??_C@_0DG@CFKCJDMF@Usage?3?5LearnTalentRank?$CItalentPa@ 100a1e9c misc_scripts.cpp.obj + 0002:00008ed4 ??_C@_0DB@KHHAPJHC@LearnTalentRank?3?5talentPage?5mus@ 100a1ed4 misc_scripts.cpp.obj + 0002:00008f08 ??_C@_0DD@CEAMLHNG@LearnTalentRank?3?5talentIndex?5mu@ 100a1f08 misc_scripts.cpp.obj + 0002:00008f3c ??_C@_0CL@LNIFCCIK@LearnTalentRank?3?5rank?5must?5be?5i@ 100a1f3c misc_scripts.cpp.obj + 0002:00008f68 ??_C@_0CN@IIMNGAJO@LearnTalentRank?3?5active?5player?5@ 100a1f68 misc_scripts.cpp.obj + 0002:00008f98 ??_C@_0DB@KAIKGKJP@LearnTalentRank?3?5unable?5to?5read@ 100a1f98 misc_scripts.cpp.obj + 0002:00008fcc ??_C@_0DB@EGFHDGCE@LearnTalentRank?3?5talent?5page?1in@ 100a1fcc misc_scripts.cpp.obj + 0002:00009000 ??_C@_0DF@PBDCOHKH@LearnTalentRank?3?5unable?5to?5read@ 100a2000 misc_scripts.cpp.obj + 0002:00009038 ??_C@_0CO@NNINIBAN@LearnTalentRank?3?5talents?5base?5p@ 100a2038 misc_scripts.cpp.obj + 0002:00009068 ??_C@_0DD@IOILFIIO@LearnTalentRank?3?5unable?5to?5read@ 100a2068 misc_scripts.cpp.obj + 0002:0000909c ??_C@_0CM@LFMAAGG@LearnTalentRank?3?5talent?5tab?5poi@ 100a209c misc_scripts.cpp.obj + 0002:000090c8 ??_C@_0DE@KGHHPFML@LearnTalentRank?3?5unable?5to?5read@ 100a20c8 misc_scripts.cpp.obj + 0002:000090fc ??_C@_0CN@NANFJOCM@LearnTalentRank?3?5invalid?5talent@ 100a20fc misc_scripts.cpp.obj + 0002:0000912c ??_C@_0DK@BCIOPPLL@LearnTalentRank?3?5talent?5index?5n@ 100a212c misc_scripts.cpp.obj + 0002:00009168 ??_C@_0CN@ENLDBILH@LearnTalentRank?3?5unable?5to?5read@ 100a2168 misc_scripts.cpp.obj + 0002:00009198 ??_C@_0CL@CFACCJMP@LearnTalentRank?3?5resolved?5inval@ 100a2198 misc_scripts.cpp.obj + 0002:000091c4 ??_C@_0CA@LIPPIENP@Running?5queued?5script?5priority?5@ 100a21c4 misc_scripts.cpp.obj + 0002:000091e8 ??_C@_0GL@FBDGPFHJ@Usage?3?5GetUnitData?$CIunitToken?0?5?$FL@ 100a21e8 misc_scripts.cpp.obj + 0002:00009258 ??_C@_0HH@IDABAAKA@Usage?3?5GetUnitField?$CIunitToken?0?5@ 100a2258 misc_scripts.cpp.obj + 0002:000092d0 ??_C@_0BD@JACGONMB@Unknown?5field?5name@ 100a22d0 misc_scripts.cpp.obj + 0002:000092e4 ??_C@_0CH@POINFHMC@Trying?5disenchant?5with?5quality?5@ 100a22e4 misc_scripts.cpp.obj + 0002:0000930c ??_C@_0DC@DMOAEFOF@No?5disenchantable?5item?5found?0?5s@ 100a230c misc_scripts.cpp.obj + 0002:00009340 ??_C@_0DO@MCLKPIML@DEFAULT_CHAT_FRAME?3AddMessage?$CI?$CC@ 100a2340 misc_scripts.cpp.obj + 0002:00009380 ??_C@_0CC@JPCIHLOK@Invalid?5item?0?5stopping?5disencha@ 100a2380 misc_scripts.cpp.obj + 0002:000093a4 ??_C@_0CE@FKMNNJC@No?5player?5unit?0?5stopping?5disenc@ 100a23a4 misc_scripts.cpp.obj + 0002:000093c8 ??_C@_0KC@NEILAFDD@local?5itemLink?5?$DN?5GetContainerIt@ 100a23c8 misc_scripts.cpp.obj + 0002:0000946c ??_C@_0CB@IFDJLBBM@Cast?5failed?0?5stopping?5disenchan@ 100a246c misc_scripts.cpp.obj + 0002:00009490 ??_C@_0ED@LGBHLFPD@DEFAULT_CHAT_FRAME?3AddMessage?$CI?$CC@ 100a2490 misc_scripts.cpp.obj + 0002:000094d8 ??_C@_0BFF@NPPMOAEC@Usage?3?5DisenchantAll?$CIitemIdOrNa@ 100a24d8 misc_scripts.cpp.obj + 0002:00009630 ??_C@_0CF@KNHJOLMC@You?5do?5not?5have?5the?5Disenchant?5@ 100a2630 misc_scripts.cpp.obj + 0002:00009658 ??_C@_06HBBJMNDD@greens@ 100a2658 misc_scripts.cpp.obj + 0002:00009660 ??_C@_05EBCMBJBB@blues@ 100a2660 misc_scripts.cpp.obj + 0002:00009668 ??_C@_07MBLGJMK@purples@ 100a2668 misc_scripts.cpp.obj + 0002:00009670 ??_C@_0CJ@IECDANKF@Usage?3?5GetItemIconTexture?$CIdispl@ 100a2670 misc_scripts.cpp.obj + 0002:0000969c ??_C@_0N@HLONNMCP@QuestionMark@ 100a269c misc_scripts.cpp.obj + 0002:000096ac ??_C@_0CI@EAELDEKM@Usage?3?5GetSpellIconTexture?$CIspel@ 100a26ac misc_scripts.cpp.obj + 0002:000096d4 ??_C@_0CH@JKODAONC@Usage?3?5GetPlayerAuraDuration?$CIau@ 100a26d4 misc_scripts.cpp.obj + 0002:000096fc ??_C@_0CG@MADAJHEF@Usage?3?5CancelPlayerAuraSlot?$CIaur@ 100a26fc misc_scripts.cpp.obj + 0002:00009724 ??_C@_0DJ@CFIPDIAI@Usage?3?5CancelPlayerAuraSpellId?$CI@ 100a2724 misc_scripts.cpp.obj + 0002:00009760 ??_C@_0BO@JKLHDAJO@Usage?3?5GetUnitGUID?$CIunitToken?$CJ@ 100a2760 misc_scripts.cpp.obj + 0002:00009780 ??_C@_0BN@PLDKKIKI@Usage?3?5IsAuraHidden?$CIspellId?$CJ@ 100a2780 misc_scripts.cpp.obj + 0002:000097a0 ??_C@_05HEIBENID@owner@ 100a27a0 misc_scripts.cpp.obj + 0002:000097a8 ??_C@_06JJLAMBGK@target@ 100a27a8 misc_scripts.cpp.obj + 0002:000097b0 ??_C@_03LAMLDFEG@pet@ 100a27b0 misc_scripts.cpp.obj + 0002:000097b4 ??_C@_04KJJCFCK@mark@ 100a27b4 misc_scripts.cpp.obj + 0002:000097bc ??_C@_0CK@EONLFDPA@Attempt?5to?5find?5?8this?8?5in?5non?9f@ 100a27bc misc_scripts.cpp.obj + 0002:000097e8 ??_C@_0CG@DOJPPKKG@Wrong?5object?5type?5for?5member?5fu@ 100a27e8 misc_scripts.cpp.obj + 0002:00009810 ??_C@_0CK@NLEAGDNO@Attempt?5to?5find?5?8this?8?5in?5non?9t@ 100a2810 misc_scripts.cpp.obj + 0002:00009840 __real@0000000000000000 100a2840 misc_scripts.cpp.obj + 0002:00009848 __real@3ff0000000000000 100a2848 misc_scripts.cpp.obj + 0002:00009850 __real@4000000000000000 100a2850 misc_scripts.cpp.obj + 0002:00009858 __real@4008000000000000 100a2858 misc_scripts.cpp.obj + 0002:00009860 __real@408f400000000000 100a2860 misc_scripts.cpp.obj + 0002:00009870 ??_C@_0M@HANKGEC@?3encrypted?3@ 100a2870 file_scripts.cpp.obj + 0002:0000987c ??_C@_0BG@OBGADOPN@Failed?5to?5write?5file?4@ 100a287c file_scripts.cpp.obj + 0002:00009894 ??_C@_09KOMKGNPH@?$DM?$DO?3?$CC?1?2?$HM?$DP?$CK@ 100a2894 file_scripts.cpp.obj + 0002:000098a0 ??_C@_0DP@IEMFHFMJ@Invalid?5or?5empty?5filename?5?$CImust@ 100a28a0 file_scripts.cpp.obj + 0002:000098e0 ??_C@_04LCMACLFG@?4txt@ 100a28e0 file_scripts.cpp.obj + 0002:000098e8 ??_C@_01KICIPPFI@?2@ 100a28e8 file_scripts.cpp.obj + 0002:000098f0 ??_7?$basic_ifstream@DU?$char_traits@D@std@@@std@@6B@ 100a28f0 file_scripts.cpp.obj + 0002:000098f4 ??_8?$basic_ifstream@DU?$char_traits@D@std@@@std@@7B@ 100a28f4 file_scripts.cpp.obj + 0002:000098fc ??_C@_0CL@MHIEKHBP@Invalid?5filename?1path?5?$CImust?5rem@ 100a28fc file_scripts.cpp.obj + 0002:00009928 ??_C@_02DMCFFCKO@?$CJ?4@ 100a2928 file_scripts.cpp.obj + 0002:0000992c ??_C@_0BO@GFGOIPKM@Attempting?5to?5read?5file?5from?5@ 100a292c file_scripts.cpp.obj + 0002:0000994c ??_C@_0CB@OFBCKMIJ@Failed?5to?5open?5file?5for?5reading@ 100a294c file_scripts.cpp.obj + 0002:00009970 ??_C@_0CD@HEGLOJF@Failed?5to?5create?5output?5directo@ 100a2970 file_scripts.cpp.obj + 0002:00009994 ??_C@_07KAEBOIAC@?5?$CImode?$DN@ 100a2994 file_scripts.cpp.obj + 0002:0000999c ??_C@_0BB@LKAKNCFF@Writing?5file?5to?5@ 100a299c file_scripts.cpp.obj + 0002:000099b0 ??_C@_0CP@OMEMKNIP@WriteCustomFile?3?5mode?5must?5be?5?8@ 100a29b0 file_scripts.cpp.obj + 0002:000099e0 ??_C@_0CB@OJMCJNAI@Failed?5to?5open?5file?5for?5writing@ 100a29e0 file_scripts.cpp.obj + 0002:00009a04 ??_C@_0DC@EODHLCIO@Usage?3?5WriteCustomFile?$CIfilename@ 100a2a04 file_scripts.cpp.obj + 0002:00009a38 ??_C@_0CB@IPFLIFII@WriteCustomFile?3?5invalid?5conten@ 100a2a38 file_scripts.cpp.obj + 0002:00009a5c ??_C@_0L@OCOFMLFG@CustomData@ 100a2a5c file_scripts.cpp.obj + 0002:00009a68 ??_C@_0CA@IBJLBAIO@Usage?3?5ReadCustomFile?$CIfilename?$CJ@ 100a2a68 file_scripts.cpp.obj + 0002:00009a88 ??_C@_0CC@LIAHCEAM@Usage?3?5CustomFileExists?$CIfilenam@ 100a2a88 file_scripts.cpp.obj + 0002:00009aac ??_C@_0DH@LJMFNEIN@Invalid?5filename?1path?5?$CImust?5rem@ 100a2aac file_scripts.cpp.obj + 0002:00009ae4 ??_C@_0CH@NAOCCNOB@CustomFileExists?3?5failed?5to?5che@ 100a2ae4 file_scripts.cpp.obj + 0002:00009b0c ??_C@_0BM@DCDFMLDC@Usage?3?5ImportFile?$CIfilename?$CJ@ 100a2b0c file_scripts.cpp.obj + 0002:00009b28 ??_C@_07MAPCLLIG@Imports@ 100a2b28 file_scripts.cpp.obj + 0002:00009b30 ??_C@_0CC@MHMMHPJ@Usage?3?5ExportFile?$CIfilename?0?5tex@ 100a2b30 file_scripts.cpp.obj + 0002:00009b54 ??_C@_0CG@PBNOPNLH@Usage?3?5ExecuteCustomLuaFile?$CIfil@ 100a2b54 file_scripts.cpp.obj + 0002:00009b7c ??_C@_04BIAACBGB@?4lua@ 100a2b7c file_scripts.cpp.obj + 0002:00009b84 ??_C@_0DC@CNKBJDFL@ExecuteCustomLuaFile?3?5filename?5@ 100a2b84 file_scripts.cpp.obj + 0002:00009bb8 ??_C@_0BF@BLBOOBLF@Executing?5Lua?5file?3?5@ 100a2bb8 file_scripts.cpp.obj + 0002:00009bd0 ??_C@_0CB@OAGDJAPF@Usage?3?5EncryptPassword?$CIpassword@ 100a2bd0 file_scripts.cpp.obj + 0002:00009bf4 ??_C@_0CC@IAPJPINB@EncryptPassword?3?5invalid?5passwo@ 100a2bf4 file_scripts.cpp.obj + 0002:00009c18 ??_C@_0BD@DNPKCDNF@WOW_ENCRYPTION_KEY@ 100a2c18 file_scripts.cpp.obj + 0002:00009c2c ??_C@_0CP@NAKHHCNM@EncryptPassword?3?5WOW_ENCRYPTION@ 100a2c2c file_scripts.cpp.obj + 0002:00009c5c ??_C@_0CM@JCHBCDAG@EncryptPassword?3?5failed?5to?5encr@ 100a2c5c file_scripts.cpp.obj + 0002:00009c88 ??_C@_0EF@DAIHHBFH@Usage?3?5EncryptedServerLogin?$CIuse@ 100a2c88 file_scripts.cpp.obj + 0002:00009cd0 ??_C@_0DN@LFCJHPNO@EncryptedServerLogin?3?5invalid?5u@ 100a2cd0 file_scripts.cpp.obj + 0002:00009d10 ??_C@_0EF@NKBCHHO@EncryptedServerLogin?3?5encrypted@ 100a2d10 file_scripts.cpp.obj + 0002:00009d58 ??_C@_0DE@HBBKGKBD@EncryptedServerLogin?3?5WOW_ENCRY@ 100a2d58 file_scripts.cpp.obj + 0002:00009d8c ??_C@_0DB@GDENGCOH@EncryptedServerLogin?3?5failed?5to@ 100a2d8c file_scripts.cpp.obj + 0002:00009dc0 ??_C@_0CD@FAFLFIPA@Casting?5next?5spell?5without?5queu@ 100a2dc0 spell_scripts.cpp.obj + 0002:00009de4 ??_C@_0CO@KOABFNCN@Usage?3?5CastSpellByName?$CIname?5?$FL?0?5@ 100a2de4 spell_scripts.cpp.obj + 0002:00009e14 ??_C@_0CH@LPICHIHK@Invalid?5spell?5slot?5in?5CastSpell@ 100a2e14 spell_scripts.cpp.obj + 0002:00009e3c ??_C@_0CB@HHBALKEJ@CastSpellNoQueue?5with?5unit?5toke@ 100a2e3c spell_scripts.cpp.obj + 0002:00009e60 ??_C@_0BO@KHCNJBCM@Force?5queuing?5next?5cast?5spell@ 100a2e60 spell_scripts.cpp.obj + 0002:00009e80 ??_C@_0BI@HLPDJJIN@SpellStopCasting?5called@ 100a2e80 spell_scripts.cpp.obj + 0002:00009e98 ??_C@_0BJ@HOOGKLNO@Unable?5to?5parse?5spell?5id@ 100a2e98 spell_scripts.cpp.obj + 0002:00009eb8 ??_C@_0IC@LFNFOIMM@Unable?5to?5determine?5spell?5id?5fr@ 100a2eb8 spell_scripts.cpp.obj + 0002:00009f3c ??_C@_0CM@CNMGCKEF@IsSpellInRange?3?5active?5player?5n@ 100a2f3c spell_scripts.cpp.obj + 0002:00009f68 ??_C@_0DB@IJJJAGFK@IsSpellInRange?3?5active?5player?5u@ 100a2f68 spell_scripts.cpp.obj + 0002:00009f9c ??_C@_0BA@LCNPPGJD@Spell?5not?5found@ 100a2f9c spell_scripts.cpp.obj + 0002:00009fac ??_C@_0CB@DNBDKHMK@Usage?3?5IsSpellInRange?$CIspellName@ 100a2fac spell_scripts.cpp.obj + 0002:00009fd0 ??_C@_0IB@NFBGPDMF@Unable?5to?5determine?5spell?5id?5fr@ 100a2fd0 spell_scripts.cpp.obj + 0002:0000a054 ??_C@_0CA@CKMJHD@Usage?3?5IsSpellUsable?$CIspellName?$CJ@ 100a3054 spell_scripts.cpp.obj + 0002:0000a074 ??_C@_0CE@BNAKDPLE@Usage?3?5GetSpellIdForName?$CIspellN@ 100a3074 spell_scripts.cpp.obj + 0002:0000a098 ??_C@_0BJ@EJDPBOLF@Spell?5not?5found?5for?5id?3?5@ 100a3098 spell_scripts.cpp.obj + 0002:0000a0b4 ??_C@_0CJ@PPAJFPII@Usage?3?5GetSpellNameAndRankForId@ 100a30b4 spell_scripts.cpp.obj + 0002:0000a0e0 ??_C@_05LOCENACC@spell@ 100a30e0 spell_scripts.cpp.obj + 0002:0000a0e8 ??_C@_0CM@BIFAHKMN@Usage?3?5GetSpellSlotTypeIdForNam@ 100a30e8 spell_scripts.cpp.obj + 0002:0000a114 ??_C@_0CE@PGDGANLK@Usage?3?5GetSpellRec?$CIspellId?0?5?$FLco@ 100a3114 spell_scripts.cpp.obj + 0002:0000a138 ??_C@_04MEMAJGDJ@name@ 100a3138 spell_scripts.cpp.obj + 0002:0000a140 ??_C@_04PNBFHPGN@rank@ 100a3140 spell_scripts.cpp.obj + 0002:0000a148 ??_C@_0M@PPJNHBMP@description@ 100a3148 spell_scripts.cpp.obj + 0002:0000a154 ??_C@_07OGDNBKKB@tooltip@ 100a3154 spell_scripts.cpp.obj + 0002:0000a15c ??_C@_0DE@IFOKCNBD@Usage?3?5GetSpellRecField?$CIspellId@ 100a315c spell_scripts.cpp.obj + 0002:0000a190 ??_C@_0BOB@PPLDFGIB@Usage?3?5GetSpellModifiers?$CIspellI@ 100a3190 spell_scripts.cpp.obj + 0002:0000a374 ??_C@_0DB@LGIDKANG@Invalid?5modifier?5type?4?5Must?5be?5@ 100a3374 spell_scripts.cpp.obj + 0002:0000a3a8 ??_C@_0BB@NBBEIOIN@Invalid?5spell?5id@ 100a33a8 spell_scripts.cpp.obj + 0002:0000a3bc ??_C@_08KJJBJMM@spellId?3@ 100a33bc spell_scripts.cpp.obj + 0002:0000a3c8 ??_C@_0CH@HJHOCEPB@Unable?5convert?5spell?5id?5to?5spel@ 100a33c8 spell_scripts.cpp.obj + 0002:0000a3f0 ??_C@_0CP@KGJBOLFG@Unable?5parse?5spell?5id?4?5?5Format?5@ 100a33f0 spell_scripts.cpp.obj + 0002:0000a420 ??_C@_0CK@PDFCMKHC@Unable?5to?5find?5spell?5slot?5for?5s@ 100a3420 spell_scripts.cpp.obj + 0002:0000a44c ??_C@_03NBFOK@net@ 100a344c spell_scripts.cpp.obj + 0002:0000a450 ??_C@_08BAGPHLDB@positive@ 100a3450 spell_scripts.cpp.obj + 0002:0000a45c ??_C@_08JKGPMEKK@negative@ 100a345c spell_scripts.cpp.obj + 0002:0000a468 ??_C@_0DF@IIJFMHED@Usage?3?5GetSpellDuration?$CIspellId@ 100a3468 spell_scripts.cpp.obj + 0002:0000a4a0 __real@bff0000000000000 100a34a0 spell_scripts.cpp.obj + 0002:0000a4ac ??_C@_0CB@KIFLLFHK@Usage?3?5GetSpellCooldown?$CIspellId@ 100a34ac cooldown_scripts.cpp.obj + 0002:0000a4d0 ??_C@_0DM@HPPALOOP@Usage?3?5GetItemCooldown?$CIitemId?$CJ?5@ 100a34d0 cooldown_scripts.cpp.obj + 0002:0000a50c ??_C@_0CF@IPNKEPCD@Item?5name?5lookup?5not?5yet?5implem@ 100a350c cooldown_scripts.cpp.obj + 0002:0000a534 ??_C@_0CN@EGAOPKGE@Usage?3?5GetTrinketCooldown?$CIslot?$HM@ 100a3534 cooldown_scripts.cpp.obj + 0002:0000a564 ??_C@_0BG@JDLJPL@missing?5item?5at?5slot?5@ 100a3564 item_scripts.cpp.obj + 0002:0000a57c ??_C@_0BM@FGPCGLD@missing?5itemfields?5at?5slot?5@ 100a357c item_scripts.cpp.obj + 0002:0000a598 ??_C@_0BK@BKPACGJE@Unable?5to?5get?5player?5unit@ 100a3598 item_scripts.cpp.obj + 0002:0000a5b8 ??_C@_0EC@DILDBMOF@Usage?3?5FindPlayerItemSlot?$CIitemN@ 100a35b8 item_scripts.cpp.obj + 0002:0000a5fc ??_C@_0CP@MNDKGGNA@Usage?3?5UseItemIdOrName?$CIitemIdOr@ 100a35fc item_scripts.cpp.obj + 0002:0000a62c ??_C@_0CA@BIHDFGEI@Unable?5to?5determine?5target?5guid@ 100a362c item_scripts.cpp.obj + 0002:0000a64c ??_C@_0CP@GCLNMKJC@Usage?3?5UseTrinket?$CIslot?$HMitemIdOr@ 100a364c item_scripts.cpp.obj + 0002:0000a67c ??_C@_07NBCGADJA@Unknown@ 100a367c item_scripts.cpp.obj + 0002:0000a688 ??_C@_0FB@JKJLJBPE@Usage?3?5GetEquippedItems?$CI?$CJ?5or?5Ge@ 100a3688 item_scripts.cpp.obj + 0002:0000a6dc ??_C@_0BD@LPJJAPAF@Unable?5to?5get?5unit@ 100a36dc item_scripts.cpp.obj + 0002:0000a6f0 ??_C@_0BE@IENECEIE@Cannot?5inspect?5unit@ 100a36f0 item_scripts.cpp.obj + 0002:0000a708 ??_C@_0EF@LNGINBID@Usage?3?5GetEquippedItem?$CIunitStr?0@ 100a3708 item_scripts.cpp.obj + 0002:0000a750 ??_C@_0CH@PFFKDIPF@Slot?5must?5be?5a?5number?5between?51@ 100a3750 item_scripts.cpp.obj + 0002:0000a778 ??_C@_0BO@MMGGBFIG@Slot?5must?5be?5between?51?5and?519@ 100a3778 item_scripts.cpp.obj + 0002:0000a798 ??_C@_0CC@HHMLLACK@Usage?3?5GetBagItem?$CIbagIndex?0?5slo@ 100a3798 item_scripts.cpp.obj + 0002:0000a7bc ??_C@_0BL@OJIHPLAE@Bag?5index?5must?5be?5a?5number@ 100a37bc item_scripts.cpp.obj + 0002:0000a7d8 ??_C@_0BG@GOJBCPAF@Slot?5must?5be?5a?5number@ 100a37d8 item_scripts.cpp.obj + 0002:0000a7f0 ??_C@_0CI@CDBJNJGK@Slot?5must?5be?5between?51?5and?516?5f@ 100a37f0 item_scripts.cpp.obj + 0002:0000a818 ??_C@_0BG@DIIBAFFP@Slot?5exceeds?5bag?5size@ 100a3818 item_scripts.cpp.obj + 0002:0000a830 ??_C@_0BB@CNCNDCLG@Bank?5is?5not?5open@ 100a3830 item_scripts.cpp.obj + 0002:0000a848 ??_C@_0EI@CGLLNKOK@For?5bag?5?91?0?5slot?5must?5be?51?924?5?$CI@ 100a3848 item_scripts.cpp.obj + 0002:0000a890 ??_C@_0DI@KFDHOLPD@For?5bag?5?92?5?$CIkeyring?$CJ?0?5slot?5must@ 100a3890 item_scripts.cpp.obj + 0002:0000a8c8 ??_C@_0EH@DPGHDAMK@Invalid?5bag?5index?4?5Valid?5values@ 100a38c8 item_scripts.cpp.obj + 0002:0000a910 ??_C@_0FE@NKJKFJGK@Invalid?5bag?5index?4?5Valid?5values@ 100a3910 item_scripts.cpp.obj + 0002:0000a964 ??_C@_0BK@BMIHLO@Item?5not?5found?5in?5DBCache@ 100a3964 item_scripts.cpp.obj + 0002:0000a980 ??_C@_0BM@BBGLOLG@Usage?3?5GetItemLevel?$CIitemId?$CJ@ 100a3980 item_scripts.cpp.obj + 0002:0000a99c ??_C@_0CE@NEDOMOFN@Usage?3?5GetItemStats?$CIitemId?0?5?$FLco@ 100a399c item_scripts.cpp.obj + 0002:0000a9c0 ??_C@_0M@NDEOCEGH@displayName@ 100a39c0 item_scripts.cpp.obj + 0002:0000a9cc ??_C@_0DE@DAMKFGHF@Usage?3?5GetItemStatsField?$CIitemId@ 100a39cc item_scripts.cpp.obj + 0002:0000aa04 ??_C@_0O@LOMMFJIH@Added?5itemId?5@ 100a3a04 items.cpp.obj + 0002:0000aa14 ??_C@_0P@FANPLMKM@Still?5missing?5@ 100a3a14 items.cpp.obj + 0002:0000aa24 ??_C@_02KEGNLNML@?0?5@ 100a3a24 items.cpp.obj + 0002:0000aa28 ?itemStatsFields@Nampower@@3QBUFieldDescriptor@1@B 100a3a28 dbc_fields.cpp.obj + 0002:0000ac14 ?itemStatsFieldsCount@Nampower@@3IB 100a3c14 dbc_fields.cpp.obj + 0002:0000ac18 ?itemStatsArrayFields@Nampower@@3QBUArrayFieldDescriptor@1@B 100a3c18 dbc_fields.cpp.obj + 0002:0000acd8 ?itemStatsArrayFieldsCount@Nampower@@3IB 100a3cd8 dbc_fields.cpp.obj + 0002:0000ace0 ?spellRecFields@Nampower@@3QBUFieldDescriptor@1@B 100a3ce0 dbc_fields.cpp.obj + 0002:0000afbc ?spellRecFieldsCount@Nampower@@3IB 100a3fbc dbc_fields.cpp.obj + 0002:0000afc0 ?spellRecArrayFields@Nampower@@3QBUArrayFieldDescriptor@1@B 100a3fc0 dbc_fields.cpp.obj + 0002:0000b120 ?spellRecArrayFieldsCount@Nampower@@3IB 100a4120 dbc_fields.cpp.obj + 0002:0000b124 ??_C@_05ENKANFLO@class@ 100a4124 dbc_fields.cpp.obj + 0002:0000b12c ??_C@_08CLNMFNJL@subclass@ 100a412c dbc_fields.cpp.obj + 0002:0000b138 ??_C@_0O@NBHNKLJP@displayInfoID@ 100a4138 dbc_fields.cpp.obj + 0002:0000b148 ??_C@_07DADGLCBN@quality@ 100a4148 dbc_fields.cpp.obj + 0002:0000b150 ??_C@_05GECEPKB@flags@ 100a4150 dbc_fields.cpp.obj + 0002:0000b158 ??_C@_08GNIKKBDF@buyPrice@ 100a4158 dbc_fields.cpp.obj + 0002:0000b164 ??_C@_09EHAEBHNG@sellPrice@ 100a4164 dbc_fields.cpp.obj + 0002:0000b170 ??_C@_0O@LJIBMGHI@inventoryType@ 100a4170 dbc_fields.cpp.obj + 0002:0000b180 ??_C@_0P@HKBMDFLF@allowableClass@ 100a4180 dbc_fields.cpp.obj + 0002:0000b190 ??_C@_0O@PJFDKFL@allowableRace@ 100a4190 dbc_fields.cpp.obj + 0002:0000b1a0 ??_C@_09OOKEJBK@itemLevel@ 100a41a0 dbc_fields.cpp.obj + 0002:0000b1ac ??_C@_0O@PCBOEJHN@requiredLevel@ 100a41ac dbc_fields.cpp.obj + 0002:0000b1bc ??_C@_0O@LIAFDLBE@requiredSkill@ 100a41bc dbc_fields.cpp.obj + 0002:0000b1cc ??_C@_0BC@EKIBFNMJ@requiredSkillRank@ 100a41cc dbc_fields.cpp.obj + 0002:0000b1e0 ??_C@_0O@OFODCCDP@requiredSpell@ 100a41e0 dbc_fields.cpp.obj + 0002:0000b1f0 ??_C@_0BC@MKNCAGLF@requiredHonorRank@ 100a41f0 dbc_fields.cpp.obj + 0002:0000b204 ??_C@_0BB@LFMLPJEO@requiredCityRank@ 100a4204 dbc_fields.cpp.obj + 0002:0000b218 ??_C@_0M@EOJIPGFP@requiredRep@ 100a4218 dbc_fields.cpp.obj + 0002:0000b224 ??_C@_0BA@PNCCEJI@requiredRepRank@ 100a4224 dbc_fields.cpp.obj + 0002:0000b234 ??_C@_08LAEJCBOD@maxCount@ 100a4234 dbc_fields.cpp.obj + 0002:0000b240 ??_C@_09EFCPONM@stackable@ 100a4240 dbc_fields.cpp.obj + 0002:0000b24c ??_C@_0P@FLPNDKGI@containerSlots@ 100a424c dbc_fields.cpp.obj + 0002:0000b25c ??_C@_05EKJCMADO@delay@ 100a425c dbc_fields.cpp.obj + 0002:0000b264 ??_C@_08JNBMCKNJ@ammoType@ 100a4264 dbc_fields.cpp.obj + 0002:0000b270 ??_C@_0P@PEGEDPKE@rangedModRange@ 100a4270 dbc_fields.cpp.obj + 0002:0000b280 ??_C@_07FHKKHDI@bonding@ 100a4280 dbc_fields.cpp.obj + 0002:0000b288 ??_C@_08DDOGIPAD@pageText@ 100a4288 dbc_fields.cpp.obj + 0002:0000b294 ??_C@_0L@PFAGFGH@languageID@ 100a4294 dbc_fields.cpp.obj + 0002:0000b2a0 ??_C@_0N@IBEKAJCP@pageMaterial@ 100a42a0 dbc_fields.cpp.obj + 0002:0000b2b0 ??_C@_0N@NAMEJOJP@startQuestID@ 100a42b0 dbc_fields.cpp.obj + 0002:0000b2c0 ??_C@_06OMMPKEO@lockID@ 100a42c0 dbc_fields.cpp.obj + 0002:0000b2c8 ??_C@_08KNOEMJMM@material@ 100a42c8 dbc_fields.cpp.obj + 0002:0000b2d4 ??_C@_0M@BOJKDFJE@sheatheType@ 100a42d4 dbc_fields.cpp.obj + 0002:0000b2e0 ??_C@_0P@HIEKOBJC@randomProperty@ 100a42e0 dbc_fields.cpp.obj + 0002:0000b2f0 ??_C@_05PIBOEKAB@block@ 100a42f0 dbc_fields.cpp.obj + 0002:0000b2f8 ??_C@_07KIDCFHFO@itemSet@ 100a42f8 dbc_fields.cpp.obj + 0002:0000b300 ??_C@_0O@NEJOMBPE@maxDurability@ 100a4300 dbc_fields.cpp.obj + 0002:0000b310 ??_C@_04GOEDGNCF@area@ 100a4310 dbc_fields.cpp.obj + 0002:0000b318 ??_C@_03HBNNNHNM@map@ 100a4318 dbc_fields.cpp.obj + 0002:0000b31c ??_C@_08LGBPINEC@duration@ 100a431c dbc_fields.cpp.obj + 0002:0000b328 ??_C@_09CEJOBILD@bagFamily@ 100a4328 dbc_fields.cpp.obj + 0002:0000b334 ??_C@_09CFJCKAOO@bonusStat@ 100a4334 dbc_fields.cpp.obj + 0002:0000b340 ??_C@_0M@MMCFAFHA@bonusAmount@ 100a4340 dbc_fields.cpp.obj + 0002:0000b34c ??_C@_09MJALHBHH@minDamage@ 100a434c dbc_fields.cpp.obj + 0002:0000b358 ??_C@_09MIAHOLMD@maxDamage@ 100a4358 dbc_fields.cpp.obj + 0002:0000b364 ??_C@_0L@HKMKJPBM@damageType@ 100a4364 dbc_fields.cpp.obj + 0002:0000b370 ??_C@_0M@DMKJBJGO@resistances@ 100a4370 dbc_fields.cpp.obj + 0002:0000b37c ??_C@_07MKDPBGJO@spellID@ 100a437c dbc_fields.cpp.obj + 0002:0000b384 ??_C@_0N@NIGGJAAD@spellTrigger@ 100a4384 dbc_fields.cpp.obj + 0002:0000b394 ??_C@_0N@DAPOMAGP@spellCharges@ 100a4394 dbc_fields.cpp.obj + 0002:0000b3a4 ??_C@_0O@GKHBOHOH@spellCooldown@ 100a43a4 dbc_fields.cpp.obj + 0002:0000b3b4 ??_C@_0O@HJMFFAIE@spellCategory@ 100a43b4 dbc_fields.cpp.obj + 0002:0000b3c4 ??_C@_0BG@IGIBPPC@spellCategoryCooldown@ 100a43c4 dbc_fields.cpp.obj + 0002:0000b3dc ??_C@_02EGCJHIOB@id@ 100a43dc dbc_fields.cpp.obj + 0002:0000b3e0 ??_C@_06HBLHOEKM@school@ 100a43e0 dbc_fields.cpp.obj + 0002:0000b3e8 ??_C@_08MBJIKOEN@category@ 100a43e8 dbc_fields.cpp.obj + 0002:0000b3f4 ??_C@_06KIGBPMF@castUI@ 100a43f4 dbc_fields.cpp.obj + 0002:0000b3fc ??_C@_06GAIIABAG@dispel@ 100a43fc dbc_fields.cpp.obj + 0002:0000b404 ??_C@_08EFFOODE@mechanic@ 100a4404 dbc_fields.cpp.obj + 0002:0000b410 ??_C@_0L@HNMJPKNA@attributes@ 100a4410 dbc_fields.cpp.obj + 0002:0000b41c ??_C@_0N@ENOHBPAB@attributesEx@ 100a441c dbc_fields.cpp.obj + 0002:0000b42c ??_C@_0O@JKDKIDPI@attributesEx2@ 100a442c dbc_fields.cpp.obj + 0002:0000b43c ??_C@_0O@IDCBLCLJ@attributesEx3@ 100a443c dbc_fields.cpp.obj + 0002:0000b44c ??_C@_0O@MMGACEHO@attributesEx4@ 100a444c dbc_fields.cpp.obj + 0002:0000b45c ??_C@_07CGBCCMBN@stances@ 100a445c dbc_fields.cpp.obj + 0002:0000b464 ??_C@_0L@KNGFDFAC@stancesNot@ 100a4464 dbc_fields.cpp.obj + 0002:0000b470 ??_C@_07KJOMBCLC@targets@ 100a4470 dbc_fields.cpp.obj + 0002:0000b478 ??_C@_0BD@GAPMJMNG@targetCreatureType@ 100a4478 dbc_fields.cpp.obj + 0002:0000b48c ??_C@_0BD@GELPPEEP@requiresSpellFocus@ 100a448c dbc_fields.cpp.obj + 0002:0000b4a0 ??_C@_0BA@EEKMKLJE@casterAuraState@ 100a44a0 dbc_fields.cpp.obj + 0002:0000b4b0 ??_C@_0BA@CDAFIMFO@targetAuraState@ 100a44b0 dbc_fields.cpp.obj + 0002:0000b4c0 ??_C@_0BB@JFPKLBEC@castingTimeIndex@ 100a44c0 dbc_fields.cpp.obj + 0002:0000b4d4 ??_C@_0N@OMFIFLPG@recoveryTime@ 100a44d4 dbc_fields.cpp.obj + 0002:0000b4e4 ??_C@_0BF@NPKKFBDI@categoryRecoveryTime@ 100a44e4 dbc_fields.cpp.obj + 0002:0000b4fc ??_C@_0P@IEPIDAFJ@interruptFlags@ 100a44fc dbc_fields.cpp.obj + 0002:0000b50c ??_C@_0BD@LHLLGJCG@auraInterruptFlags@ 100a450c dbc_fields.cpp.obj + 0002:0000b520 ??_C@_0BG@BMOJLJDO@channelInterruptFlags@ 100a4520 dbc_fields.cpp.obj + 0002:0000b538 ??_C@_09MICPAJOG@procFlags@ 100a4538 dbc_fields.cpp.obj + 0002:0000b544 ??_C@_0L@PJKMHGON@procChance@ 100a4544 dbc_fields.cpp.obj + 0002:0000b550 ??_C@_0M@PACCPFFC@procCharges@ 100a4550 dbc_fields.cpp.obj + 0002:0000b55c ??_C@_08JHFEFDMB@maxLevel@ 100a455c dbc_fields.cpp.obj + 0002:0000b568 ??_C@_09JJGGMDBI@baseLevel@ 100a4568 dbc_fields.cpp.obj + 0002:0000b574 ??_C@_0L@DIBPEIPN@spellLevel@ 100a4574 dbc_fields.cpp.obj + 0002:0000b580 ??_C@_0O@ILAOIAFF@durationIndex@ 100a4580 dbc_fields.cpp.obj + 0002:0000b590 ??_C@_09MHMIHKMK@powerType@ 100a4590 dbc_fields.cpp.obj + 0002:0000b59c ??_C@_08NBEIGJPH@manaCost@ 100a459c dbc_fields.cpp.obj + 0002:0000b5a8 ??_C@_0BB@MKFEABBK@manaCostPerlevel@ 100a45a8 dbc_fields.cpp.obj + 0002:0000b5bc ??_C@_0O@GDKBJHLD@manaPerSecond@ 100a45bc dbc_fields.cpp.obj + 0002:0000b5cc ??_C@_0BG@PCCJIIB@manaPerSecondPerLevel@ 100a45cc dbc_fields.cpp.obj + 0002:0000b5e4 ??_C@_0L@IIPJFCFA@rangeIndex@ 100a45e4 dbc_fields.cpp.obj + 0002:0000b5f0 ??_C@_05HJCMGBKF@speed@ 100a45f0 dbc_fields.cpp.obj + 0002:0000b5f8 ??_C@_0P@GNIGGCNF@modalNextSpell@ 100a45f8 dbc_fields.cpp.obj + 0002:0000b608 ??_C@_0M@FHMAKNIE@stackAmount@ 100a4608 dbc_fields.cpp.obj + 0002:0000b614 ??_C@_0BC@FAGICCEI@equippedItemClass@ 100a4614 dbc_fields.cpp.obj + 0002:0000b628 ??_C@_0BJ@EHCBMJCE@equippedItemSubClassMask@ 100a4628 dbc_fields.cpp.obj + 0002:0000b644 ??_C@_0BO@GFGEHKDA@equippedItemInventoryTypeMask@ 100a4644 dbc_fields.cpp.obj + 0002:0000b664 ??_C@_0M@CODBPNAF@spellVisual@ 100a4664 dbc_fields.cpp.obj + 0002:0000b670 ??_C@_0N@JNDEJBAD@spellVisual2@ 100a4670 dbc_fields.cpp.obj + 0002:0000b680 ??_C@_0M@FHDHCBKL@spellIconID@ 100a4680 dbc_fields.cpp.obj + 0002:0000b68c ??_C@_0N@HAKPAPKJ@activeIconID@ 100a468c dbc_fields.cpp.obj + 0002:0000b69c ??_C@_0O@DAMIPNAM@spellPriority@ 100a469c dbc_fields.cpp.obj + 0002:0000b6ac ??_C@_0BD@LHHLGOL@manaCostPercentage@ 100a46ac dbc_fields.cpp.obj + 0002:0000b6c0 ??_C@_0BG@DDDBFLLC@startRecoveryCategory@ 100a46c0 dbc_fields.cpp.obj + 0002:0000b6d8 ??_C@_0BC@MJCLHCCP@startRecoveryTime@ 100a46d8 dbc_fields.cpp.obj + 0002:0000b6ec ??_C@_0P@GDMECBOP@maxTargetLevel@ 100a46ec dbc_fields.cpp.obj + 0002:0000b6fc ??_C@_0BA@GMGOGAED@spellFamilyName@ 100a46fc dbc_fields.cpp.obj + 0002:0000b70c ??_C@_0BB@LGDKHJHF@spellFamilyFlags@ 100a470c dbc_fields.cpp.obj + 0002:0000b720 ??_C@_0BD@JJENEIAA@maxAffectedTargets@ 100a4720 dbc_fields.cpp.obj + 0002:0000b734 ??_C@_08BJLHHCCM@dmgClass@ 100a4734 dbc_fields.cpp.obj + 0002:0000b740 ??_C@_0P@KJEDBIHM@preventionType@ 100a4740 dbc_fields.cpp.obj + 0002:0000b750 ??_C@_0P@CNKPMAAI@stanceBarOrder@ 100a4750 dbc_fields.cpp.obj + 0002:0000b760 ??_C@_0N@BEIHPEI@minFactionId@ 100a4760 dbc_fields.cpp.obj + 0002:0000b770 ??_C@_0O@HHGPPNGP@minReputation@ 100a4770 dbc_fields.cpp.obj + 0002:0000b780 ??_C@_0BD@IBLBOBLJ@requiredAuraVision@ 100a4780 dbc_fields.cpp.obj + 0002:0000b794 ??_C@_05LPPONKPN@totem@ 100a4794 dbc_fields.cpp.obj + 0002:0000b79c ??_C@_07EAHOPPHC@reagent@ 100a479c dbc_fields.cpp.obj + 0002:0000b7a4 ??_C@_0N@DEFECNCJ@reagentCount@ 100a47a4 dbc_fields.cpp.obj + 0002:0000b7b4 ??_C@_06HOPIODND@effect@ 100a47b4 dbc_fields.cpp.obj + 0002:0000b7bc ??_C@_0P@HANPKOLJ@effectDieSides@ 100a47bc dbc_fields.cpp.obj + 0002:0000b7cc ??_C@_0P@NFCDHLMP@effectBaseDice@ 100a47cc dbc_fields.cpp.obj + 0002:0000b7dc ??_C@_0BD@OJNOKKJI@effectDicePerLevel@ 100a47dc dbc_fields.cpp.obj + 0002:0000b7f0 ??_C@_0BJ@CMMOAIOC@effectRealPointsPerLevel@ 100a47f0 dbc_fields.cpp.obj + 0002:0000b80c ??_C@_0BB@ECGJIMP@effectBasePoints@ 100a480c dbc_fields.cpp.obj + 0002:0000b820 ??_C@_0P@JKKLIPGJ@effectMechanic@ 100a4820 dbc_fields.cpp.obj + 0002:0000b830 ??_C@_0BG@MHBOODBP@effectImplicitTargetA@ 100a4830 dbc_fields.cpp.obj + 0002:0000b848 ??_C@_0BG@OMDDLANM@effectImplicitTargetB@ 100a4848 dbc_fields.cpp.obj + 0002:0000b860 ??_C@_0BC@JNJBJJNN@effectRadiusIndex@ 100a4860 dbc_fields.cpp.obj + 0002:0000b874 ??_C@_0BE@ELOBPJHK@effectApplyAuraName@ 100a4874 dbc_fields.cpp.obj + 0002:0000b888 ??_C@_0BA@FCGCEODA@effectAmplitude@ 100a4888 dbc_fields.cpp.obj + 0002:0000b898 ??_C@_0BE@EMECGFL@effectMultipleValue@ 100a4898 dbc_fields.cpp.obj + 0002:0000b8ac ??_C@_0BC@EMGMPKNK@effectChainTarget@ 100a48ac dbc_fields.cpp.obj + 0002:0000b8c0 ??_C@_0P@KFOJCMPA@effectItemType@ 100a48c0 dbc_fields.cpp.obj + 0002:0000b8d0 ??_C@_0BA@KMPEGA@effectMiscValue@ 100a48d0 dbc_fields.cpp.obj + 0002:0000b8e0 ??_C@_0BD@JLKEALFA@effectTriggerSpell@ 100a48e0 dbc_fields.cpp.obj + 0002:0000b8f4 ??_C@_0BK@EGJBCINL@effectPointsPerComboPoint@ 100a48f4 dbc_fields.cpp.obj + 0002:0000b910 ??_C@_0O@GNCEHKMO@dmgMultiplier@ 100a4910 dbc_fields.cpp.obj + 0002:0000b920 ?unitFieldsFields@Nampower@@3QBUFieldDescriptor@1@B 100a4920 unit_fields.cpp.obj + 0002:0000bc2c ?unitFieldsFieldsCount@Nampower@@3IB 100a4c2c unit_fields.cpp.obj + 0002:0000bc30 ?unitFieldsArrayFields@Nampower@@3QBUArrayFieldDescriptor@1@B 100a4c30 unit_fields.cpp.obj + 0002:0000bcc0 ?unitFieldsArrayFieldsCount@Nampower@@3IB 100a4cc0 unit_fields.cpp.obj + 0002:0000bcc8 ??_C@_05GNKDCGJG@charm@ 100a4cc8 unit_fields.cpp.obj + 0002:0000bcd0 ??_C@_06PEOHCAFD@summon@ 100a4cd0 unit_fields.cpp.obj + 0002:0000bcd8 ??_C@_09HKLHHFJN@charmedBy@ 100a4cd8 unit_fields.cpp.obj + 0002:0000bce4 ??_C@_0L@CCGPLGPK@summonedBy@ 100a4ce4 unit_fields.cpp.obj + 0002:0000bcf0 ??_C@_09LFPMGGII@createdBy@ 100a4cf0 unit_fields.cpp.obj + 0002:0000bcfc ??_C@_09MLEJIPBC@persuaded@ 100a4cfc unit_fields.cpp.obj + 0002:0000bd08 ??_C@_0O@EMAEPHOL@channelObject@ 100a4d08 unit_fields.cpp.obj + 0002:0000bd18 ??_C@_06KJINILIP@health@ 100a4d18 unit_fields.cpp.obj + 0002:0000bd20 ??_C@_06KBHLMNEH@power1@ 100a4d20 unit_fields.cpp.obj + 0002:0000bd28 ??_C@_06IKFGJOIE@power2@ 100a4d28 unit_fields.cpp.obj + 0002:0000bd30 ??_C@_06JDENKPMF@power3@ 100a4d30 unit_fields.cpp.obj + 0002:0000bd38 ??_C@_06NMAMDJAC@power4@ 100a4d38 unit_fields.cpp.obj + 0002:0000bd40 ??_C@_06MFBHAIED@power5@ 100a4d40 unit_fields.cpp.obj + 0002:0000bd48 ??_C@_09IGCJFBJ@maxHealth@ 100a4d48 unit_fields.cpp.obj + 0002:0000bd54 ??_C@_09JENDNB@maxPower1@ 100a4d54 unit_fields.cpp.obj + 0002:0000bd60 ??_C@_09CLLJIABC@maxPower2@ 100a4d60 unit_fields.cpp.obj + 0002:0000bd6c ??_C@_09DCKCLBFD@maxPower3@ 100a4d6c unit_fields.cpp.obj + 0002:0000bd78 ??_C@_09HNODCHJE@maxPower4@ 100a4d78 unit_fields.cpp.obj + 0002:0000bd84 ??_C@_09GEPIBGNF@maxPower5@ 100a4d84 unit_fields.cpp.obj + 0002:0000bd90 ??_C@_05KJNJLLGA@level@ 100a4d90 unit_fields.cpp.obj + 0002:0000bd98 ??_C@_0BA@HDIFLJID@factionTemplate@ 100a4d98 unit_fields.cpp.obj + 0002:0000bda8 ??_C@_06NLMMIAIA@bytes0@ 100a4da8 unit_fields.cpp.obj + 0002:0000bdb0 ??_C@_09BFHAFMLP@auraState@ 100a4db0 unit_fields.cpp.obj + 0002:0000bdbc ??_C@_0P@DGLGADKE@baseAttackTime@ 100a4dbc unit_fields.cpp.obj + 0002:0000bdcc ??_C@_0BC@CGEKFAIO@offhandAttackTime@ 100a4dcc unit_fields.cpp.obj + 0002:0000bde0 ??_C@_0BB@DNFLGEGG@rangedAttackTime@ 100a4de0 unit_fields.cpp.obj + 0002:0000bdf4 ??_C@_0P@PGEDLHEL@boundingRadius@ 100a4df4 unit_fields.cpp.obj + 0002:0000be04 ??_C@_0M@DOJLMCBI@combatReach@ 100a4e04 unit_fields.cpp.obj + 0002:0000be10 ??_C@_09EJIHCEAC@displayId@ 100a4e10 unit_fields.cpp.obj + 0002:0000be1c ??_C@_0BA@HLLMBDFA@nativeDisplayId@ 100a4e1c unit_fields.cpp.obj + 0002:0000be2c ??_C@_0P@HOLJBBID@mountDisplayId@ 100a4e2c unit_fields.cpp.obj + 0002:0000be3c ??_C@_0BB@LCJMKLPB@minOffhandDamage@ 100a4e3c unit_fields.cpp.obj + 0002:0000be50 ??_C@_0BB@KHBHHPAD@maxOffhandDamage@ 100a4e50 unit_fields.cpp.obj + 0002:0000be64 ??_C@_06MCNHLBMB@bytes1@ 100a4e64 unit_fields.cpp.obj + 0002:0000be6c ??_C@_09DIJBEFAN@petNumber@ 100a4e6c unit_fields.cpp.obj + 0002:0000be78 ??_C@_0BB@OMLEJGDP@petNameTimestamp@ 100a4e78 unit_fields.cpp.obj + 0002:0000be8c ??_C@_0O@FGKOPGHG@petExperience@ 100a4e8c unit_fields.cpp.obj + 0002:0000be9c ??_C@_0BA@PAHIIHLL@petNextLevelExp@ 100a4e9c unit_fields.cpp.obj + 0002:0000beac ??_C@_0N@CMKAPPHA@dynamicFlags@ 100a4eac unit_fields.cpp.obj + 0002:0000bebc ??_C@_0N@IEJBDBBA@channelSpell@ 100a4ebc unit_fields.cpp.obj + 0002:0000becc ??_C@_0N@DHEPGEFO@modCastSpeed@ 100a4ecc unit_fields.cpp.obj + 0002:0000bedc ??_C@_0P@ENACAIIN@createdBySpell@ 100a4edc unit_fields.cpp.obj + 0002:0000beec ??_C@_08NEIKGCEE@npcFlags@ 100a4eec unit_fields.cpp.obj + 0002:0000bef8 ??_C@_0O@DDNCOFID@npcEmoteState@ 100a4ef8 unit_fields.cpp.obj + 0002:0000bf08 ??_C@_0P@GKAKCLOA@trainingPoints@ 100a4f08 unit_fields.cpp.obj + 0002:0000bf18 ??_C@_05MAPNABCF@stat0@ 100a4f18 unit_fields.cpp.obj + 0002:0000bf20 ??_C@_05NJOGDAGE@stat1@ 100a4f20 unit_fields.cpp.obj + 0002:0000bf28 ??_C@_05PCMLGDKH@stat2@ 100a4f28 unit_fields.cpp.obj + 0002:0000bf30 ??_C@_05OLNAFCOG@stat3@ 100a4f30 unit_fields.cpp.obj + 0002:0000bf38 ??_C@_05KEJBMECB@stat4@ 100a4f38 unit_fields.cpp.obj + 0002:0000bf40 ??_C@_08OPMNAGFL@baseMana@ 100a4f40 unit_fields.cpp.obj + 0002:0000bf4c ??_C@_0L@PHGDMNPJ@baseHealth@ 100a4f4c unit_fields.cpp.obj + 0002:0000bf58 ??_C@_06OJPKOCAC@bytes2@ 100a4f58 unit_fields.cpp.obj + 0002:0000bf60 ??_C@_0M@KIFIFFDF@attackPower@ 100a4f60 unit_fields.cpp.obj + 0002:0000bf6c ??_C@_0BA@IPAHCKCK@attackPowerMods@ 100a4f6c unit_fields.cpp.obj + 0002:0000bf7c ??_C@_0BG@IHJMPLFM@attackPowerMultiplier@ 100a4f7c unit_fields.cpp.obj + 0002:0000bf94 ??_C@_0BC@JCJAIEDA@rangedAttackPower@ 100a4f94 unit_fields.cpp.obj + 0002:0000bfa8 ??_C@_0BG@PBLNABOL@rangedAttackPowerMods@ 100a4fa8 unit_fields.cpp.obj + 0002:0000bfc0 ??_C@_0BM@MHJJMDPM@rangedAttackPowerMultiplier@ 100a4fc0 unit_fields.cpp.obj + 0002:0000bfdc ??_C@_0BA@DNGOHFNJ@minRangedDamage@ 100a4fdc unit_fields.cpp.obj + 0002:0000bfec ??_C@_0BA@GMJHMOIE@maxRangedDamage@ 100a4fec unit_fields.cpp.obj + 0002:0000bffc ??_C@_0BD@KMOEPALK@virtualItemDisplay@ 100a4ffc unit_fields.cpp.obj + 0002:0000c010 ??_C@_0BA@CLDBCJMB@virtualItemInfo@ 100a5010 unit_fields.cpp.obj + 0002:0000c020 ??_C@_04OKPNOAGJ@aura@ 100a5020 unit_fields.cpp.obj + 0002:0000c028 ??_C@_09BEADLLCK@auraFlags@ 100a5028 unit_fields.cpp.obj + 0002:0000c034 ??_C@_0L@DDHBIJIK@auraLevels@ 100a5034 unit_fields.cpp.obj + 0002:0000c040 ??_C@_0BB@LCGCAOC@auraApplications@ 100a5040 unit_fields.cpp.obj + 0002:0000c054 ??_C@_0BC@LHCFADJ@powerCostModifier@ 100a5054 unit_fields.cpp.obj + 0002:0000c068 ??_C@_0BE@CIJMDBF@powerCostMultiplier@ 100a5068 unit_fields.cpp.obj + 0002:0000c080 ??_C@_0CC@DBGAMKLH@Clearing?5all?5LUA?5table?5referenc@ 100a5080 lua_refs.cpp.obj + 0002:0000c0a8 ??_C@_01JLIPDDHJ@?3@ 100a50a8 pet.cpp.obj + 0002:0000c0ac ??_C@_09CLAEBCNP@SetCVar?$CI?$CC@ 100a50ac pet.cpp.obj + 0002:0000c0b8 ??_C@_03ECGFLOPC@?$CC?0?$CC@ 100a50b8 pet.cpp.obj + 0002:0000c0bc ??_C@_02HPDBCLII@?$CC?$CJ@ 100a50bc pet.cpp.obj + 0002:0000c0c0 ??_C@_09BDDDPAI@?0?5type?$DN0x@ 100a50c0 pet.cpp.obj + 0002:0000c0cc ??_C@_0M@GOPICMBL@?0?5actionId?$DN@ 100a50cc pet.cpp.obj + 0002:0000c0d8 ??_C@_0O@CKHBKLDB@?0?5actionData?$DN@ 100a50d8 pet.cpp.obj + 0002:0000c0e8 ??_C@_07BENILPHP@?5?$CIslot?$DN@ 100a50e8 pet.cpp.obj + 0002:0000c0f0 ??_C@_01NEMOKFLO@?$DN@ 100a50f0 pet.cpp.obj + 0002:0000c0f4 ??_C@_06BDDGFKFE@Saved?5@ 100a50f4 pet.cpp.obj + 0002:0000c0fc ??_C@_0N@INIFLFEN@?5using?5cvar?5@ 100a50fc pet.cpp.obj + 0002:0000c10c ??_C@_0DA@MDLCCLEJ@Restoring?5greater?5demon?5autocas@ 100a510c pet.cpp.obj + 0002:0000c13c ??_C@_0O@NAFNLGOM@?5packetsSent?$DN@ 100a513c pet.cpp.obj + 0002:0000c14c ??_C@_06OLNLBFGA@?5cvar?$DN@ 100a514c pet.cpp.obj + 0002:0000c154 ??_C@_09GDNAMLML@?5petGuid?$DN@ 100a5154 pet.cpp.obj + 0002:0000c160 ??_C@_0CP@BMGMGPMF@Restored?5greater?5demon?5autocast@ 100a5160 pet.cpp.obj + 0002:0000c190 ??_C@_0BO@ELNPEJDB@Active?5pet?5guid?5changed?5from?5@ 100a5190 pet.cpp.obj + 0002:0000c1b0 ??_C@_0DE@FOBNBOMJ@Saving?5greater?5demon?5autocast?5p@ 100a51b0 pet.cpp.obj + 0002:0000c360 ??_C@_03BPGDPAOH@npc@ 100a5360 unit.cpp.obj + 0002:0000c364 ??_C@_09NMJMJAPE@mouseover@ 100a5364 unit.cpp.obj + 0002:0000c370 ??_C@_06LHGBPMFM@party1@ 100a5370 unit.cpp.obj + 0002:0000c378 ??_C@_06JMEMKPJP@party2@ 100a5378 unit.cpp.obj + 0002:0000c380 ??_C@_06IFFHJONO@party3@ 100a5380 unit.cpp.obj + 0002:0000c388 ??_C@_06MKBGAIBJ@party4@ 100a5388 unit.cpp.obj + 0002:0000c390 ??_C@_09BLNEJJOK@partypet1@ 100a5390 unit.cpp.obj + 0002:0000c39c ??_C@_09DAPJMKCJ@partypet2@ 100a539c unit.cpp.obj + 0002:0000c3a8 ??_C@_09CJOCPLGI@partypet3@ 100a53a8 unit.cpp.obj + 0002:0000c3b4 ??_C@_09GGKDGNKP@partypet4@ 100a53b4 unit.cpp.obj + 0002:0000c3c0 ??_C@_05GDCIHAKM@raid1@ 100a53c0 unit.cpp.obj + 0002:0000c3c8 ??_C@_05EIAFCDGP@raid2@ 100a53c8 unit.cpp.obj + 0002:0000c3d0 ??_C@_05FBBOBCCO@raid3@ 100a53d0 unit.cpp.obj + 0002:0000c3d8 ??_C@_05BOFPIEOJ@raid4@ 100a53d8 unit.cpp.obj + 0002:0000c3e0 ??_C@_05HEELFKI@raid5@ 100a53e0 unit.cpp.obj + 0002:0000c3e8 ??_C@_05CMGJOGGL@raid6@ 100a53e8 unit.cpp.obj + 0002:0000c3f0 ??_C@_05DFHCNHCK@raid7@ 100a53f0 unit.cpp.obj + 0002:0000c3f8 ??_C@_05LCOKMLOF@raid8@ 100a53f8 unit.cpp.obj + 0002:0000c400 ??_C@_05KLPBPKKE@raid9@ 100a5400 unit.cpp.obj + 0002:0000c408 ??_C@_06EFPBEA@raid10@ 100a5408 unit.cpp.obj + 0002:0000c410 ??_C@_06BJFOMAAB@raid11@ 100a5410 unit.cpp.obj + 0002:0000c418 ??_C@_06DCHDJDMC@raid12@ 100a5418 unit.cpp.obj + 0002:0000c420 ??_C@_06CLGIKCID@raid13@ 100a5420 unit.cpp.obj + 0002:0000c428 ??_C@_06GECJDEEE@raid14@ 100a5428 unit.cpp.obj + 0002:0000c430 ??_C@_06HNDCAFAF@raid15@ 100a5430 unit.cpp.obj + 0002:0000c438 ??_C@_06FGBPFGMG@raid16@ 100a5438 unit.cpp.obj + 0002:0000c440 ??_C@_06EPAEGHIH@raid17@ 100a5440 unit.cpp.obj + 0002:0000c448 ??_C@_06MIJMHLEI@raid18@ 100a5448 unit.cpp.obj + 0002:0000c450 ??_C@_06NBIHEKAJ@raid19@ 100a5450 unit.cpp.obj + 0002:0000c458 ??_C@_06CADEPBJ@raid20@ 100a5458 unit.cpp.obj + 0002:0000c460 ??_C@_06BLBIHOFI@raid21@ 100a5460 unit.cpp.obj + 0002:0000c468 ??_C@_06DADFCNJL@raid22@ 100a5468 unit.cpp.obj + 0002:0000c470 ??_C@_06CJCOBMNK@raid23@ 100a5470 unit.cpp.obj + 0002:0000c478 ??_C@_06GGGPIKBN@raid24@ 100a5478 unit.cpp.obj + 0002:0000c480 ??_C@_06HPHELLFM@raid25@ 100a5480 unit.cpp.obj + 0002:0000c488 ??_C@_06FEFJOIJP@raid26@ 100a5488 unit.cpp.obj + 0002:0000c490 ??_C@_06ENECNJNO@raid27@ 100a5490 unit.cpp.obj + 0002:0000c498 ??_C@_06MKNKMFBB@raid28@ 100a5498 unit.cpp.obj + 0002:0000c4a0 ??_C@_06NDMBPEFA@raid29@ 100a54a0 unit.cpp.obj + 0002:0000c4a8 ??_C@_06DMBCFCO@raid30@ 100a54a8 unit.cpp.obj + 0002:0000c4b0 ??_C@_06BKNKBEGP@raid31@ 100a54b0 unit.cpp.obj + 0002:0000c4b8 ??_C@_06DBPHEHKM@raid32@ 100a54b8 unit.cpp.obj + 0002:0000c4c0 ??_C@_06CIOMHGON@raid33@ 100a54c0 unit.cpp.obj + 0002:0000c4c8 ??_C@_06GHKNOACK@raid34@ 100a54c8 unit.cpp.obj + 0002:0000c4d0 ??_C@_06HOLGNBGL@raid35@ 100a54d0 unit.cpp.obj + 0002:0000c4d8 ??_C@_06FFJLICKI@raid36@ 100a54d8 unit.cpp.obj + 0002:0000c4e0 ??_C@_06EMIALDOJ@raid37@ 100a54e0 unit.cpp.obj + 0002:0000c4e8 ??_C@_06MLBIKPCG@raid38@ 100a54e8 unit.cpp.obj + 0002:0000c4f0 ??_C@_06NCADJOGH@raid39@ 100a54f0 unit.cpp.obj + 0002:0000c4f8 ??_C@_06GIODDKL@raid40@ 100a54f8 unit.cpp.obj + 0002:0000c500 ??_C@_08DGCGMEJN@raidpet1@ 100a5500 unit.cpp.obj + 0002:0000c50c ??_C@_08BNALJHFO@raidpet2@ 100a550c unit.cpp.obj + 0002:0000c518 ??_C@_08EBAKGBP@raidpet3@ 100a5518 unit.cpp.obj + 0002:0000c524 ??_C@_08ELFBDANI@raidpet4@ 100a5524 unit.cpp.obj + 0002:0000c530 ??_C@_08FCEKABJJ@raidpet5@ 100a5530 unit.cpp.obj + 0002:0000c53c ??_C@_08HJGHFCFK@raidpet6@ 100a553c unit.cpp.obj + 0002:0000c548 ??_C@_08GAHMGDBL@raidpet7@ 100a5548 unit.cpp.obj + 0002:0000c554 ??_C@_08OHOEHPNE@raidpet8@ 100a5554 unit.cpp.obj + 0002:0000c560 ??_C@_08POPPEOJF@raidpet9@ 100a5560 unit.cpp.obj + 0002:0000c56c ??_C@_09FBMOPPMO@raidpet10@ 100a556c unit.cpp.obj + 0002:0000c578 ??_C@_09EINFMOIP@raidpet11@ 100a5578 unit.cpp.obj + 0002:0000c584 ??_C@_09GDPIJNEM@raidpet12@ 100a5584 unit.cpp.obj + 0002:0000c590 ??_C@_09HKODKMAN@raidpet13@ 100a5590 unit.cpp.obj + 0002:0000c59c ??_C@_09DFKCDKMK@raidpet14@ 100a559c unit.cpp.obj + 0002:0000c5a8 ??_C@_09CMLJALIL@raidpet15@ 100a55a8 unit.cpp.obj + 0002:0000c5b4 ??_C@_09HJEFIEI@raidpet16@ 100a55b4 unit.cpp.obj + 0002:0000c5c0 ??_C@_09BOIPGJAJ@raidpet17@ 100a55c0 unit.cpp.obj + 0002:0000c5cc ??_C@_09JJBHHFMG@raidpet18@ 100a55cc unit.cpp.obj + 0002:0000c5d8 ??_C@_09IAAMEEIH@raidpet19@ 100a55d8 unit.cpp.obj + 0002:0000c5e4 ??_C@_09FDIIEBJH@raidpet20@ 100a55e4 unit.cpp.obj + 0002:0000c5f0 ??_C@_09EKJDHANG@raidpet21@ 100a55f0 unit.cpp.obj + 0002:0000c5fc ??_C@_09GBLOCDBF@raidpet22@ 100a55fc unit.cpp.obj + 0002:0000c608 ??_C@_09HIKFBCFE@raidpet23@ 100a5608 unit.cpp.obj + 0002:0000c614 ??_C@_09DHOEIEJD@raidpet24@ 100a5614 unit.cpp.obj + 0002:0000c620 ??_C@_09COPPLFNC@raidpet25@ 100a5620 unit.cpp.obj + 0002:0000c62c ??_C@_09FNCOGBB@raidpet26@ 100a562c unit.cpp.obj + 0002:0000c638 ??_C@_09BMMJNHFA@raidpet27@ 100a5638 unit.cpp.obj + 0002:0000c644 ??_C@_09JLFBMLJP@raidpet28@ 100a5644 unit.cpp.obj + 0002:0000c650 ??_C@_09ICEKPKNO@raidpet29@ 100a5650 unit.cpp.obj + 0002:0000c65c ??_C@_09FCEKCLKA@raidpet30@ 100a565c unit.cpp.obj + 0002:0000c668 ??_C@_09ELFBBKOB@raidpet31@ 100a5668 unit.cpp.obj + 0002:0000c674 ??_C@_09GAHMEJCC@raidpet32@ 100a5674 unit.cpp.obj + 0002:0000c680 ??_C@_09HJGHHIGD@raidpet33@ 100a5680 unit.cpp.obj + 0002:0000c68c ??_C@_09DGCGOOKE@raidpet34@ 100a568c unit.cpp.obj + 0002:0000c698 ??_C@_09CPDNNPOF@raidpet35@ 100a5698 unit.cpp.obj + 0002:0000c6a4 ??_C@_09EBAIMCG@raidpet36@ 100a56a4 unit.cpp.obj + 0002:0000c6b0 ??_C@_09BNALLNGH@raidpet37@ 100a56b0 unit.cpp.obj + 0002:0000c6bc ??_C@_09JKJDKBKI@raidpet38@ 100a56bc unit.cpp.obj + 0002:0000c6c8 ??_C@_09IDIIJAOJ@raidpet39@ 100a56c8 unit.cpp.obj + 0002:0000c6d4 ??_C@_09FHAFDNCF@raidpet40@ 100a56d4 unit.cpp.obj + 0002:0000c704 ??_C@_08FOLAHAHG@CRITICAL@ 100a5704 unit.cpp.obj + 0002:0000c710 ??_C@_08DGGKALMK@GLANCING@ 100a5710 unit.cpp.obj + 0002:0000c71c ??_C@_08FJLOOBFG@CRUSHING@ 100a571c unit.cpp.obj + 0002:0000c728 ??_C@_06NDMMNPAC@ABSORB@ 100a5728 unit.cpp.obj + 0002:0000c730 ??_C@_05DDIIKNEP@BLOCK@ 100a5730 unit.cpp.obj + 0002:0000c738 ??_C@_06KAMOOJNF@RESIST@ 100a5738 unit.cpp.obj + 0002:0000c740 __pDestructExceptionObject 100a5740 libvcruntime:ehhelpers.obj + 0002:0000c748 ??_7bad_typeid@std@@6B@ 100a5748 libvcruntime:rtti.obj + 0002:0000c754 ??_7__non_rtti_object@std@@6B@ 100a5754 libvcruntime:rtti.obj + 0002:0000c75c ??_C@_0CB@CGKGGDFI@Access?5violation?5?9?5no?5RTTI?5data@ 100a575c libvcruntime:rtti.obj + 0002:0000c780 ??_C@_0CH@OLLMPELC@Attempted?5a?5typeid?5of?5nullptr?5p@ 100a5780 libvcruntime:rtti.obj + 0002:0000c7a8 ??_C@_0CB@EEENAAHH@Bad?5read?5pointer?5?9?5no?5RTTI?5data@ 100a57a8 libvcruntime:rtti.obj + 0002:0000c7cc ??_C@_0BC@JNJNLHBP@Bad?5dynamic_cast?$CB@ 100a57cc libvcruntime:rtti.obj + 0002:0000cb68 ??_C@_08EHJDFFNH@__based?$CI@ 100a5b68 libvcruntime:undname.obj + 0002:0000cb74 ??_C@_07KOLFKCDI@__cdecl@ 100a5b74 libvcruntime:undname.obj + 0002:0000cb7c ??_C@_08GHMPAG@__pascal@ 100a5b7c libvcruntime:undname.obj + 0002:0000cb88 ??_C@_09IFJBGAPI@__stdcall@ 100a5b88 libvcruntime:undname.obj + 0002:0000cb94 ??_C@_0L@NPHFGOKO@__thiscall@ 100a5b94 libvcruntime:undname.obj + 0002:0000cba0 ??_C@_0L@JMKHOMEK@__fastcall@ 100a5ba0 libvcruntime:undname.obj + 0002:0000cbac ??_C@_0N@BCKKPABJ@__vectorcall@ 100a5bac libvcruntime:undname.obj + 0002:0000cbbc ??_C@_09HIJEGCPM@__clrcall@ 100a5bbc libvcruntime:undname.obj + 0002:0000cbc8 ??_C@_06GHPCKEAG@__eabi@ 100a5bc8 libvcruntime:undname.obj + 0002:0000cbd0 ??_C@_09IOPIDJLG@__swift_1@ 100a5bd0 libvcruntime:undname.obj + 0002:0000cbdc ??_C@_09KFNFGKHF@__swift_2@ 100a5bdc libvcruntime:undname.obj + 0002:0000cbe8 ??_C@_09LMMOFLDE@__swift_3@ 100a5be8 libvcruntime:undname.obj + 0002:0000cbf4 ??_C@_07JOMMBBKO@__ptr64@ 100a5bf4 libvcruntime:undname.obj + 0002:0000cbfc ??_C@_0L@PILCLIHE@__restrict@ 100a5bfc libvcruntime:undname.obj + 0002:0000cc08 ??_C@_0M@GFIIJFMG@__unaligned@ 100a5c08 libvcruntime:undname.obj + 0002:0000cc14 ??_C@_09DHDLOLLB@restrict?$CI@ 100a5c14 libvcruntime:undname.obj + 0002:0000cc20 ??_C@_04NIHEBCM@?5new@ 100a5c20 libvcruntime:undname.obj + 0002:0000cc28 ??_C@_07FPCDHGMM@?5delete@ 100a5c28 libvcruntime:undname.obj + 0002:0000cc30 ??_C@_02GPIOPFAK@?$DO?$DO@ 100a5c30 libvcruntime:undname.obj + 0002:0000cc34 ??_C@_02FODMEDOG@?$DM?$DM@ 100a5c34 libvcruntime:undname.obj + 0002:0000cc38 ??_C@_01DCLJPIOD@?$CB@ 100a5c38 libvcruntime:undname.obj + 0002:0000cc3c ??_C@_02EGOFBIJA@?$DN?$DN@ 100a5c3c libvcruntime:undname.obj + 0002:0000cc40 ??_C@_02FDNJECIE@?$CB?$DN@ 100a5c40 libvcruntime:undname.obj + 0002:0000cc44 ??_C@_02GPECMEKF@?$FL?$FN@ 100a5c44 libvcruntime:undname.obj + 0002:0000cc48 ??_C@_08LHJFAFGD@operator@ 100a5c48 libvcruntime:undname.obj + 0002:0000cc54 ??_C@_02HBOOOICD@?9?$DO@ 100a5c54 libvcruntime:undname.obj + 0002:0000cc58 ??_C@_01NBENCBCI@?$CK@ 100a5c58 libvcruntime:undname.obj + 0002:0000cc5c ??_C@_02ECNGHCIF@?$CL?$CL@ 100a5c5c libvcruntime:undname.obj + 0002:0000cc60 ??_C@_02BAABKJLB@?9?9@ 100a5c60 libvcruntime:undname.obj + 0002:0000cc64 ??_C@_01JOAMLHOP@?9@ 100a5c64 libvcruntime:undname.obj + 0002:0000cc68 ??_C@_01MIFGBAGJ@?$CL@ 100a5c68 libvcruntime:undname.obj + 0002:0000cc6c ??_C@_01HNPIGOCE@?$CG@ 100a5c6c libvcruntime:undname.obj + 0002:0000cc70 ??_C@_03MNHNFDLC@?9?$DO?$CK@ 100a5c70 libvcruntime:undname.obj + 0002:0000cc74 ??_C@_01KMDKNFGN@?1@ 100a5c74 libvcruntime:undname.obj + 0002:0000cc78 ??_C@_01FGNFDNOH@?$CF@ 100a5c78 libvcruntime:undname.obj + 0002:0000cc7c ??_C@_01MNNFJEPP@?$DM@ 100a5c7c libvcruntime:undname.obj + 0002:0000cc80 ??_C@_02EHCHHCKH@?$DM?$DN@ 100a5c80 libvcruntime:undname.obj + 0002:0000cc84 ??_C@_01PPODPGHN@?$DO@ 100a5c84 libvcruntime:undname.obj + 0002:0000cc88 ??_C@_02EEKDKGMJ@?$DO?$DN@ 100a5c88 libvcruntime:undname.obj + 0002:0000cc8c ??_C@_02HCKGKOFO@?$CI?$CJ@ 100a5c8c libvcruntime:undname.obj + 0002:0000cc90 ??_C@_01PJKLJHI@?$HO@ 100a5c90 libvcruntime:undname.obj + 0002:0000cc94 ??_C@_01JKBOJNNK@?$FO@ 100a5c94 libvcruntime:undname.obj + 0002:0000cc98 ??_C@_01DNKMNLPK@?$HM@ 100a5c98 libvcruntime:undname.obj + 0002:0000cc9c ??_C@_02PPKAJPJL@?$CG?$CG@ 100a5c9c libvcruntime:undname.obj + 0002:0000cca0 ??_C@_02NONPIBCD@?$HM?$HM@ 100a5ca0 libvcruntime:undname.obj + 0002:0000cca4 ??_C@_02FPIMKNGF@?$CK?$DN@ 100a5ca4 libvcruntime:undname.obj + 0002:0000cca8 ??_C@_02FOEOMHFC@?$CL?$DN@ 100a5ca8 libvcruntime:undname.obj + 0002:0000ccac ??_C@_02FKMDLLOA@?9?$DN@ 100a5cac libvcruntime:undname.obj + 0002:0000ccb0 ??_C@_02FJEHGPIO@?1?$DN@ 100a5cb0 libvcruntime:undname.obj + 0002:0000ccb4 ??_C@_02FENAOKFI@?$CF?$DN@ 100a5cb4 libvcruntime:undname.obj + 0002:0000ccb8 ??_C@_03IKFCCPFF@?$DO?$DO?$DN@ 100a5cb8 libvcruntime:undname.obj + 0002:0000ccbc ??_C@_03CDNPDDLA@?$DM?$DM?$DN@ 100a5cbc libvcruntime:undname.obj + 0002:0000ccc0 ??_C@_02FGJGFEAB@?$CG?$DN@ 100a5cc0 libvcruntime:undname.obj + 0002:0000ccc4 ??_C@_02DHLNPPGH@?$HM?$DN@ 100a5cc4 libvcruntime:undname.obj + 0002:0000ccc8 ??_C@_02MHEGNOJ@?$FO?$DN@ 100a5cc8 libvcruntime:undname.obj + 0002:0000cccc ??_C@_09IFPLHPGF@?$GAvftable?8@ 100a5ccc libvcruntime:undname.obj + 0002:0000ccd8 ??_C@_09BLBHBJP@?$GAvbtable?8@ 100a5cd8 libvcruntime:undname.obj + 0002:0000cce4 ??_C@_07FEEIOKP@?$GAvcall?8@ 100a5ce4 libvcruntime:undname.obj + 0002:0000ccec ??_C@_08LLFFHHDJ@?$GAtypeof?8@ 100a5cec libvcruntime:undname.obj + 0002:0000ccf8 ??_C@_0BF@KDPPACIK@?$GAlocal?5static?5guard?8@ 100a5cf8 libvcruntime:undname.obj + 0002:0000cd10 ??_C@_08OBABFOLI@?$GAstring?8@ 100a5d10 libvcruntime:undname.obj + 0002:0000cd1c ??_C@_0BD@JDLKDPAB@?$GAvbase?5destructor?8@ 100a5d1c libvcruntime:undname.obj + 0002:0000cd30 ??_C@_0BN@DEGPLNFK@?$GAvector?5deleting?5destructor?8@ 100a5d30 libvcruntime:undname.obj + 0002:0000cd50 ??_C@_0BO@OBMKPJIG@?$GAdefault?5constructor?5closure?8@ 100a5d50 libvcruntime:undname.obj + 0002:0000cd70 ??_C@_0BN@IMDCHIKM@?$GAscalar?5deleting?5destructor?8@ 100a5d70 libvcruntime:undname.obj + 0002:0000cd90 ??_C@_0BO@PFGOCPJJ@?$GAvector?5constructor?5iterator?8@ 100a5d90 libvcruntime:undname.obj + 0002:0000cdb0 ??_C@_0BN@LFPFMEDL@?$GAvector?5destructor?5iterator?8@ 100a5db0 libvcruntime:undname.obj + 0002:0000cdd0 ??_C@_0CE@IKBNEHA@?$GAvector?5vbase?5constructor?5itera@ 100a5dd0 libvcruntime:undname.obj + 0002:0000cdf4 ??_C@_0BL@NILFHHPC@?$GAvirtual?5displacement?5map?8@ 100a5df4 libvcruntime:undname.obj + 0002:0000ce10 ??_C@_0CB@JONCMFFK@?$GAeh?5vector?5constructor?5iterator@ 100a5e10 libvcruntime:undname.obj + 0002:0000ce34 ??_C@_0CA@GCEOPDGL@?$GAeh?5vector?5destructor?5iterator?8@ 100a5e34 libvcruntime:undname.obj + 0002:0000ce54 ??_C@_0CH@OOJPLCPH@?$GAeh?5vector?5vbase?5constructor?5it@ 100a5e54 libvcruntime:undname.obj + 0002:0000ce7c ??_C@_0BL@LLKPOHJI@?$GAcopy?5constructor?5closure?8@ 100a5e7c libvcruntime:undname.obj + 0002:0000ce98 ??_C@_0BA@KBCDOMBN@?$GAudt?5returning?8@ 100a5e98 libvcruntime:undname.obj + 0002:0000cea8 ??_C@_03KLGMFNMG@?$GAEH@ 100a5ea8 libvcruntime:undname.obj + 0002:0000ceac ??_C@_05KHLCHHI@?$GARTTI@ 100a5eac libvcruntime:undname.obj + 0002:0000ceb4 ??_C@_0BA@KKLDJDLB@?$GAlocal?5vftable?8@ 100a5eb4 libvcruntime:undname.obj + 0002:0000cec4 ??_C@_0CE@IIHCMGGL@?$GAlocal?5vftable?5constructor?5clos@ 100a5ec4 libvcruntime:undname.obj + 0002:0000cee8 ??_C@_06FHBGPFGH@?5new?$FL?$FN@ 100a5ee8 libvcruntime:undname.obj + 0002:0000cef0 ??_C@_09LBNFPBCA@?5delete?$FL?$FN@ 100a5ef0 libvcruntime:undname.obj + 0002:0000cefc ??_C@_0P@HJKNJFNN@?$GAomni?5callsig?8@ 100a5efc libvcruntime:undname.obj + 0002:0000cf0c ??_C@_0BL@CNOONJFP@?$GAplacement?5delete?5closure?8@ 100a5f0c libvcruntime:undname.obj + 0002:0000cf28 ??_C@_0BN@CKNJLHMB@?$GAplacement?5delete?$FL?$FN?5closure?8@ 100a5f28 libvcruntime:undname.obj + 0002:0000cf48 ??_C@_0CG@CFDHKGGD@?$GAmanaged?5vector?5constructor?5ite@ 100a5f48 libvcruntime:undname.obj + 0002:0000cf70 ??_C@_0CF@IMGKMJNO@?$GAmanaged?5vector?5destructor?5iter@ 100a5f70 libvcruntime:undname.obj + 0002:0000cf98 ??_C@_0CG@HLDDJMAG@?$GAeh?5vector?5copy?5constructor?5ite@ 100a5f98 libvcruntime:undname.obj + 0002:0000cfc0 ??_C@_0CM@FCBBDIGB@?$GAeh?5vector?5vbase?5copy?5construct@ 100a5fc0 libvcruntime:undname.obj + 0002:0000cfec ??_C@_0BL@CLIPGLGB@?$GAdynamic?5initializer?5for?5?8@ 100a5fec libvcruntime:undname.obj + 0002:0000d008 ??_C@_0CB@PDBIFEP@?$GAdynamic?5atexit?5destructor?5for?5@ 100a6008 libvcruntime:undname.obj + 0002:0000d02c ??_C@_0CD@CGAJBKEJ@?$GAvector?5copy?5constructor?5iterat@ 100a602c libvcruntime:undname.obj + 0002:0000d050 ??_C@_0CJ@GJELGAMM@?$GAvector?5vbase?5copy?5constructor?5@ 100a6050 libvcruntime:undname.obj + 0002:0000d07c ??_C@_0CL@FGIJHLCE@?$GAmanaged?5vector?5copy?5constructo@ 100a607c libvcruntime:undname.obj + 0002:0000d0a8 ??_C@_0BM@PMGGMLDN@?$GAlocal?5static?5thread?5guard?8@ 100a60a8 libvcruntime:undname.obj + 0002:0000d0c4 ??_C@_0N@BDNMDMOL@operator?5?$CC?$CC?5@ 100a60c4 libvcruntime:undname.obj + 0002:0000d0d4 ??_C@_0BC@GGEBGALA@operator?5co_await@ 100a60d4 libvcruntime:undname.obj + 0002:0000d0e8 ??_C@_0M@GAAIMMOH@operator?$DM?$DN?$DO@ 100a60e8 libvcruntime:undname.obj + 0002:0000d0f4 ??_C@_0BC@DAFEJGAK@?5Type?5Descriptor?8@ 100a60f4 libvcruntime:undname.obj + 0002:0000d108 ??_C@_0BM@LDKODKLH@?5Base?5Class?5Descriptor?5at?5?$CI@ 100a6108 libvcruntime:undname.obj + 0002:0000d124 ??_C@_0BD@LGICGFMM@?5Base?5Class?5Array?8@ 100a6124 libvcruntime:undname.obj + 0002:0000d138 ??_C@_0BN@MECKDCOJ@?5Class?5Hierarchy?5Descriptor?8@ 100a6138 libvcruntime:undname.obj + 0002:0000d158 ??_C@_0BK@CFCOFLF@?5Complete?5Object?5Locator?8@ 100a6158 libvcruntime:undname.obj + 0002:0000d174 ??_C@_0BG@JNJLAMPM@?$GAanonymous?5namespace?8@ 100a6174 libvcruntime:undname.obj + 0002:0000d18c ??_C@_04HEJADOOB@CV?3?5@ 100a618c libvcruntime:undname.obj + 0002:0000d194 ??_C@_02MOLJINC@?3?3@ 100a6194 libvcruntime:undname.obj + 0002:0000d198 ??_C@_0BE@JAEOCHPE@template?9parameter?9@ 100a6198 libvcruntime:undname.obj + 0002:0000d1ac ??_C@_0BF@LNLGBBNL@?$GAtemplate?9parameter?9@ 100a61ac libvcruntime:undname.obj + 0002:0000d1c4 ??_C@_0O@KHGCOMHP@generic?9type?9@ 100a61c4 libvcruntime:undname.obj + 0002:0000d1d4 ??_C@_0P@ODDENDLM@?$GAgeneric?9type?9@ 100a61d4 libvcruntime:undname.obj + 0002:0000d1e4 ??_C@_02OHHJMEON@?8?8@ 100a61e4 libvcruntime:undname.obj + 0002:0000d1e8 ??_C@_0BN@IBLMMFAP@?$GAnon?9type?9template?9parameter@ 100a61e8 libvcruntime:undname.obj + 0002:0000d208 ??_C@_03DLDNIBIK@?$CFlf@ 100a6208 libvcruntime:undname.obj + 0002:0000d20c ??_C@_04OFALKAJ@?$DP?$DP_C@ 100a620c libvcruntime:undname.obj + 0002:0000d214 ??_C@_03KHICJKCI@?4?4?4@ 100a6214 libvcruntime:undname.obj + 0002:0000d218 ??_C@_04HIBGFPH@NULL@ 100a6218 libvcruntime:undname.obj + 0002:0000d220 ??_C@_02DPKJAMEF@?$CFd@ 100a6220 libvcruntime:undname.obj + 0002:0000d224 ??_C@_0BK@IHCCFNEL@?$GAtemplate?9type?9parameter?9@ 100a6224 libvcruntime:undname.obj + 0002:0000d240 ??_C@_0BK@OFCNNNKO@?$GAgeneric?9class?9parameter?9@ 100a6240 libvcruntime:undname.obj + 0002:0000d25c ??_C@_0BL@NGJBLFIL@?$GAgeneric?9method?9parameter?9@ 100a625c libvcruntime:undname.obj + 0002:0000d278 ??_C@_07OHNGEDJK@nullptr@ 100a6278 libvcruntime:undname.obj + 0002:0000d280 ??_C@_06COJIGPIB@lambda@ 100a6280 libvcruntime:undname.obj + 0002:0000d288 ??_C@_04GKJNKENE@void@ 100a6288 libvcruntime:undname.obj + 0002:0000d290 ??_C@_0BE@EODMJLIF@?$GAtemplate?9parameter@ 100a6290 libvcruntime:undname.obj + 0002:0000d2a4 ??_C@_03OPGICMGF@?$HN?8?5@ 100a62a4 libvcruntime:undname.obj + 0002:0000d2a8 ??_C@_02IGFCGPIL@?$HN?8@ 100a62a8 libvcruntime:undname.obj + 0002:0000d2ac ??_C@_0N@CBHHHENL@?$GAvtordispex?$HL@ 100a62ac libvcruntime:undname.obj + 0002:0000d2bc ??_C@_0L@GHPFDFH@?$GAvtordisp?$HL@ 100a62bc libvcruntime:undname.obj + 0002:0000d2c8 ??_C@_0L@HNGCOGAE@?$GAadjustor?$HL@ 100a62c8 libvcruntime:undname.obj + 0002:0000d2d4 ??_C@_0CB@KJDOOODE@?$GAlocal?5static?5destructor?5helper@ 100a62d4 libvcruntime:undname.obj + 0002:0000d2f8 ??_C@_0DB@ILEFOCIJ@?$GAtemplate?5static?5data?5member?5co@ 100a62f8 libvcruntime:undname.obj + 0002:0000d32c ??_C@_0DA@HGFJFBBE@?$GAtemplate?5static?5data?5member?5de@ 100a632c libvcruntime:undname.obj + 0002:0000d35c ??_C@_07PGOEDBHP@static?5@ 100a635c libvcruntime:undname.obj + 0002:0000d364 ??_C@_08NIEOINHE@virtual?5@ 100a6364 libvcruntime:undname.obj + 0002:0000d370 ??_C@_09LAPHOOG@private?3?5@ 100a6370 libvcruntime:undname.obj + 0002:0000d37c ??_C@_0M@GAIFPFIP@protected?3?5@ 100a637c libvcruntime:undname.obj + 0002:0000d388 ??_C@_08GPDDCMKI@public?3?5@ 100a6388 libvcruntime:undname.obj + 0002:0000d394 ??_C@_08KJLFOPNE@?$FLthunk?$FN?3@ 100a6394 libvcruntime:undname.obj + 0002:0000d3a0 ??_C@_0M@DHNBOJMP@extern?5?$CCC?$CC?5@ 100a63a0 libvcruntime:undname.obj + 0002:0000d3ac ??_C@_02KCKGHPCA@?$CJ?5@ 100a63ac libvcruntime:undname.obj + 0002:0000d3b0 ??_C@_05CIHEBHNO@char?5@ 100a63b0 libvcruntime:undname.obj + 0002:0000d3b8 ??_C@_06EHJMALKF@short?5@ 100a63b8 libvcruntime:undname.obj + 0002:0000d3c0 ??_C@_04LAHKHJMA@int?5@ 100a63c0 libvcruntime:undname.obj + 0002:0000d3c8 ??_C@_05CJIMAING@long?5@ 100a63c8 libvcruntime:undname.obj + 0002:0000d3d0 ??_C@_09EBBEKKIH@unsigned?5@ 100a63d0 libvcruntime:undname.obj + 0002:0000d3dc ??_C@_05BEFAKPML@void?5@ 100a63dc libvcruntime:undname.obj + 0002:0000d3e4 ??_C@_09GAIEOBLP@volatile?5@ 100a63e4 libvcruntime:undname.obj + 0002:0000d3f0 ??_C@_08PABEKFH@volatile@ 100a63f0 libvcruntime:undname.obj + 0002:0000d3fc ??_C@_0BA@LKIJLKPP@std?3?3nullptr_t?5@ 100a63fc libvcruntime:undname.obj + 0002:0000d40c ??_C@_0P@GCOCNKDM@std?3?3nullptr_t@ 100a640c libvcruntime:undname.obj + 0002:0000d41c ??_C@_0L@EGPHHEKN@?$DMellipsis?$DO@ 100a641c libvcruntime:undname.obj + 0002:0000d428 ??_C@_04EENFHACM@?0?4?4?4@ 100a6428 libvcruntime:undname.obj + 0002:0000d430 ??_C@_0M@ELJOJFFH@?0?$DMellipsis?$DO@ 100a6430 libvcruntime:undname.obj + 0002:0000d43c ??_C@_09DNHFEOJI@?5noexcept@ 100a643c libvcruntime:undname.obj + 0002:0000d448 ??_C@_03PBJBJNON@cpu@ 100a6448 libvcruntime:undname.obj + 0002:0000d44c ??_C@_03DCBBJBAA@amp@ 100a644c libvcruntime:undname.obj + 0002:0000d450 ??_C@_04ENMBGAPA@char@ 100a6450 libvcruntime:undname.obj + 0002:0000d458 ??_C@_05BFKKPKCG@short@ 100a6458 libvcruntime:undname.obj + 0002:0000d460 ??_C@_03JBIPMCLC@int@ 100a6460 libvcruntime:undname.obj + 0002:0000d464 ??_C@_04GOKPGOLB@long@ 100a6464 libvcruntime:undname.obj + 0002:0000d46c ??_C@_05KNFBNCOH@float@ 100a646c libvcruntime:undname.obj + 0002:0000d474 ??_C@_06BNJCAIGJ@double@ 100a6474 libvcruntime:undname.obj + 0002:0000d47c ??_C@_04DDKJGDCM@bool@ 100a647c libvcruntime:undname.obj + 0002:0000d484 ??_C@_06EBGKOKIG@__int8@ 100a6484 libvcruntime:undname.obj + 0002:0000d48c ??_C@_07ICFHOGAF@__int16@ 100a648c libvcruntime:undname.obj + 0002:0000d494 ??_C@_07OFLPPHGP@__int32@ 100a6494 libvcruntime:undname.obj + 0002:0000d49c ??_C@_07LFCOJCAC@__int64@ 100a649c libvcruntime:undname.obj + 0002:0000d4a4 ??_C@_08GAHOLHEO@__int128@ 100a64a4 libvcruntime:undname.obj + 0002:0000d4b0 ??_C@_09EEKGDCPH@?$DMunknown?$DO@ 100a64b0 libvcruntime:undname.obj + 0002:0000d4bc ??_C@_07CFHGOPCN@char8_t@ 100a64bc libvcruntime:undname.obj + 0002:0000d4c4 ??_C@_08HBIPOFJB@char16_t@ 100a64c4 libvcruntime:undname.obj + 0002:0000d4d0 ??_C@_08IECNCBKG@char32_t@ 100a64d0 libvcruntime:undname.obj + 0002:0000d4dc ??_C@_07CLGGIAMF@wchar_t@ 100a64dc libvcruntime:undname.obj + 0002:0000d4e4 ??_C@_04HAPDLBFF@auto@ 100a64e4 libvcruntime:undname.obj + 0002:0000d4ec ??_C@_0P@LHCGKIGK@decltype?$CIauto?$CJ@ 100a64ec libvcruntime:undname.obj + 0002:0000d4fc ??_C@_05PCNBGHCF@this?5@ 100a64fc libvcruntime:undname.obj + 0002:0000d504 ??_C@_06GCICPBLB@__w64?5@ 100a6504 libvcruntime:undname.obj + 0002:0000d50c ??_C@_07NFANNNEC@UNKNOWN@ 100a650c libvcruntime:undname.obj + 0002:0000d514 ??_C@_07EDHNAJHC@signed?5@ 100a6514 libvcruntime:undname.obj + 0002:0000d51c ??_C@_05BNCCCJPP@const@ 100a651c libvcruntime:undname.obj + 0002:0000d524 ??_C@_09EFNPDFFP@?5volatile@ 100a6524 libvcruntime:undname.obj + 0002:0000d530 ??_C@_0P@GCIFDJCJ@?$GAunknown?5ecsu?8@ 100a6530 libvcruntime:undname.obj + 0002:0000d540 ??_C@_06MOJHIBMG@union?5@ 100a6540 libvcruntime:undname.obj + 0002:0000d548 ??_C@_07DIBCDNGL@struct?5@ 100a6548 libvcruntime:undname.obj + 0002:0000d550 ??_C@_06LJBABKPM@class?5@ 100a6550 libvcruntime:undname.obj + 0002:0000d558 ??_C@_08KOFANOFK@coclass?5@ 100a6558 libvcruntime:undname.obj + 0002:0000d564 ??_C@_0N@DLIEFKNA@cointerface?5@ 100a6564 libvcruntime:undname.obj + 0002:0000d574 ??_C@_05LJGMCFOG@enum?5@ 100a6574 libvcruntime:undname.obj + 0002:0000d57c ??_C@_06LIJLOJAG@const?5@ 100a657c libvcruntime:undname.obj + 0002:0000d584 ??_C@_02KJPKDIBN@?$CG?5@ 100a6584 libvcruntime:undname.obj + 0002:0000d588 ??_C@_03PCKGMOPB@?$CG?$CG?5@ 100a6588 libvcruntime:undname.obj + 0002:0000d58c ??_C@_0M@EALIELKG@cli?3?3array?$DM@ 100a658c libvcruntime:undname.obj + 0002:0000d598 ??_C@_0O@GKABPPIF@cli?3?3pin_ptr?$DM@ 100a6598 libvcruntime:undname.obj + 0002:0000d5a8 ??_C@_02GOGNNPBN@?$CJ?$FL@ 100a65a8 libvcruntime:undname.obj + 0002:0000d5ac ??_C@_06EEGAIFAK@?$HLflat?$HN@ 100a65ac libvcruntime:undname.obj + 0002:0000d5b4 ??_C@_05JIBOFOHK@?$HLfor?5@ 100a65b4 libvcruntime:undname.obj + 0002:0000d5bc ??_C@_02MDINNEEG@s?5@ 100a65bc libvcruntime:undname.obj + 0002:0000d5c4 ??_7DNameNode@@6B@ 100a65c4 libvcruntime:undname.obj + 0002:0000d5d8 ??_7charNode@@6B@ 100a65d8 libvcruntime:undname.obj + 0002:0000d5ec ??_7pcharNode@@6B@ 100a65ec libvcruntime:undname.obj + 0002:0000d600 ??_7pDNameNode@@6B@ 100a6600 libvcruntime:undname.obj + 0002:0000d614 ??_7DNameStatusNode@@6B@ 100a6614 libvcruntime:undname.obj + 0002:0000d628 ??_7pairNode@@6B@ 100a6628 libvcruntime:undname.obj + 0002:0000d738 ??_C@_04OKOHEJBO@?5?$DP?$DP?5@ 100a6738 libvcruntime:undname.obj + 0002:0000d740 ?nodes@?1??make@DNameStatusNode@@SAPBV2@W4DNameStatus@@@Z@4QBV2@B 100a6740 libvcruntime:undname.obj + 0002:0000d77c ??_C@_1DM@KHCHBNEB@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a677c libvcruntime:winapi_downlevel.obj + 0002:0000d7b8 ??_C@_1DK@LPPGFMPP@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a67b8 libvcruntime:winapi_downlevel.obj + 0002:0000d7f4 ??_C@_1BC@GDMECMAK@?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AA3?$AA2@ 100a67f4 libvcruntime:winapi_downlevel.obj + 0002:0000d808 ??_C@_1BA@PFFKHIOG@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9@ 100a6808 libvcruntime:winapi_downlevel.obj + 0002:0000d820 ??_C@_08KNHFBNJ@FlsAlloc@ 100a6820 libvcruntime:winapi_downlevel.obj + 0002:0000d834 ??_C@_07PEJMOBNF@FlsFree@ 100a6834 libvcruntime:winapi_downlevel.obj + 0002:0000d844 ??_C@_0M@GDNOONDI@FlsGetValue@ 100a6844 libvcruntime:winapi_downlevel.obj + 0002:0000d858 ??_C@_0M@JCPCPOEF@FlsSetValue@ 100a6858 libvcruntime:winapi_downlevel.obj + 0002:0000d86c ??_C@_0BM@HCFOFFN@InitializeCriticalSectionEx@ 100a686c libvcruntime:winapi_downlevel.obj + 0002:0000d888 ?standard_lookup_table_spectre@__crt_stdio_output@@3V?$spectre_mitigated_lookup_table@Ustate_transition_pair@__crt_stdio_output@@$0IA@@1@B 100a6888 libucrt:output.obj + 0002:0000d988 ?format_validation_lookup_table_spectre@__crt_stdio_output@@3V?$spectre_mitigated_lookup_table@Ustate_transition_pair@__crt_stdio_output@@$0IA@@1@B 100a6988 libucrt:output.obj + 0002:0000da88 ??_C@_1O@CEDCILHN@?$AA?$CI?$AAn?$AAu?$AAl?$AAl?$AA?$CJ@ 100a6a88 libucrt:output.obj + 0002:0000dc00 __real@8000000000000000 100a6c00 libucrt:frexp.obj + 0002:0000dc08 ?large_power_data@?1??multiply_by_power_of_ten@__crt_strtox@@YA_NAAUbig_integer@2@I@Z@4QBIB 100a6c08 libucrt:strtod.obj + 0002:0000e510 ?large_power_indices@?1??multiply_by_power_of_ten@__crt_strtox@@YA_NAAUbig_integer@2@I@Z@4QBUunpack_index@?1??12@YA_N0I@Z@B 100a7510 libucrt:strtod.obj + 0002:0000e5a8 ?small_powers_of_ten@?1??multiply_by_power_of_ten@__crt_strtox@@YA_NAAUbig_integer@2@I@Z@4QBIB 100a75a8 libucrt:strtod.obj + 0002:0000e5d0 ??_C@_1GE@DPGDJKLM@?$AAm?$AAi?$AAn?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AA?2?$AAc?$AAr?$AAt?$AAs?$AA?2@ 100a75d0 libucrt:strtod.obj + 0002:0000e638 ??_C@_1FM@FELNCOBF@?$AA_?$AA_?$AAc?$AAr?$AAt?$AA_?$AAs?$AAt?$AAr?$AAt?$AAo?$AAx?$AA?3?$AA?3?$AAf@ 100a7638 libucrt:strtod.obj + 0002:0000e694 ??_C@_1BG@GEMHBGAF@?$AA_?$AAi?$AAs?$AA_?$AAd?$AAo?$AAu?$AAb?$AAl?$AAe@ 100a7694 libucrt:strtod.obj + 0002:0000e6b0 ??_C@_1FK@JOJELFFO@?$AA_?$AA_?$AAc?$AAr?$AAt?$AA_?$AAs?$AAt?$AAr?$AAt?$AAo?$AAx?$AA?3?$AA?3?$AAf@ 100a76b0 libucrt:strtod.obj + 0002:0000e70c ??_C@_1BI@BANMPGJI@?$AA?$CB?$AA_?$AAi?$AAs?$AA_?$AAd?$AAo?$AAu?$AAb?$AAl?$AAe@ 100a770c libucrt:strtod.obj + 0002:0000e724 ?inf_uppercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a7724 libucrt:strtod.obj + 0002:0000e728 ?inf_lowercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a7728 libucrt:strtod.obj + 0002:0000e72c ?inity_uppercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a772c libucrt:strtod.obj + 0002:0000e734 ?inity_lowercase@?1???$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a7734 libucrt:strtod.obj + 0002:0000e73c ?uppercase@?1???$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a773c libucrt:strtod.obj + 0002:0000e740 ?lowercase@?1???$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@1@AADAAV?$c_string_character_source@D@1@PBD@Z@4QBDB 100a7740 libucrt:strtod.obj + 0002:0000e744 ?uppercase@?1???$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a7744 libucrt:strtod.obj + 0002:0000e74c ?lowercase@?1???$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a774c libucrt:strtod.obj + 0002:0000e754 ?uppercase@?1???$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a7754 libucrt:strtod.obj + 0002:0000e758 ?lowercase@?1???$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@1@@Z@4QBDB 100a7758 libucrt:strtod.obj + 0002:0000e828 ___lc_category 100a7828 libucrt:wsetlocale.obj + 0002:0000e870 ??_C@_1O@GIFLHMA@?$AAL?$AAC?$AA_?$AAA?$AAL?$AAL@ 100a7870 libucrt:wsetlocale.obj + 0002:0000e880 ??_C@_1BG@PPOMIBNJ@?$AAL?$AAC?$AA_?$AAC?$AAO?$AAL?$AAL?$AAA?$AAT?$AAE@ 100a7880 libucrt:wsetlocale.obj + 0002:0000e898 ??_C@_1BC@FFJGAPJM@?$AAL?$AAC?$AA_?$AAC?$AAT?$AAY?$AAP?$AAE@ 100a7898 libucrt:wsetlocale.obj + 0002:0000e8ac ??_C@_1BI@PCKFNJFB@?$AAL?$AAC?$AA_?$AAM?$AAO?$AAN?$AAE?$AAT?$AAA?$AAR?$AAY@ 100a78ac libucrt:wsetlocale.obj + 0002:0000e8c4 ??_C@_1BG@ENIEDKID@?$AAL?$AAC?$AA_?$AAN?$AAU?$AAM?$AAE?$AAR?$AAI?$AAC@ 100a78c4 libucrt:wsetlocale.obj + 0002:0000e8dc ??_C@_1BA@HAAOMIIG@?$AAL?$AAC?$AA_?$AAT?$AAI?$AAM?$AAE@ 100a78dc libucrt:wsetlocale.obj + 0002:0000e8ec ??_C@_15NBPDDFIP@?$AA?$DN?$AA?$DL@ 100a78ec libucrt:wsetlocale.obj + 0002:0000e8f4 ??_C@_13PJJBFPED@?$AA?$DL@ 100a78f4 libucrt:wsetlocale.obj + 0002:0000e8f8 ??_C@_13NMPKAAJP@?$AA?$DN@ 100a78f8 libucrt:wsetlocale.obj + 0002:0000e8fc ??_C@_13IMODFHAA@?$AA?9@ 100a78fc libucrt:wsetlocale.obj + 0002:0000e900 ??_C@_17EFJLDFDO@?$AA?9?$AA_?$AA?4@ 100a7900 libucrt:wsetlocale.obj + 0002:0000e908 ??_C@_13FHBKNHDA@?$AAC@ 100a7908 libucrt:wsetlocale.obj + 0002:0000e90c ??_C@_17MBJJLFDM@?$AA_?$AA?4?$AA?0@ 100a790c libucrt:wsetlocale.obj + 0002:0000e914 ??_C@_13ENNFDPBH@?$AA_@ 100a7914 libucrt:wsetlocale.obj + 0002:0000e918 ??_C@_13JOFGPIOO@?$AA?4@ 100a7918 libucrt:wsetlocale.obj + 0002:0000e920 ___lc_time_c 100a7920 libucrt:nlsdata.obj + 0002:0000ea84 ??_C@_03KOEHGMDN@Sun@ 100a7a84 libucrt:nlsdata.obj + 0002:0000ea88 ??_C@_03PDAGKDH@Mon@ 100a7a88 libucrt:nlsdata.obj + 0002:0000ea8c ??_C@_03NAGEINEP@Tue@ 100a7a8c libucrt:nlsdata.obj + 0002:0000ea90 ??_C@_03MHOMLAJA@Wed@ 100a7a90 libucrt:nlsdata.obj + 0002:0000ea94 ??_C@_03IOFIKPDN@Thu@ 100a7a94 libucrt:nlsdata.obj + 0002:0000ea98 ??_C@_03IDIOELNC@Fri@ 100a7a98 libucrt:nlsdata.obj + 0002:0000ea9c ??_C@_03FEFJNEK@Sat@ 100a7a9c libucrt:nlsdata.obj + 0002:0000eaa0 ??_C@_06OOPIFAJ@Sunday@ 100a7aa0 libucrt:nlsdata.obj + 0002:0000eaa8 ??_C@_06JLEDEDGH@Monday@ 100a7aa8 libucrt:nlsdata.obj + 0002:0000eab0 ??_C@_07BAAGCFCM@Tuesday@ 100a7ab0 libucrt:nlsdata.obj + 0002:0000eab8 ??_C@_09DLIGFAKA@Wednesday@ 100a7ab8 libucrt:nlsdata.obj + 0002:0000eac4 ??_C@_08HACCIKIA@Thursday@ 100a7ac4 libucrt:nlsdata.obj + 0002:0000ead0 ??_C@_06JECMNKMI@Friday@ 100a7ad0 libucrt:nlsdata.obj + 0002:0000ead8 ??_C@_08INBOOONO@Saturday@ 100a7ad8 libucrt:nlsdata.obj + 0002:0000eae4 ??_C@_03JIHJHPIE@Jan@ 100a7ae4 libucrt:nlsdata.obj + 0002:0000eae8 ??_C@_03HJBDCHOM@Feb@ 100a7ae8 libucrt:nlsdata.obj + 0002:0000eaec ??_C@_03ODNJBKGA@Mar@ 100a7aec libucrt:nlsdata.obj + 0002:0000eaf0 ??_C@_03LEOLGMJP@Apr@ 100a7af0 libucrt:nlsdata.obj + 0002:0000eaf4 ??_C@_03CNMDKL@May@ 100a7af4 libucrt:nlsdata.obj + 0002:0000eaf8 ??_C@_03IDFGHECI@Jun@ 100a7af8 libucrt:nlsdata.obj + 0002:0000eafc ??_C@_03LBGABGKK@Jul@ 100a7afc libucrt:nlsdata.obj + 0002:0000eb00 ??_C@_03IFJFEIGA@Aug@ 100a7b00 libucrt:nlsdata.obj + 0002:0000eb04 ??_C@_03GGCAPAJC@Sep@ 100a7b04 libucrt:nlsdata.obj + 0002:0000eb08 ??_C@_03BMAOKBAD@Oct@ 100a7b08 libucrt:nlsdata.obj + 0002:0000eb0c ??_C@_03JPJOFNIA@Nov@ 100a7b0c libucrt:nlsdata.obj + 0002:0000eb10 ??_C@_03MKABNOCG@Dec@ 100a7b10 libucrt:nlsdata.obj + 0002:0000eb14 ??_C@_07CGJPFGJA@January@ 100a7b14 libucrt:nlsdata.obj + 0002:0000eb1c ??_C@_08GNJGEPFN@February@ 100a7b1c libucrt:nlsdata.obj + 0002:0000eb28 ??_C@_05HPCKOFNC@March@ 100a7b28 libucrt:nlsdata.obj + 0002:0000eb30 ??_C@_05DMJDNLEJ@April@ 100a7b30 libucrt:nlsdata.obj + 0002:0000eb38 ??_C@_04CNLMGBGM@June@ 100a7b38 libucrt:nlsdata.obj + 0002:0000eb40 ??_C@_04MIEPOIFP@July@ 100a7b40 libucrt:nlsdata.obj + 0002:0000eb48 ??_C@_06LBBHFDDG@August@ 100a7b48 libucrt:nlsdata.obj + 0002:0000eb50 ??_C@_09BHHEALKD@September@ 100a7b50 libucrt:nlsdata.obj + 0002:0000eb5c ??_C@_07JJNFCEND@October@ 100a7b5c libucrt:nlsdata.obj + 0002:0000eb64 ??_C@_08HCHEGEOA@November@ 100a7b64 libucrt:nlsdata.obj + 0002:0000eb70 ??_C@_08EDHMEBNP@December@ 100a7b70 libucrt:nlsdata.obj + 0002:0000eb7c ??_C@_02DEDBPAFC@AM@ 100a7b7c libucrt:nlsdata.obj + 0002:0000eb80 ??_C@_02CJNFDJBF@PM@ 100a7b80 libucrt:nlsdata.obj + 0002:0000eb84 ??_C@_08BPBNCDIB@MM?1dd?1yy@ 100a7b84 libucrt:nlsdata.obj + 0002:0000eb90 ??_C@_0BE@CKGJFCPC@dddd?0?5MMMM?5dd?0?5yyyy@ 100a7b90 libucrt:nlsdata.obj + 0002:0000eba4 ??_C@_08JCCMCCIL@HH?3mm?3ss@ 100a7ba4 libucrt:nlsdata.obj + 0002:0000ebb0 ??_C@_17MBGCMIPB@?$AAS?$AAu?$AAn@ 100a7bb0 libucrt:nlsdata.obj + 0002:0000ebb8 ??_C@_17KBOMKBF@?$AAM?$AAo?$AAn@ 100a7bb8 libucrt:nlsdata.obj + 0002:0000ebc0 ??_C@_17BMKGEGOJ@?$AAT?$AAu?$AAe@ 100a7bc0 libucrt:nlsdata.obj + 0002:0000ebc8 ??_C@_17CJEDCEPE@?$AAW?$AAe?$AAd@ 100a7bc8 libucrt:nlsdata.obj + 0002:0000ebd0 ??_C@_17PDPHAADD@?$AAT?$AAh?$AAu@ 100a7bd0 libucrt:nlsdata.obj + 0002:0000ebd8 ??_C@_17HFOLPPLP@?$AAF?$AAr?$AAi@ 100a7bd8 libucrt:nlsdata.obj + 0002:0000ebe0 ??_C@_17GGIBDPIH@?$AAS?$AAa?$AAt@ 100a7be0 libucrt:nlsdata.obj + 0002:0000ebe8 ??_C@_1O@IHNHDHPB@?$AAS?$AAu?$AAn?$AAd?$AAa?$AAy@ 100a7be8 libucrt:nlsdata.obj + 0002:0000ebf8 ??_C@_1O@MMNBFLIA@?$AAM?$AAo?$AAn?$AAd?$AAa?$AAy@ 100a7bf8 libucrt:nlsdata.obj + 0002:0000ec08 ??_C@_1BA@ENFBFFEK@?$AAT?$AAu?$AAe?$AAs?$AAd?$AAa?$AAy@ 100a7c08 libucrt:nlsdata.obj + 0002:0000ec18 ??_C@_1BE@EBOGMDOH@?$AAW?$AAe?$AAd?$AAn?$AAe?$AAs?$AAd?$AAa?$AAy@ 100a7c18 libucrt:nlsdata.obj + 0002:0000ec2c ??_C@_1BC@HHMNLIHE@?$AAT?$AAh?$AAu?$AAr?$AAs?$AAd?$AAa?$AAy@ 100a7c2c libucrt:nlsdata.obj + 0002:0000ec40 ??_C@_1O@PDICJHAG@?$AAF?$AAr?$AAi?$AAd?$AAa?$AAy@ 100a7c40 libucrt:nlsdata.obj + 0002:0000ec50 ??_C@_1BC@ENMNNPAJ@?$AAS?$AAa?$AAt?$AAu?$AAr?$AAd?$AAa?$AAy@ 100a7c50 libucrt:nlsdata.obj + 0002:0000ec64 ??_C@_17DKNBKCHM@?$AAJ?$AAa?$AAn@ 100a7c64 libucrt:nlsdata.obj + 0002:0000ec6c ??_C@_17LMDJEKJN@?$AAF?$AAe?$AAb@ 100a7c6c libucrt:nlsdata.obj + 0002:0000ec74 ??_C@_17CKNLEDEC@?$AAM?$AAa?$AAr@ 100a7c74 libucrt:nlsdata.obj + 0002:0000ec7c ??_C@_17LFPOIHDD@?$AAA?$AAp?$AAr@ 100a7c7c libucrt:nlsdata.obj + 0002:0000ec84 ??_C@_17PNNKMEED@?$AAM?$AAa?$AAy@ 100a7c84 libucrt:nlsdata.obj + 0002:0000ec8c ??_C@_17KCJGOCPB@?$AAJ?$AAu?$AAn@ 100a7c8c libucrt:nlsdata.obj + 0002:0000ec94 ??_C@_17IJPCKHK@?$AAJ?$AAu?$AAl@ 100a7c94 libucrt:nlsdata.obj + 0002:0000ec9c ??_C@_17ICPELBCN@?$AAA?$AAu?$AAg@ 100a7c9c libucrt:nlsdata.obj + 0002:0000eca4 ??_C@_17HCHCOKMG@?$AAS?$AAe?$AAp@ 100a7ca4 libucrt:nlsdata.obj + 0002:0000ecac ??_C@_17FNLKOI@?$AAO?$AAc?$AAt@ 100a7cac libucrt:nlsdata.obj + 0002:0000ecb4 ??_C@_17BBDMLCIG@?$AAN?$AAo?$AAv@ 100a7cb4 libucrt:nlsdata.obj + 0002:0000ecbc ??_C@_17EGKACKIF@?$AAD?$AAe?$AAc@ 100a7cbc libucrt:nlsdata.obj + 0002:0000ecc4 ??_C@_1BA@EFMEIEBA@?$AAJ?$AAa?$AAn?$AAu?$AAa?$AAr?$AAy@ 100a7cc4 libucrt:nlsdata.obj + 0002:0000ecd4 ??_C@_1BC@JGDDFFAM@?$AAF?$AAe?$AAb?$AAr?$AAu?$AAa?$AAr?$AAy@ 100a7cd4 libucrt:nlsdata.obj + 0002:0000ece8 ??_C@_1M@IKEENEDF@?$AAM?$AAa?$AAr?$AAc?$AAh@ 100a7ce8 libucrt:nlsdata.obj + 0002:0000ecf4 ??_C@_1M@GJNLMHFD@?$AAA?$AAp?$AAr?$AAi?$AAl@ 100a7cf4 libucrt:nlsdata.obj + 0002:0000ed00 ??_C@_19EPFLPGAP@?$AAJ?$AAu?$AAn?$AAe@ 100a7d00 libucrt:nlsdata.obj + 0002:0000ed0c ??_C@_19BIFMLPCD@?$AAJ?$AAu?$AAl?$AAy@ 100a7d0c libucrt:nlsdata.obj + 0002:0000ed18 ??_C@_1O@PAHLKOAC@?$AAA?$AAu?$AAg?$AAu?$AAs?$AAt@ 100a7d18 libucrt:nlsdata.obj + 0002:0000ed28 ??_C@_1BE@DKAAMBJL@?$AAS?$AAe?$AAp?$AAt?$AAe?$AAm?$AAb?$AAe?$AAr@ 100a7d28 libucrt:nlsdata.obj + 0002:0000ed3c ??_C@_1BA@EPANDLNG@?$AAO?$AAc?$AAt?$AAo?$AAb?$AAe?$AAr@ 100a7d3c libucrt:nlsdata.obj + 0002:0000ed4c ??_C@_1BC@BGLIFPF@?$AAN?$AAo?$AAv?$AAe?$AAm?$AAb?$AAe?$AAr@ 100a7d4c libucrt:nlsdata.obj + 0002:0000ed60 ??_C@_1BC@FEMKIFH@?$AAD?$AAe?$AAc?$AAe?$AAm?$AAb?$AAe?$AAr@ 100a7d60 libucrt:nlsdata.obj + 0002:0000ed74 ??_C@_15ODEHAHHF@?$AAA?$AAM@ 100a7d74 libucrt:nlsdata.obj + 0002:0000ed7c ??_C@_15CLMNNGEL@?$AAP?$AAM@ 100a7d7c libucrt:nlsdata.obj + 0002:0000ed84 ??_C@_1BC@IEBCMHCM@?$AAM?$AAM?$AA?1?$AAd?$AAd?$AA?1?$AAy?$AAy@ 100a7d84 libucrt:nlsdata.obj + 0002:0000ed98 ??_C@_1CI@KNAKOEBC@?$AAd?$AAd?$AAd?$AAd?$AA?0?$AA?5?$AAM?$AAM?$AAM?$AAM?$AA?5?$AAd?$AAd?$AA?0?$AA?5@ 100a7d98 libucrt:nlsdata.obj + 0002:0000edc0 ??_C@_1BC@GDGBMEMK@?$AAH?$AAH?$AA?3?$AAm?$AAm?$AA?3?$AAs?$AAs@ 100a7dc0 libucrt:nlsdata.obj + 0002:0000edd4 ??_C@_1M@BMHNFIME@?$AAe?$AAn?$AA?9?$AAU?$AAS@ 100a7dd4 libucrt:nlsdata.obj + 0002:0000ede0 ??_C@_13CGOKJPIL@?$AA?1@ 100a7de0 libucrt:winapi_thunks.obj + 0002:0000ee40 ??_C@_1EA@JGEFHKEI@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a7e40 libucrt:winapi_thunks.obj + 0002:0000ee80 ??_C@_1DI@KMEPCBPN@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a7e80 libucrt:winapi_thunks.obj + 0002:0000eeb8 ??_C@_1DI@IJCEHOCB@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a7eb8 libucrt:winapi_thunks.obj + 0002:0000eef0 ??_C@_1EI@MPIAOHOC@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a7ef0 libucrt:winapi_thunks.obj + 0002:0000ef38 ??_C@_1FK@FPHCKFIE@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a7f38 libucrt:winapi_thunks.obj + 0002:0000ef98 ??_C@_1EM@DILCGIIO@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a7f98 libucrt:winapi_thunks.obj + 0002:0000efe4 ??_C@_1DM@LNCGDDPN@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a7fe4 libucrt:winapi_thunks.obj + 0002:0000f020 ??_C@_1DO@FPAPJEMD@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a8020 libucrt:winapi_thunks.obj + 0002:0000f060 ??_C@_1DK@NDHNAHIO@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a8060 libucrt:winapi_thunks.obj + 0002:0000f09c ??_C@_1DM@KGHDGBCM@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a809c libucrt:winapi_thunks.obj + 0002:0000f0d8 ??_C@_1EO@IJIOEFOH@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAr?$AAt?$AAc?$AAo@ 100a80d8 libucrt:winapi_thunks.obj + 0002:0000f128 ??_C@_1FG@HHGEKANL@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAs?$AAe?$AAc?$AAu@ 100a8128 libucrt:winapi_thunks.obj + 0002:0000f180 ??_C@_1EG@DBIOJECG@?$AAe?$AAx?$AAt?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAn?$AAt?$AAu?$AAs@ 100a8180 libucrt:winapi_thunks.obj + 0002:0000f1c8 ??_C@_1EO@FIHMJCLF@?$AAe?$AAx?$AAt?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAn?$AAt?$AAu?$AAs@ 100a81c8 libucrt:winapi_thunks.obj + 0002:0000f218 ??_C@_1BC@DNHGCMLG@?$AAa?$AAd?$AAv?$AAa?$AAp?$AAi?$AA3?$AA2@ 100a8218 libucrt:winapi_thunks.obj + 0002:0000f22c ??_C@_1BG@CJPGBMEF@?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AAb?$AAa?$AAs?$AAe@ 100a822c libucrt:winapi_thunks.obj + 0002:0000f244 ??_C@_1M@OAIMIKLP@?$AAn?$AAt?$AAd?$AAl?$AAl@ 100a8244 libucrt:winapi_thunks.obj + 0002:0000f250 ??_C@_1EG@DPGNFKGC@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAa?$AAp?$AAp?$AAm@ 100a8250 libucrt:winapi_thunks.obj + 0002:0000f298 ??_C@_1O@BCCLBEOE@?$AAu?$AAs?$AAe?$AAr?$AA3?$AA2@ 100a8298 libucrt:winapi_thunks.obj + 0002:0000f2a8 ??_C@_1DM@BPJLHKCE@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe@ 100a82a8 libucrt:winapi_thunks.obj + 0002:0000f2e4 ??_C@_1BA@IAIFMGEF@?$AAe?$AAx?$AAt?$AA?9?$AAm?$AAs?$AA?9@ 100a82e4 libucrt:winapi_thunks.obj + 0002:0000f2f8 ??_C@_0BA@FHFNEAED@AreFileApisANSI@ 100a82f8 libucrt:winapi_thunks.obj + 0002:0000f310 ??_C@_0BA@IHGNDAEB@CompareStringEx@ 100a8310 libucrt:winapi_thunks.obj + 0002:0000f328 ??_C@_0BE@LJANKFHF@EnumSystemLocalesEx@ 100a8328 libucrt:winapi_thunks.obj + 0002:0000f344 ??_C@_0BA@EPCJIIPD@GetDateFormatEx@ 100a8344 libucrt:winapi_thunks.obj + 0002:0000f354 ??_C@_0O@NNMIPI@GetTempPath2W@ 100a8354 libucrt:winapi_thunks.obj + 0002:0000f36c ??_C@_0BA@ONOKGCMP@GetLocaleInfoEx@ 100a836c libucrt:winapi_thunks.obj + 0002:0000f37c ??_C@_0BP@FPNJPEJC@GetSystemTimePreciseAsFileTime@ 100a837c libucrt:winapi_thunks.obj + 0002:0000f3a4 ??_C@_0BA@CIJJKCJJ@GetTimeFormatEx@ 100a83a4 libucrt:winapi_thunks.obj + 0002:0000f3bc ??_C@_0BJ@PBCCBIPI@GetUserDefaultLocaleName@ 100a83bc libucrt:winapi_thunks.obj + 0002:0000f3e8 ??_C@_0BC@CELBKLLA@IsValidLocaleName@ 100a83e8 libucrt:winapi_thunks.obj + 0002:0000f404 ??_C@_0O@KKBNKAPF@LCMapStringEx@ 100a8404 libucrt:winapi_thunks.obj + 0002:0000f41c ??_C@_0BB@CDHDDLLP@LCIDToLocaleName@ 100a841c libucrt:winapi_thunks.obj + 0002:0000f438 ??_C@_0BB@HBDEELFH@LocaleNameToLCID@ 100a8438 libucrt:winapi_thunks.obj + 0002:0000f450 ??_C@_0CF@OJOFEIGO@AppPolicyGetProcessTerminationM@ 100a8450 libucrt:winapi_thunks.obj + 0002:0000f4d8 ??_C@_03OEIAHPBN@INF@ 100a84d8 libucrt:cvt.obj + 0002:0000f4dc ??_C@_03OJHLLCGB@inf@ 100a84dc libucrt:cvt.obj + 0002:0000f4e0 ??_C@_03LKNCIKJB@NAN@ 100a84e0 libucrt:cvt.obj + 0002:0000f4e4 ??_C@_03LHCJEHON@nan@ 100a84e4 libucrt:cvt.obj + 0002:0000f4e8 ??_C@_09OFJJIMPC@NAN?$CISNAN?$CJ@ 100a84e8 libucrt:cvt.obj + 0002:0000f4f4 ??_C@_09IPFBKMDL@nan?$CIsnan?$CJ@ 100a84f4 libucrt:cvt.obj + 0002:0000f500 ??_C@_08IKHNHAJ@NAN?$CIIND?$CJ@ 100a8500 libucrt:cvt.obj + 0002:0000f50c ??_C@_08OFCDMILK@nan?$CIind?$CJ@ 100a850c libucrt:cvt.obj + 0002:0000f518 ??_C@_05KLBDPFGC@e?$CL000@ 100a8518 libucrt:cvt.obj + 0002:0000f608 ??_C@_03KHJOGHMM@exp@ 100a8608 libucrt:fpexcept.obj + 0002:0000f60c ??_C@_03JGHBODFD@pow@ 100a860c libucrt:fpexcept.obj + 0002:0000f610 ??_C@_03MGHMBJCF@log@ 100a8610 libucrt:fpexcept.obj + 0002:0000f614 ??_C@_05HGHHAHAP@log10@ 100a8614 libucrt:fpexcept.obj + 0002:0000f61c ??_C@_04COOMCNPB@sinh@ 100a861c libucrt:fpexcept.obj + 0002:0000f624 ??_C@_04HPJJNFIM@cosh@ 100a8624 libucrt:fpexcept.obj + 0002:0000f62c ??_C@_04FJHINJAO@tanh@ 100a862c libucrt:fpexcept.obj + 0002:0000f634 ??_C@_04FIHNOPOL@asin@ 100a8634 libucrt:fpexcept.obj + 0002:0000f63c ??_C@_04PDIFKINK@acos@ 100a863c libucrt:fpexcept.obj + 0002:0000f644 ??_C@_04MLLJIGOK@atan@ 100a8644 libucrt:fpexcept.obj + 0002:0000f64c ??_C@_05KNGEOGJB@atan2@ 100a864c libucrt:fpexcept.obj + 0002:0000f654 ??_C@_04EIAKFFMI@sqrt@ 100a8654 libucrt:fpexcept.obj + 0002:0000f65c ??_C@_03BLEJJJBH@sin@ 100a865c libucrt:fpexcept.obj + 0002:0000f660 ??_C@_03LALBNOCG@cos@ 100a8660 libucrt:fpexcept.obj + 0002:0000f664 ??_C@_03IIINPABG@tan@ 100a8664 libucrt:fpexcept.obj + 0002:0000f668 ??_C@_04GFPJNGEK@ceil@ 100a8668 libucrt:fpexcept.obj + 0002:0000f670 ??_C@_05PBJFFIGL@floor@ 100a8670 libucrt:fpexcept.obj + 0002:0000f678 ??_C@_04ODHECPBC@fabs@ 100a8678 libucrt:fpexcept.obj + 0002:0000f680 ??_C@_04EHEDPDJG@modf@ 100a8680 libucrt:fpexcept.obj + 0002:0000f688 ??_C@_05CEJMAHNP@ldexp@ 100a8688 libucrt:fpexcept.obj + 0002:0000f690 ??_C@_05KBKMEMPO@_cabs@ 100a8690 libucrt:fpexcept.obj + 0002:0000f698 ??_C@_06MEIMCGCF@_hypot@ 100a8698 libucrt:fpexcept.obj + 0002:0000f6a0 ??_C@_04KEPJIHGP@fmod@ 100a86a0 libucrt:fpexcept.obj + 0002:0000f6a8 ??_C@_05GKKHEGJL@frexp@ 100a86a8 libucrt:fpexcept.obj + 0002:0000f6b0 ??_C@_03MJLDFKDL@_y0@ 100a86b0 libucrt:fpexcept.obj + 0002:0000f6b4 ??_C@_03NAKIGLHK@_y1@ 100a86b4 libucrt:fpexcept.obj + 0002:0000f6b8 ??_C@_03ONILCKOB@_yn@ 100a86b8 libucrt:fpexcept.obj + 0002:0000f6bc ??_C@_05JGDBENOH@_logb@ 100a86bc libucrt:fpexcept.obj + 0002:0000f6c4 ??_C@_0L@KDOEJCKC@_nextafter@ 100a86c4 libucrt:fpexcept.obj + 0002:0000f6d0 __d_inf 100a86d0 libucrt:util.obj + 0002:0000f6d8 __d_max 100a86d8 libucrt:util.obj + 0002:0000f6e0 __d_mzero 100a86e0 libucrt:util.obj + 0002:0000f700 ??_C@_1BI@BGOHAHKC@?$AAm?$AAs?$AAc?$AAo?$AAr?$AAe?$AAe?$AA?4?$AAd?$AAl?$AAl@ 100a8700 libucrt:exit.obj + 0002:0000f718 ??_C@_0P@MIGLKIOC@CorExitProcess@ 100a8718 libucrt:exit.obj + 0002:0000f728 ___newctype 100a8728 libucrt:ctype.obj + 0002:0000fa28 ___newclmap 100a8a28 libucrt:ctype.obj + 0002:0000fba8 ___newcumap 100a8ba8 libucrt:ctype.obj + 0002:0000fd28 __wctype 100a8d28 libucrt:ctype.obj + 0002:0000ff2c ??_C@_15HNJCPLHL@?$AAT?$AAZ@ 100a8f2c libucrt:tzset.obj + 0002:0000ff34 ??_C@_1M@PBPMMENC@?$AAa?$AAm?$AA?1?$AAp?$AAm@ 100a8f34 libucrt:wcsftime.obj + 0002:0000ff40 ??_C@_17BLFJJHMM@?$AAa?$AA?1?$AAp@ 100a8f40 libucrt:wcsftime.obj + 0002:0000ff48 ??_C@_13HOIJIPNN@?$AA?5@ 100a8f48 libucrt:wcsftime.obj + 0002:0000ff4c ??_C@_13LBAGMAIH@?$AA?6@ 100a8f4c libucrt:wcsftime.obj + 0002:0000ff50 ??_C@_13EBCNDICG@?$AA?3@ 100a8f50 libucrt:wcsftime.obj + 0002:0000ff54 ??_C@_13KDLDGPGJ@?$AA?7@ 100a8f54 libucrt:wcsftime.obj + 0002:0000ff58 ??_C@_13KJIIAINM@?$AA?$CL@ 100a8f58 libucrt:wcsftime.obj + 0002:0000ff5c ??_C@_13EJFHHPOP@?$AA?$CF@ 100a8f5c libucrt:wcsftime.obj + 0002:0000ff70 ??_C@_1M@HPNHIDJI@?$AAj?$AAa?$AA?9?$AAJ?$AAP@ 100a8f70 libucrt:mbctype.obj + 0002:0000ff7c ??_C@_1M@BIBDDEMK@?$AAz?$AAh?$AA?9?$AAC?$AAN@ 100a8f7c libucrt:mbctype.obj + 0002:0000ff88 ??_C@_1M@JLOOOEGK@?$AAk?$AAo?$AA?9?$AAK?$AAR@ 100a8f88 libucrt:mbctype.obj + 0002:0000ff94 ??_C@_1M@CLNBBOPM@?$AAz?$AAh?$AA?9?$AAT?$AAW@ 100a8f94 libucrt:mbctype.obj + 0002:0000ffa0 ___acrt_exception_action_table 100a8fa0 libucrt:exception_filter.obj + 0002:00010030 ___acrt_signal_action_table_count 100a9030 libucrt:exception_filter.obj + 0002:00010034 ___acrt_signal_action_first_fpe_index 100a9034 libucrt:exception_filter.obj + 0002:00010038 ___acrt_signal_action_fpe_count 100a9038 libucrt:exception_filter.obj + 0002:00010040 ___acrt_rg_language 100a9040 libucrt:get_qualified_locale.obj + 0002:0001034c ___acrt_rg_language_count 100a934c libucrt:get_qualified_locale.obj + 0002:00010350 ___acrt_rg_country 100a9350 libucrt:get_qualified_locale.obj + 0002:00010464 ___acrt_rg_country_count 100a9464 libucrt:get_qualified_locale.obj + 0002:00010468 ??_C@_1BC@LLOKLNP@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa?$AAn@ 100a9468 libucrt:get_qualified_locale.obj + 0002:0001047c ??_C@_1CC@HEIGCDGG@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa?$AAn?$AA?5?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs@ 100a947c libucrt:get_qualified_locale.obj + 0002:000104a0 ??_C@_1CC@IHCNOMIN@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa?$AAn?$AA?9?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs@ 100a94a0 libucrt:get_qualified_locale.obj + 0002:000104c4 ??_C@_1BG@GKAGPCGG@?$AAa?$AAu?$AAs?$AAt?$AAr?$AAa?$AAl?$AAi?$AAa?$AAn@ 100a94c4 libucrt:get_qualified_locale.obj + 0002:000104dc ??_C@_1BA@GMENCENF@?$AAb?$AAe?$AAl?$AAg?$AAi?$AAa?$AAn@ 100a94dc libucrt:get_qualified_locale.obj + 0002:000104ec ??_C@_1BC@PJMIIAAN@?$AAc?$AAa?$AAn?$AAa?$AAd?$AAi?$AAa?$AAn@ 100a94ec libucrt:get_qualified_locale.obj + 0002:00010500 ??_C@_17NOIMNFBF@?$AAc?$AAh?$AAh@ 100a9500 libucrt:get_qualified_locale.obj + 0002:00010508 ??_C@_17GGDALCHA@?$AAc?$AAh?$AAi@ 100a9508 libucrt:get_qualified_locale.obj + 0002:00010510 ??_C@_1BA@NPNJKIBL@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe@ 100a9510 libucrt:get_qualified_locale.obj + 0002:00010520 ??_C@_1CC@DINBAMMJ@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAh?$AAo?$AAn?$AAg?$AAk?$AAo?$AAn@ 100a9520 libucrt:get_qualified_locale.obj + 0002:00010544 ??_C@_1CG@IOBJPACO@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAs?$AAi?$AAm?$AAp?$AAl?$AAi?$AAf@ 100a9544 libucrt:get_qualified_locale.obj + 0002:0001056c ??_C@_1CE@GAJNDCKG@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAs?$AAi?$AAn?$AAg?$AAa?$AAp?$AAo@ 100a956c libucrt:get_qualified_locale.obj + 0002:00010590 ??_C@_1CI@PAJPIOOD@?$AAc?$AAh?$AAi?$AAn?$AAe?$AAs?$AAe?$AA?9?$AAt?$AAr?$AAa?$AAd?$AAi?$AAt?$AAi@ 100a9590 libucrt:get_qualified_locale.obj + 0002:000105b8 ??_C@_1BM@NILJBMMD@?$AAd?$AAu?$AAt?$AAc?$AAh?$AA?9?$AAb?$AAe?$AAl?$AAg?$AAi?$AAa?$AAn@ 100a95b8 libucrt:get_qualified_locale.obj + 0002:000105d4 ??_C@_1CC@OOJPJNEJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa@ 100a95d4 libucrt:get_qualified_locale.obj + 0002:000105f8 ??_C@_1BI@IOLFEEM@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAa?$AAu?$AAs@ 100a95f8 libucrt:get_qualified_locale.obj + 0002:00010610 ??_C@_1BO@HFFNLENJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAb?$AAe?$AAl?$AAi?$AAz?$AAe@ 100a9610 libucrt:get_qualified_locale.obj + 0002:00010630 ??_C@_1BI@HAPKJMPO@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAa?$AAn@ 100a9630 libucrt:get_qualified_locale.obj + 0002:00010648 ??_C@_1CE@HLNDMIOJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAa?$AAr?$AAi?$AAb?$AAb?$AAe@ 100a9648 libucrt:get_qualified_locale.obj + 0002:0001066c ??_C@_1BI@LDHJHHAC@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAi?$AAr?$AAe@ 100a966c libucrt:get_qualified_locale.obj + 0002:00010684 ??_C@_1CA@NJMMCFOC@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAj?$AAa?$AAm?$AAa?$AAi?$AAc?$AAa@ 100a9684 libucrt:get_qualified_locale.obj + 0002:000106a4 ??_C@_1BG@BHJEBBGG@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAn?$AAz@ 100a96a4 libucrt:get_qualified_locale.obj + 0002:000106bc ??_C@_1CK@FGOEJJCO@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?5?$AAa@ 100a96bc libucrt:get_qualified_locale.obj + 0002:000106e8 ??_C@_1DE@PDBJPCJ@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAt?$AAr?$AAi?$AAn?$AAi?$AAd?$AAa@ 100a96e8 libucrt:get_qualified_locale.obj + 0002:0001071c ??_C@_1BG@JGCANDME@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAk@ 100a971c libucrt:get_qualified_locale.obj + 0002:00010734 ??_C@_1BG@DINKMLE@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAs@ 100a9734 libucrt:get_qualified_locale.obj + 0002:0001074c ??_C@_1BI@NMFDBHJE@?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAs?$AAa@ 100a974c libucrt:get_qualified_locale.obj + 0002:00010764 ??_C@_1BO@OIHKJKII@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAb?$AAe?$AAl?$AAg?$AAi?$AAa?$AAn@ 100a9764 libucrt:get_qualified_locale.obj + 0002:00010784 ??_C@_1CA@NKAELJKI@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAc?$AAa?$AAn?$AAa?$AAd?$AAi?$AAa?$AAn@ 100a9784 libucrt:get_qualified_locale.obj + 0002:000107a4 ??_C@_1CE@MGKCNLGN@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAl?$AAu?$AAx?$AAe?$AAm?$AAb?$AAo?$AAu@ 100a97a4 libucrt:get_qualified_locale.obj + 0002:000107c8 ??_C@_1BK@CEGEAILM@?$AAf?$AAr?$AAe?$AAn?$AAc?$AAh?$AA?9?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a97c8 libucrt:get_qualified_locale.obj + 0002:000107e4 ??_C@_1CA@PAFKEOCC@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAa?$AAu?$AAs?$AAt?$AAr?$AAi?$AAa?$AAn@ 100a97e4 libucrt:get_qualified_locale.obj + 0002:00010804 ??_C@_1CI@HCFHGOFD@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAl?$AAi?$AAc?$AAh?$AAt?$AAe?$AAn?$AAs@ 100a9804 libucrt:get_qualified_locale.obj + 0002:0001082c ??_C@_1CE@FEDDNPDG@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAl?$AAu?$AAx?$AAe?$AAm?$AAb?$AAo?$AAu@ 100a982c libucrt:get_qualified_locale.obj + 0002:00010850 ??_C@_1BK@LIMINNMN@?$AAg?$AAe?$AAr?$AAm?$AAa?$AAn?$AA?9?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a9850 libucrt:get_qualified_locale.obj + 0002:0001086c ??_C@_1BM@LGMDBEPD@?$AAi?$AAr?$AAi?$AAs?$AAh?$AA?9?$AAe?$AAn?$AAg?$AAl?$AAi?$AAs?$AAh@ 100a986c libucrt:get_qualified_locale.obj + 0002:00010888 ??_C@_1BM@NNCFBAEE@?$AAi?$AAt?$AAa?$AAl?$AAi?$AAa?$AAn?$AA?9?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a9888 libucrt:get_qualified_locale.obj + 0002:000108a4 ??_C@_1BE@FEDJNPIB@?$AAn?$AAo?$AAr?$AAw?$AAe?$AAg?$AAi?$AAa?$AAn@ 100a98a4 libucrt:get_qualified_locale.obj + 0002:000108b8 ??_C@_1CC@CILKDEIE@?$AAn?$AAo?$AAr?$AAw?$AAe?$AAg?$AAi?$AAa?$AAn?$AA?9?$AAb?$AAo?$AAk?$AAm?$AAa@ 100a98b8 libucrt:get_qualified_locale.obj + 0002:000108dc ??_C@_1CE@DHMMHEPL@?$AAn?$AAo?$AAr?$AAw?$AAe?$AAg?$AAi?$AAa?$AAn?$AA?9?$AAn?$AAy?$AAn?$AAo?$AAr@ 100a98dc libucrt:get_qualified_locale.obj + 0002:00010900 ??_C@_1CK@OPNMHECD@?$AAp?$AAo?$AAr?$AAt?$AAu?$AAg?$AAu?$AAe?$AAs?$AAe?$AA?9?$AAb?$AAr?$AAa?$AAz@ 100a9900 libucrt:get_qualified_locale.obj + 0002:0001092c ??_C@_1CE@KEEHCDB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAa?$AAr?$AAg?$AAe?$AAn?$AAt?$AAi@ 100a992c libucrt:get_qualified_locale.obj + 0002:00010950 ??_C@_1CA@GIAOLHJD@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAb?$AAo?$AAl?$AAi?$AAv?$AAi?$AAa@ 100a9950 libucrt:get_qualified_locale.obj + 0002:00010970 ??_C@_1BM@OJNDFNPD@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAh?$AAi?$AAl?$AAe@ 100a9970 libucrt:get_qualified_locale.obj + 0002:0001098c ??_C@_1CC@OCOLPALL@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAo?$AAl?$AAo?$AAm?$AAb?$AAi@ 100a998c libucrt:get_qualified_locale.obj + 0002:000109b0 ??_C@_1CG@BPOFMKBB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAc?$AAo?$AAs?$AAt?$AAa?$AA?5?$AAr@ 100a99b0 libucrt:get_qualified_locale.obj + 0002:000109d8 ??_C@_1DG@IGOBAPBB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAd?$AAo?$AAm?$AAi?$AAn?$AAi?$AAc@ 100a99d8 libucrt:get_qualified_locale.obj + 0002:00010a10 ??_C@_1CA@JHAPGEGI@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAe?$AAc?$AAu?$AAa?$AAd?$AAo?$AAr@ 100a9a10 libucrt:get_qualified_locale.obj + 0002:00010a30 ??_C@_1CI@LAPALJPP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAe?$AAl?$AA?5?$AAs?$AAa?$AAl?$AAv@ 100a9a30 libucrt:get_qualified_locale.obj + 0002:00010a58 ??_C@_1CE@PDGBOFOM@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAg?$AAu?$AAa?$AAt?$AAe?$AAm?$AAa@ 100a9a58 libucrt:get_qualified_locale.obj + 0002:00010a7c ??_C@_1CC@NBEBAODI@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAh?$AAo?$AAn?$AAd?$AAu?$AAr?$AAa@ 100a9a7c libucrt:get_qualified_locale.obj + 0002:00010aa0 ??_C@_1CA@LLKGHBMF@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAm?$AAe?$AAx?$AAi?$AAc?$AAa?$AAn@ 100a9aa0 libucrt:get_qualified_locale.obj + 0002:00010ac0 ??_C@_1BO@LKNDOIGD@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAm?$AAo?$AAd?$AAe?$AAr?$AAn@ 100a9ac0 libucrt:get_qualified_locale.obj + 0002:00010ae0 ??_C@_1CE@NMDMOEEB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAn?$AAi?$AAc?$AAa?$AAr?$AAa?$AAg@ 100a9ae0 libucrt:get_qualified_locale.obj + 0002:00010b04 ??_C@_1BO@LLCBEJGB@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAa?$AAn?$AAa?$AAm?$AAa@ 100a9b04 libucrt:get_qualified_locale.obj + 0002:00010b24 ??_C@_1CC@FKPGGIHO@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAa?$AAr?$AAa?$AAg?$AAu?$AAa@ 100a9b24 libucrt:get_qualified_locale.obj + 0002:00010b48 ??_C@_1BK@CDEIHOOP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAe?$AAr?$AAu@ 100a9b48 libucrt:get_qualified_locale.obj + 0002:00010b64 ??_C@_1CI@GAHAKKGP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAp?$AAu?$AAe?$AAr?$AAt?$AAo?$AA?5@ 100a9b64 libucrt:get_qualified_locale.obj + 0002:00010b8c ??_C@_1CA@NKJBCAGP@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAu?$AAr?$AAu?$AAg?$AAu?$AAa?$AAy@ 100a9b8c libucrt:get_qualified_locale.obj + 0002:00010bac ??_C@_1CE@ODILCONM@?$AAs?$AAp?$AAa?$AAn?$AAi?$AAs?$AAh?$AA?9?$AAv?$AAe?$AAn?$AAe?$AAz?$AAu?$AAe@ 100a9bac libucrt:get_qualified_locale.obj + 0002:00010bd0 ??_C@_1CA@OBNMCGFO@?$AAs?$AAw?$AAe?$AAd?$AAi?$AAs?$AAh?$AA?9?$AAf?$AAi?$AAn?$AAl?$AAa?$AAn?$AAd@ 100a9bd0 libucrt:get_qualified_locale.obj + 0002:00010bf0 ??_C@_1M@PIPDDPPI@?$AAs?$AAw?$AAi?$AAs?$AAs@ 100a9bf0 libucrt:get_qualified_locale.obj + 0002:00010bfc ??_C@_15PJPFLCCM@?$AAu?$AAk@ 100a9bfc libucrt:get_qualified_locale.obj + 0002:00010c04 ??_C@_15GMFIMNFM@?$AAu?$AAs@ 100a9c04 libucrt:get_qualified_locale.obj + 0002:00010c0c ??_C@_17HAEBFAGL@?$AAu?$AAs?$AAa@ 100a9c0c libucrt:get_qualified_locale.obj + 0002:00010c14 ??_C@_1BA@DPFJEPHB@?$AAa?$AAm?$AAe?$AAr?$AAi?$AAc?$AAa@ 100a9c14 libucrt:get_qualified_locale.obj + 0002:00010c24 ??_C@_1BA@ELOGGFK@?$AAb?$AAr?$AAi?$AAt?$AAa?$AAi?$AAn@ 100a9c24 libucrt:get_qualified_locale.obj + 0002:00010c34 ??_C@_1M@GHBGIGDA@?$AAc?$AAh?$AAi?$AAn?$AAa@ 100a9c34 libucrt:get_qualified_locale.obj + 0002:00010c40 ??_C@_1M@NCHEJOPO@?$AAc?$AAz?$AAe?$AAc?$AAh@ 100a9c40 libucrt:get_qualified_locale.obj + 0002:00010c4c ??_C@_1BA@BKPAPBLA@?$AAe?$AAn?$AAg?$AAl?$AAa?$AAn?$AAd@ 100a9c4c libucrt:get_qualified_locale.obj + 0002:00010c5c ??_C@_1BM@HKBCKIPC@?$AAg?$AAr?$AAe?$AAa?$AAt?$AA?5?$AAb?$AAr?$AAi?$AAt?$AAa?$AAi?$AAn@ 100a9c5c libucrt:get_qualified_locale.obj + 0002:00010c78 ??_C@_1BA@PPCHPGJB@?$AAh?$AAo?$AAl?$AAl?$AAa?$AAn?$AAd@ 100a9c78 libucrt:get_qualified_locale.obj + 0002:00010c88 ??_C@_1BE@JBMPEGDG@?$AAh?$AAo?$AAn?$AAg?$AA?9?$AAk?$AAo?$AAn?$AAg@ 100a9c88 libucrt:get_qualified_locale.obj + 0002:00010c9c ??_C@_1BI@KOELBBPJ@?$AAn?$AAe?$AAw?$AA?9?$AAz?$AAe?$AAa?$AAl?$AAa?$AAn?$AAd@ 100a9c9c libucrt:get_qualified_locale.obj + 0002:00010cb4 ??_C@_15HIEBHAIO@?$AAn?$AAz@ 100a9cb4 libucrt:get_qualified_locale.obj + 0002:00010cbc ??_C@_1BC@CHBCPFPI@?$AAp?$AAr?$AA?5?$AAc?$AAh?$AAi?$AAn?$AAa@ 100a9cbc libucrt:get_qualified_locale.obj + 0002:00010cd0 ??_C@_1BC@JAOIIFKD@?$AAp?$AAr?$AA?9?$AAc?$AAh?$AAi?$AAn?$AAa@ 100a9cd0 libucrt:get_qualified_locale.obj + 0002:00010ce4 ??_C@_1BI@BEHPPHKC@?$AAp?$AAu?$AAe?$AAr?$AAt?$AAo?$AA?9?$AAr?$AAi?$AAc?$AAo@ 100a9ce4 libucrt:get_qualified_locale.obj + 0002:00010cfc ??_C@_1O@PAEOFKDI@?$AAs?$AAl?$AAo?$AAv?$AAa?$AAk@ 100a9cfc libucrt:get_qualified_locale.obj + 0002:00010d0c ??_C@_1BK@FIHMCKAM@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?5?$AAa?$AAf?$AAr?$AAi?$AAc?$AAa@ 100a9d0c libucrt:get_qualified_locale.obj + 0002:00010d28 ??_C@_1BI@NAEOODKB@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?5?$AAk?$AAo?$AAr?$AAe?$AAa@ 100a9d28 libucrt:get_qualified_locale.obj + 0002:00010d40 ??_C@_1BK@FBDGGIFF@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?9?$AAa?$AAf?$AAr?$AAi?$AAc?$AAa@ 100a9d40 libucrt:get_qualified_locale.obj + 0002:00010d5c ??_C@_1BI@GHLEJDPK@?$AAs?$AAo?$AAu?$AAt?$AAh?$AA?9?$AAk?$AAo?$AAr?$AAe?$AAa@ 100a9d5c libucrt:get_qualified_locale.obj + 0002:00010d74 ??_C@_1CE@PLHLOMJF@?$AAt?$AAr?$AAi?$AAn?$AAi?$AAd?$AAa?$AAd?$AA?5?$AA?$CG?$AA?5?$AAt?$AAo?$AAb?$AAa@ 100a9d74 libucrt:get_qualified_locale.obj + 0002:00010d98 ??_C@_1BO@MODIMHHI@?$AAu?$AAn?$AAi?$AAt?$AAe?$AAd?$AA?9?$AAk?$AAi?$AAn?$AAg?$AAd?$AAo?$AAm@ 100a9d98 libucrt:get_qualified_locale.obj + 0002:00010db8 ??_C@_1BM@FFHJONBJ@?$AAu?$AAn?$AAi?$AAt?$AAe?$AAd?$AA?9?$AAs?$AAt?$AAa?$AAt?$AAe?$AAs@ 100a9db8 libucrt:get_qualified_locale.obj + 0002:00010dd4 ??_C@_19MPDNHKDG@?$AAu?$AAt?$AAf?$AA8@ 100a9dd4 libucrt:get_qualified_locale.obj + 0002:00010de0 ??_C@_17DNCLJFIF@?$AAA?$AAC?$AAP@ 100a9de0 libucrt:get_qualified_locale.obj + 0002:00010de8 ??_C@_1M@FPEIIFAM@?$AAu?$AAt?$AAf?$AA?9?$AA8@ 100a9de8 libucrt:get_qualified_locale.obj + 0002:00010df4 ??_C@_17CIKBIHLH@?$AAO?$AAC?$AAP@ 100a9df4 libucrt:get_qualified_locale.obj + 0002:00010dfc ___rglangidNotDefault 100a9dfc libucrt:getqloc_downlevel.obj + 0002:00011530 ??_C@_15EMKDOKLE@?$AAa?$AAr@ 100aa530 libucrt:lcidtoname_downlevel.obj + 0002:00011538 ??_C@_15KNPADPLH@?$AAb?$AAg@ 100aa538 libucrt:lcidtoname_downlevel.obj + 0002:00011540 ??_C@_15EDMHLDMO@?$AAc?$AAa@ 100aa540 libucrt:lcidtoname_downlevel.obj + 0002:00011548 ??_C@_1O@BPEAJADD@?$AAz?$AAh?$AA?9?$AAC?$AAH?$AAS@ 100aa548 libucrt:lcidtoname_downlevel.obj + 0002:00011558 ??_C@_15LJNHCMNK@?$AAc?$AAs@ 100aa558 libucrt:lcidtoname_downlevel.obj + 0002:00011560 ??_C@_15FOMCIDHG@?$AAd?$AAa@ 100aa560 libucrt:lcidtoname_downlevel.obj + 0002:00011568 ??_C@_15NBKABECB@?$AAd?$AAe@ 100aa568 libucrt:lcidtoname_downlevel.obj + 0002:00011570 ??_C@_15GHPEIIAO@?$AAe?$AAl@ 100aa570 libucrt:lcidtoname_downlevel.obj + 0002:00011578 ??_C@_15MNPNEAIF@?$AAe?$AAn@ 100aa578 libucrt:lcidtoname_downlevel.obj + 0002:00011580 ??_C@_15GPIOMPMH@?$AAe?$AAs@ 100aa580 libucrt:lcidtoname_downlevel.obj + 0002:00011588 ??_C@_15NGLOAKJC@?$AAf?$AAi@ 100aa588 libucrt:lcidtoname_downlevel.obj + 0002:00011590 ??_C@_15FBKGNKAM@?$AAf?$AAr@ 100aa590 libucrt:lcidtoname_downlevel.obj + 0002:00011598 ??_C@_15KGGCNEFK@?$AAh?$AAe@ 100aa598 libucrt:lcidtoname_downlevel.obj + 0002:000115a0 ??_C@_15PGHLIDMF@?$AAh?$AAu@ 100aa5a0 libucrt:lcidtoname_downlevel.obj + 0002:000115a8 ??_C@_15BIEMAPLM@?$AAi?$AAs@ 100aa5a8 libucrt:lcidtoname_downlevel.obj + 0002:000115b0 ??_C@_15IFJLDHAF@?$AAi?$AAt@ 100aa5b0 libucrt:lcidtoname_downlevel.obj + 0002:000115b8 ??_C@_15GEMIOCAG@?$AAj?$AAa@ 100aa5b8 libucrt:lcidtoname_downlevel.obj + 0002:000115c0 ??_C@_15EPELEGJA@?$AAk?$AAo@ 100aa5c0 libucrt:lcidtoname_downlevel.obj + 0002:000115c8 ??_C@_15NDDHIMN@?$AAn?$AAl@ 100aa5c8 libucrt:lcidtoname_downlevel.obj + 0002:000115d0 ??_C@_15BPIGNHCD@?$AAn?$AAo@ 100aa5d0 libucrt:lcidtoname_downlevel.obj + 0002:000115d8 ??_C@_15DEOPBLCG@?$AAp?$AAl@ 100aa5d8 libucrt:lcidtoname_downlevel.obj + 0002:000115e0 ??_C@_15KBECGEFG@?$AAp?$AAt@ 100aa5e0 libucrt:lcidtoname_downlevel.obj + 0002:000115e8 ??_C@_15GLJCBFMD@?$AAr?$AAo@ 100aa5e8 libucrt:lcidtoname_downlevel.obj + 0002:000115f0 ??_C@_15FEDGKCDI@?$AAr?$AAu@ 100aa5f0 libucrt:lcidtoname_downlevel.obj + 0002:000115f8 ??_C@_15GLKMLLHM@?$AAh?$AAr@ 100aa5f8 libucrt:lcidtoname_downlevel.obj + 0002:00011600 ??_C@_15CPKMFBDB@?$AAs?$AAk@ 100aa600 libucrt:lcidtoname_downlevel.obj + 0002:00011608 ??_C@_15BAAIOGMK@?$AAs?$AAq@ 100aa608 libucrt:lcidtoname_downlevel.obj + 0002:00011610 ??_C@_15INNPNOHD@?$AAs?$AAv@ 100aa610 libucrt:lcidtoname_downlevel.obj + 0002:00011618 ??_C@_15CABMMOGH@?$AAt?$AAh@ 100aa618 libucrt:lcidtoname_downlevel.obj + 0002:00011620 ??_C@_15BPLIHJJM@?$AAt?$AAr@ 100aa620 libucrt:lcidtoname_downlevel.obj + 0002:00011628 ??_C@_15NEOEKKDJ@?$AAu?$AAr@ 100aa628 libucrt:lcidtoname_downlevel.obj + 0002:00011630 ??_C@_15NFICGAJK@?$AAi?$AAd@ 100aa630 libucrt:lcidtoname_downlevel.obj + 0002:00011638 ??_C@_15HPJPHDM@?$AAb?$AAe@ 100aa638 libucrt:lcidtoname_downlevel.obj + 0002:00011640 ??_C@_15LCHLGJII@?$AAs?$AAl@ 100aa640 libucrt:lcidtoname_downlevel.obj + 0002:00011648 ??_C@_15PCFJPHHO@?$AAe?$AAt@ 100aa648 libucrt:lcidtoname_downlevel.obj + 0002:00011650 ??_C@_15HPFPGODN@?$AAl?$AAv@ 100aa650 libucrt:lcidtoname_downlevel.obj + 0002:00011658 ??_C@_15NFFGKGLG@?$AAl?$AAt@ 100aa658 libucrt:lcidtoname_downlevel.obj + 0002:00011660 ??_C@_15BDAKCCHN@?$AAf?$AAa@ 100aa660 libucrt:lcidtoname_downlevel.obj + 0002:00011668 ??_C@_15NFGIAIAJ@?$AAv?$AAi@ 100aa668 libucrt:lcidtoname_downlevel.obj + 0002:00011670 ??_C@_15LMKNDMHN@?$AAh?$AAy@ 100aa670 libucrt:lcidtoname_downlevel.obj + 0002:00011678 ??_C@_15IJBHMCFL@?$AAa?$AAz@ 100aa678 libucrt:lcidtoname_downlevel.obj + 0002:00011680 ??_C@_15EKOFJABL@?$AAe?$AAu@ 100aa680 libucrt:lcidtoname_downlevel.obj + 0002:00011688 ??_C@_15BGHADCNK@?$AAm?$AAk@ 100aa688 libucrt:lcidtoname_downlevel.obj + 0002:00011690 ??_C@_15JDNICKHM@?$AAa?$AAf@ 100aa690 libucrt:lcidtoname_downlevel.obj + 0002:00011698 ??_C@_15KPJEDBKD@?$AAk?$AAa@ 100aa698 libucrt:lcidtoname_downlevel.obj + 0002:000116a0 ??_C@_15PDNFFFEO@?$AAf?$AAo@ 100aa6a0 libucrt:lcidtoname_downlevel.obj + 0002:000116a8 ??_C@_15OMLEGLOC@?$AAh?$AAi@ 100aa6a8 libucrt:lcidtoname_downlevel.obj + 0002:000116b0 ??_C@_15IDNNENKK@?$AAm?$AAs@ 100aa6b0 libucrt:lcidtoname_downlevel.obj + 0002:000116b8 ??_C@_15MACJNBMH@?$AAk?$AAk@ 100aa6b8 libucrt:lcidtoname_downlevel.obj + 0002:000116c0 ??_C@_15DKDJEOND@?$AAk?$AAy@ 100aa6c0 libucrt:lcidtoname_downlevel.obj + 0002:000116c8 ??_C@_15DFGDLJBG@?$AAs?$AAw@ 100aa6c8 libucrt:lcidtoname_downlevel.obj + 0002:000116d0 ??_C@_15BBFAICNG@?$AAu?$AAz@ 100aa6d0 libucrt:lcidtoname_downlevel.obj + 0002:000116d8 ??_C@_15DKNDCGEA@?$AAt?$AAt@ 100aa6d8 libucrt:lcidtoname_downlevel.obj + 0002:000116e0 ??_C@_15MGIFMDPL@?$AAp?$AAa@ 100aa6e0 libucrt:lcidtoname_downlevel.obj + 0002:000116e8 ??_C@_15HCNDBBA@?$AAg?$AAu@ 100aa6e8 libucrt:lcidtoname_downlevel.obj + 0002:000116f0 ??_C@_15FNBEIBON@?$AAt?$AAa@ 100aa6f0 libucrt:lcidtoname_downlevel.obj + 0002:000116f8 ??_C@_15NCHGBGLK@?$AAt?$AAe@ 100aa6f8 libucrt:lcidtoname_downlevel.obj + 0002:00011700 ??_C@_15PHPHCBPF@?$AAk?$AAn@ 100aa700 libucrt:lcidtoname_downlevel.obj + 0002:00011708 ??_C@_15DLGBCKMP@?$AAm?$AAr@ 100aa708 libucrt:lcidtoname_downlevel.obj + 0002:00011710 ??_C@_15EABBLBFF@?$AAs?$AAa@ 100aa710 libucrt:lcidtoname_downlevel.obj + 0002:00011718 ??_C@_15CBKOMCOI@?$AAm?$AAn@ 100aa718 libucrt:lcidtoname_downlevel.obj + 0002:00011720 ??_C@_15CKDMCJAF@?$AAg?$AAl@ 100aa720 libucrt:lcidtoname_downlevel.obj + 0002:00011728 ??_C@_17CNJFBPG@?$AAk?$AAo?$AAk@ 100aa728 libucrt:lcidtoname_downlevel.obj + 0002:00011730 ??_C@_17FFBJICPL@?$AAs?$AAy?$AAr@ 100aa730 libucrt:lcidtoname_downlevel.obj + 0002:00011738 ??_C@_17KPNDCPAF@?$AAd?$AAi?$AAv@ 100aa738 libucrt:lcidtoname_downlevel.obj + 0002:00011740 ??_C@_11LOCGONAA@@ 100aa740 libucrt:lcidtoname_downlevel.obj + 0002:00011744 ??_C@_1M@OKAHONE@?$AAa?$AAr?$AA?9?$AAS?$AAA@ 100aa744 libucrt:lcidtoname_downlevel.obj + 0002:00011750 ??_C@_1M@FFFIGIGK@?$AAb?$AAg?$AA?9?$AAB?$AAG@ 100aa750 libucrt:lcidtoname_downlevel.obj + 0002:0001175c ??_C@_1M@BJNKEDC@?$AAc?$AAa?$AA?9?$AAE?$AAS@ 100aa75c libucrt:lcidtoname_downlevel.obj + 0002:00011768 ??_C@_1M@IJJHFJHA@?$AAc?$AAs?$AA?9?$AAC?$AAZ@ 100aa768 libucrt:lcidtoname_downlevel.obj + 0002:00011774 ??_C@_1M@CLPEOBGI@?$AAd?$AAa?$AA?9?$AAD?$AAK@ 100aa774 libucrt:lcidtoname_downlevel.obj + 0002:00011780 ??_C@_1M@MCMADGCB@?$AAd?$AAe?$AA?9?$AAD?$AAE@ 100aa780 libucrt:lcidtoname_downlevel.obj + 0002:0001178c ??_C@_1M@OOCKEMAM@?$AAe?$AAl?$AA?9?$AAG?$AAR@ 100aa78c libucrt:lcidtoname_downlevel.obj + 0002:00011798 ??_C@_1M@DDNJFGID@?$AAf?$AAi?$AA?9?$AAF?$AAI@ 100aa798 libucrt:lcidtoname_downlevel.obj + 0002:000117a4 ??_C@_1M@GLIPPMAC@?$AAf?$AAr?$AA?9?$AAF?$AAR@ 100aa7a4 libucrt:lcidtoname_downlevel.obj + 0002:000117b0 ??_C@_1M@GFMCHPE@?$AAh?$AAe?$AA?9?$AAI?$AAL@ 100aa7b0 libucrt:lcidtoname_downlevel.obj + 0002:000117bc ??_C@_1M@MHLPGNKM@?$AAh?$AAu?$AA?9?$AAH?$AAU@ 100aa7bc libucrt:lcidtoname_downlevel.obj + 0002:000117c8 ??_C@_1M@LPDDNNPN@?$AAi?$AAs?$AA?9?$AAI?$AAS@ 100aa7c8 libucrt:lcidtoname_downlevel.obj + 0002:000117d4 ??_C@_1M@MADIPODN@?$AAi?$AAt?$AA?9?$AAI?$AAT@ 100aa7d4 libucrt:lcidtoname_downlevel.obj + 0002:000117e0 ??_C@_1M@IHBJJGG@?$AAn?$AAl?$AA?9?$AAN?$AAL@ 100aa7e0 libucrt:lcidtoname_downlevel.obj + 0002:000117ec ??_C@_1M@EANAGDL@?$AAn?$AAb?$AA?9?$AAN?$AAO@ 100aa7ec libucrt:lcidtoname_downlevel.obj + 0002:000117f8 ??_C@_1M@NEIEMEGP@?$AAp?$AAl?$AA?9?$AAP?$AAL@ 100aa7f8 libucrt:lcidtoname_downlevel.obj + 0002:00011804 ??_C@_1M@BOCFIGEP@?$AAp?$AAt?$AA?9?$AAB?$AAR@ 100aa804 libucrt:lcidtoname_downlevel.obj + 0002:00011810 ??_C@_1M@IMPFOPBG@?$AAr?$AAo?$AA?9?$AAR?$AAO@ 100aa810 libucrt:lcidtoname_downlevel.obj + 0002:0001181c ??_C@_1M@IDNNEJMM@?$AAr?$AAu?$AA?9?$AAR?$AAU@ 100aa81c libucrt:lcidtoname_downlevel.obj + 0002:00011828 ??_C@_1M@LILEEOGM@?$AAh?$AAr?$AA?9?$AAH?$AAR@ 100aa828 libucrt:lcidtoname_downlevel.obj + 0002:00011834 ??_C@_1M@FKIFEHPB@?$AAs?$AAk?$AA?9?$AAS?$AAK@ 100aa834 libucrt:lcidtoname_downlevel.obj + 0002:00011840 ??_C@_1M@LJMAMNPJ@?$AAs?$AAq?$AA?9?$AAA?$AAL@ 100aa840 libucrt:lcidtoname_downlevel.obj + 0002:0001184c ??_C@_1M@GIAKDKJK@?$AAs?$AAv?$AA?9?$AAS?$AAE@ 100aa84c libucrt:lcidtoname_downlevel.obj + 0002:00011858 ??_C@_1M@MKJKIKCL@?$AAt?$AAh?$AA?9?$AAT?$AAH@ 100aa858 libucrt:lcidtoname_downlevel.obj + 0002:00011864 ??_C@_1M@MFLCCMPB@?$AAt?$AAr?$AA?9?$AAT?$AAR@ 100aa864 libucrt:lcidtoname_downlevel.obj + 0002:00011870 ??_C@_1M@OIJHDKJN@?$AAu?$AAr?$AA?9?$AAP?$AAK@ 100aa870 libucrt:lcidtoname_downlevel.obj + 0002:0001187c ??_C@_1M@LHIPCIEK@?$AAi?$AAd?$AA?9?$AAI?$AAD@ 100aa87c libucrt:lcidtoname_downlevel.obj + 0002:00011888 ??_C@_1M@MFMOBGI@?$AAu?$AAk?$AA?9?$AAU?$AAA@ 100aa888 libucrt:lcidtoname_downlevel.obj + 0002:00011894 ??_C@_1M@OBGLJIPL@?$AAb?$AAe?$AA?9?$AAB?$AAY@ 100aa894 libucrt:lcidtoname_downlevel.obj + 0002:000118a0 ??_C@_1M@BCFAJEAD@?$AAs?$AAl?$AA?9?$AAS?$AAI@ 100aa8a0 libucrt:lcidtoname_downlevel.obj + 0002:000118ac ??_C@_1M@FKFFEDDN@?$AAe?$AAt?$AA?9?$AAE?$AAE@ 100aa8ac libucrt:lcidtoname_downlevel.obj + 0002:000118b8 ??_C@_1M@KGKKAACI@?$AAl?$AAv?$AA?9?$AAL?$AAV@ 100aa8b8 libucrt:lcidtoname_downlevel.obj + 0002:000118c4 ??_C@_1M@IFGBIJO@?$AAl?$AAt?$AA?9?$AAL?$AAT@ 100aa8c4 libucrt:lcidtoname_downlevel.obj + 0002:000118d0 ??_C@_1M@FGEAHEDM@?$AAf?$AAa?$AA?9?$AAI?$AAR@ 100aa8d0 libucrt:lcidtoname_downlevel.obj + 0002:000118dc ??_C@_1M@KBMAIBFN@?$AAv?$AAi?$AA?9?$AAV?$AAN@ 100aa8dc libucrt:lcidtoname_downlevel.obj + 0002:000118e8 ??_C@_1M@GPCBKDJK@?$AAh?$AAy?$AA?9?$AAA?$AAM@ 100aa8e8 libucrt:lcidtoname_downlevel.obj + 0002:000118f4 ??_C@_1BG@BECMDDJB@?$AAa?$AAz?$AA?9?$AAA?$AAZ?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100aa8f4 libucrt:lcidtoname_downlevel.obj + 0002:0001190c ??_C@_1M@MAOFCAEA@?$AAe?$AAu?$AA?9?$AAE?$AAS@ 100aa90c libucrt:lcidtoname_downlevel.obj + 0002:00011918 ??_C@_1M@IGHABKPI@?$AAm?$AAk?$AA?9?$AAM?$AAK@ 100aa918 libucrt:lcidtoname_downlevel.obj + 0002:00011924 ??_C@_1M@IAIGNEJG@?$AAt?$AAn?$AA?9?$AAZ?$AAA@ 100aa924 libucrt:lcidtoname_downlevel.obj + 0002:00011930 ??_C@_1M@IIJCOJFA@?$AAx?$AAh?$AA?9?$AAZ?$AAA@ 100aa930 libucrt:lcidtoname_downlevel.obj + 0002:0001193c ??_C@_1M@LGPJHNJH@?$AAz?$AAu?$AA?9?$AAZ?$AAA@ 100aa93c libucrt:lcidtoname_downlevel.obj + 0002:00011948 ??_C@_1M@HOKAOIO@?$AAa?$AAf?$AA?9?$AAZ?$AAA@ 100aa948 libucrt:lcidtoname_downlevel.obj + 0002:00011954 ??_C@_1M@DPCLHLIE@?$AAk?$AAa?$AA?9?$AAG?$AAE@ 100aa954 libucrt:lcidtoname_downlevel.obj + 0002:00011960 ??_C@_1M@BLKMHJBI@?$AAf?$AAo?$AA?9?$AAF?$AAO@ 100aa960 libucrt:lcidtoname_downlevel.obj + 0002:0001196c ??_C@_1M@LGGJAPPB@?$AAh?$AAi?$AA?9?$AAI?$AAN@ 100aa96c libucrt:lcidtoname_downlevel.obj + 0002:00011978 ??_C@_1M@FIKPIHFE@?$AAm?$AAt?$AA?9?$AAM?$AAT@ 100aa978 libucrt:lcidtoname_downlevel.obj + 0002:00011984 ??_C@_1M@HEGGPBFA@?$AAs?$AAe?$AA?9?$AAN?$AAO@ 100aa984 libucrt:lcidtoname_downlevel.obj + 0002:00011990 ??_C@_1M@EIBJEEPA@?$AAm?$AAs?$AA?9?$AAM?$AAY@ 100aa990 libucrt:lcidtoname_downlevel.obj + 0002:0001199c ??_C@_1M@FHLBGMPP@?$AAk?$AAk?$AA?9?$AAK?$AAZ@ 100aa99c libucrt:lcidtoname_downlevel.obj + 0002:000119a8 ??_C@_1M@NGJJLCGI@?$AAk?$AAy?$AA?9?$AAK?$AAG@ 100aa9a8 libucrt:lcidtoname_downlevel.obj + 0002:000119b4 ??_C@_1M@GIENNBFC@?$AAs?$AAw?$AA?9?$AAK?$AAE@ 100aa9b4 libucrt:lcidtoname_downlevel.obj + 0002:000119c0 ??_C@_1BG@NDGMJIMJ@?$AAu?$AAz?$AA?9?$AAU?$AAZ?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100aa9c0 libucrt:lcidtoname_downlevel.obj + 0002:000119d8 ??_C@_1M@IDCCIHBC@?$AAt?$AAt?$AA?9?$AAR?$AAU@ 100aa9d8 libucrt:lcidtoname_downlevel.obj + 0002:000119e4 ??_C@_1M@LOICPMOJ@?$AAb?$AAn?$AA?9?$AAI?$AAN@ 100aa9e4 libucrt:lcidtoname_downlevel.obj + 0002:000119f0 ??_C@_1M@KPKKNEAH@?$AAp?$AAa?$AA?9?$AAI?$AAN@ 100aa9f0 libucrt:lcidtoname_downlevel.obj + 0002:000119fc ??_C@_1M@PJGPPBOG@?$AAg?$AAu?$AA?9?$AAI?$AAN@ 100aa9fc libucrt:lcidtoname_downlevel.obj + 0002:00011a08 ??_C@_1M@KMKMOPHI@?$AAt?$AAa?$AA?9?$AAI?$AAN@ 100aaa08 libucrt:lcidtoname_downlevel.obj + 0002:00011a14 ??_C@_1M@KFEHEPAC@?$AAt?$AAe?$AA?9?$AAI?$AAN@ 100aaa14 libucrt:lcidtoname_downlevel.obj + 0002:00011a20 ??_C@_1M@CDCLMGHI@?$AAk?$AAn?$AA?9?$AAI?$AAN@ 100aaa20 libucrt:lcidtoname_downlevel.obj + 0002:00011a2c ??_C@_1M@MIODLDKF@?$AAm?$AAl?$AA?9?$AAI?$AAN@ 100aaa2c libucrt:lcidtoname_downlevel.obj + 0002:00011a38 ??_C@_1M@PBIEACPO@?$AAm?$AAr?$AA?9?$AAI?$AAN@ 100aaa38 libucrt:lcidtoname_downlevel.obj + 0002:00011a44 ??_C@_1M@NIDEAGPH@?$AAs?$AAa?$AA?9?$AAI?$AAN@ 100aaa44 libucrt:lcidtoname_downlevel.obj + 0002:00011a50 ??_C@_1M@FHIHCBIO@?$AAm?$AAn?$AA?9?$AAM?$AAN@ 100aaa50 libucrt:lcidtoname_downlevel.obj + 0002:00011a5c ??_C@_1M@JAIJPENP@?$AAc?$AAy?$AA?9?$AAG?$AAB@ 100aaa5c libucrt:lcidtoname_downlevel.obj + 0002:00011a68 ??_C@_1M@PHGFBEPN@?$AAg?$AAl?$AA?9?$AAE?$AAS@ 100aaa68 libucrt:lcidtoname_downlevel.obj + 0002:00011a74 ??_C@_1O@KPIPDNCP@?$AAk?$AAo?$AAk?$AA?9?$AAI?$AAN@ 100aaa74 libucrt:lcidtoname_downlevel.obj + 0002:00011a84 ??_C@_1O@KNHJLDJA@?$AAs?$AAy?$AAr?$AA?9?$AAS?$AAY@ 100aaa84 libucrt:lcidtoname_downlevel.obj + 0002:00011a94 ??_C@_1O@MKEKBLAH@?$AAd?$AAi?$AAv?$AA?9?$AAM?$AAV@ 100aaa94 libucrt:lcidtoname_downlevel.obj + 0002:00011aa4 ??_C@_1O@OHDCKDDF@?$AAq?$AAu?$AAz?$AA?9?$AAB?$AAO@ 100aaaa4 libucrt:lcidtoname_downlevel.obj + 0002:00011ab4 ??_C@_1M@LEPJNLFD@?$AAn?$AAs?$AA?9?$AAZ?$AAA@ 100aaab4 libucrt:lcidtoname_downlevel.obj + 0002:00011ac0 ??_C@_1M@OMLEIIJB@?$AAm?$AAi?$AA?9?$AAN?$AAZ@ 100aaac0 libucrt:lcidtoname_downlevel.obj + 0002:00011acc ??_C@_1M@PMPEAILG@?$AAa?$AAr?$AA?9?$AAI?$AAQ@ 100aaacc libucrt:lcidtoname_downlevel.obj + 0002:00011ad8 ??_C@_1M@CNKPNOEE@?$AAd?$AAe?$AA?9?$AAC?$AAH@ 100aaad8 libucrt:lcidtoname_downlevel.obj + 0002:00011ae4 ??_C@_1M@LKMGMLKO@?$AAe?$AAn?$AA?9?$AAG?$AAB@ 100aaae4 libucrt:lcidtoname_downlevel.obj + 0002:00011af0 ??_C@_1M@PGKJFFGL@?$AAe?$AAs?$AA?9?$AAM?$AAX@ 100aaaf0 libucrt:lcidtoname_downlevel.obj + 0002:00011afc ??_C@_1M@DNNANBDC@?$AAf?$AAr?$AA?9?$AAB?$AAE@ 100aaafc libucrt:lcidtoname_downlevel.obj + 0002:00011b08 ??_C@_1M@HLGMDFHM@?$AAi?$AAt?$AA?9?$AAC?$AAH@ 100aab08 libucrt:lcidtoname_downlevel.obj + 0002:00011b14 ??_C@_1M@CLLBGJH@?$AAn?$AAl?$AA?9?$AAB?$AAE@ 100aab14 libucrt:lcidtoname_downlevel.obj + 0002:00011b20 ??_C@_1M@BODBOGLF@?$AAn?$AAn?$AA?9?$AAN?$AAO@ 100aab20 libucrt:lcidtoname_downlevel.obj + 0002:00011b2c ??_C@_1M@HFFAHKAD@?$AAp?$AAt?$AA?9?$AAP?$AAT@ 100aab2c libucrt:lcidtoname_downlevel.obj + 0002:00011b38 ??_C@_1BG@LNOAKHIE@?$AAs?$AAr?$AA?9?$AAS?$AAP?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100aab38 libucrt:lcidtoname_downlevel.obj + 0002:00011b50 ??_C@_1M@HBMHBGAK@?$AAs?$AAv?$AA?9?$AAF?$AAI@ 100aab50 libucrt:lcidtoname_downlevel.obj + 0002:00011b5c ??_C@_1BG@DGCJGJBE@?$AAa?$AAz?$AA?9?$AAA?$AAZ?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100aab5c libucrt:lcidtoname_downlevel.obj + 0002:00011b74 ??_C@_1M@KEJDAAHB@?$AAs?$AAe?$AA?9?$AAS?$AAE@ 100aab74 libucrt:lcidtoname_downlevel.obj + 0002:00011b80 ??_C@_1M@HEIBJJAD@?$AAm?$AAs?$AA?9?$AAB?$AAN@ 100aab80 libucrt:lcidtoname_downlevel.obj + 0002:00011b8c ??_C@_1BG@PBGJMCEM@?$AAu?$AAz?$AA?9?$AAU?$AAZ?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100aab8c libucrt:lcidtoname_downlevel.obj + 0002:00011ba4 ??_C@_1O@LAOBCMDF@?$AAq?$AAu?$AAz?$AA?9?$AAE?$AAC@ 100aaba4 libucrt:lcidtoname_downlevel.obj + 0002:00011bb4 ??_C@_1M@POEEMAIO@?$AAa?$AAr?$AA?9?$AAE?$AAG@ 100aabb4 libucrt:lcidtoname_downlevel.obj + 0002:00011bc0 ??_C@_1M@EFAKDEDL@?$AAz?$AAh?$AA?9?$AAH?$AAK@ 100aabc0 libucrt:lcidtoname_downlevel.obj + 0002:00011bcc ??_C@_1M@HKKIJHGI@?$AAd?$AAe?$AA?9?$AAA?$AAT@ 100aabcc libucrt:lcidtoname_downlevel.obj + 0002:00011bd8 ??_C@_1M@KBFBEHJF@?$AAe?$AAn?$AA?9?$AAA?$AAU@ 100aabd8 libucrt:lcidtoname_downlevel.obj + 0002:00011be4 ??_C@_1M@MNPLFAAH@?$AAe?$AAs?$AA?9?$AAE?$AAS@ 100aabe4 libucrt:lcidtoname_downlevel.obj + 0002:00011bf0 ??_C@_1M@HJOOJFMA@?$AAf?$AAr?$AA?9?$AAC?$AAA@ 100aabf0 libucrt:lcidtoname_downlevel.obj + 0002:00011bfc ??_C@_1BG@JPOFPNAB@?$AAs?$AAr?$AA?9?$AAS?$AAP?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100aabfc libucrt:lcidtoname_downlevel.obj + 0002:00011c14 ??_C@_1M@LNFOCMOB@?$AAs?$AAe?$AA?9?$AAF?$AAI@ 100aac14 libucrt:lcidtoname_downlevel.obj + 0002:00011c20 ??_C@_1O@MGJBOAMB@?$AAq?$AAu?$AAz?$AA?9?$AAP?$AAE@ 100aac20 libucrt:lcidtoname_downlevel.obj + 0002:00011c30 ??_C@_1M@GJINLBOK@?$AAa?$AAr?$AA?9?$AAL?$AAY@ 100aac30 libucrt:lcidtoname_downlevel.obj + 0002:00011c3c ??_C@_1M@GGMNHJNL@?$AAz?$AAh?$AA?9?$AAS?$AAG@ 100aac3c libucrt:lcidtoname_downlevel.obj + 0002:00011c48 ??_C@_1M@HOIKODND@?$AAd?$AAe?$AA?9?$AAL?$AAU@ 100aac48 libucrt:lcidtoname_downlevel.obj + 0002:00011c54 ??_C@_1M@DDOCCGFG@?$AAe?$AAn?$AA?9?$AAC?$AAA@ 100aac54 libucrt:lcidtoname_downlevel.obj + 0002:00011c60 ??_C@_1M@BNOEMJLF@?$AAe?$AAs?$AA?9?$AAG?$AAT@ 100aac60 libucrt:lcidtoname_downlevel.obj + 0002:00011c6c ??_C@_1M@EOGNKEK@?$AAf?$AAr?$AA?9?$AAC?$AAH@ 100aac6c libucrt:lcidtoname_downlevel.obj + 0002:00011c78 ??_C@_1M@FLIDJFHL@?$AAh?$AAr?$AA?9?$AAB?$AAA@ 100aac78 libucrt:lcidtoname_downlevel.obj + 0002:00011c84 ??_C@_1O@FMCELNAJ@?$AAs?$AAm?$AAj?$AA?9?$AAN?$AAO@ 100aac84 libucrt:lcidtoname_downlevel.obj + 0002:00011c94 ??_C@_1M@JHGLJMGJ@?$AAa?$AAr?$AA?9?$AAD?$AAZ@ 100aac94 libucrt:lcidtoname_downlevel.obj + 0002:00011ca0 ??_C@_1M@JKKFDCNP@?$AAz?$AAh?$AA?9?$AAM?$AAO@ 100aaca0 libucrt:lcidtoname_downlevel.obj + 0002:00011cac ??_C@_1M@GEEFALPE@?$AAd?$AAe?$AA?9?$AAL?$AAI@ 100aacac libucrt:lcidtoname_downlevel.obj + 0002:00011cb8 ??_C@_1M@IGEOFBG@?$AAe?$AAn?$AA?9?$AAN?$AAZ@ 100aacb8 libucrt:lcidtoname_downlevel.obj + 0002:00011cc4 ??_C@_1M@KDBONEHP@?$AAe?$AAs?$AA?9?$AAC?$AAR@ 100aacc4 libucrt:lcidtoname_downlevel.obj + 0002:00011cd0 ??_C@_1M@FHMDOHNN@?$AAf?$AAr?$AA?9?$AAL?$AAU@ 100aacd0 libucrt:lcidtoname_downlevel.obj + 0002:00011cdc ??_C@_1BG@NFKKMAFG@?$AAb?$AAs?$AA?9?$AAB?$AAA?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100aacdc libucrt:lcidtoname_downlevel.obj + 0002:00011cf4 ??_C@_1O@IMNBEMCI@?$AAs?$AAm?$AAj?$AA?9?$AAS?$AAE@ 100aacf4 libucrt:lcidtoname_downlevel.obj + 0002:00011d04 ??_C@_1M@DHHMBNDP@?$AAa?$AAr?$AA?9?$AAM?$AAA@ 100aad04 libucrt:lcidtoname_downlevel.obj + 0002:00011d10 ??_C@_1M@BNBLJCGH@?$AAe?$AAn?$AA?9?$AAI?$AAE@ 100aad10 libucrt:lcidtoname_downlevel.obj + 0002:00011d1c ??_C@_1M@GEPAFMDL@?$AAe?$AAs?$AA?9?$AAP?$AAA@ 100aad1c libucrt:lcidtoname_downlevel.obj + 0002:00011d28 ??_C@_1M@OJONDMDL@?$AAf?$AAr?$AA?9?$AAM?$AAC@ 100aad28 libucrt:lcidtoname_downlevel.obj + 0002:00011d34 ??_C@_1BG@OBCNFJB@?$AAs?$AAr?$AA?9?$AAB?$AAA?$AA?9?$AAL?$AAa?$AAt?$AAn@ 100aad34 libucrt:lcidtoname_downlevel.obj + 0002:00011d4c ??_C@_1O@KEMEEGPO@?$AAs?$AAm?$AAa?$AA?9?$AAN?$AAO@ 100aad4c libucrt:lcidtoname_downlevel.obj + 0002:00011d5c ??_C@_1M@ELMGFODK@?$AAa?$AAr?$AA?9?$AAT?$AAN@ 100aad5c libucrt:lcidtoname_downlevel.obj + 0002:00011d68 ??_C@_1M@BHDLHFAF@?$AAe?$AAn?$AA?9?$AAZ?$AAA@ 100aad68 libucrt:lcidtoname_downlevel.obj + 0002:00011d74 ??_C@_1M@BMGIGLIF@?$AAe?$AAs?$AA?9?$AAD?$AAO@ 100aad74 libucrt:lcidtoname_downlevel.obj + 0002:00011d80 ??_C@_1BG@CMBHIPBE@?$AAs?$AAr?$AA?9?$AAB?$AAA?$AA?9?$AAC?$AAy?$AAr?$AAl@ 100aad80 libucrt:lcidtoname_downlevel.obj + 0002:00011d98 ??_C@_1O@HEDBLHNP@?$AAs?$AAm?$AAa?$AA?9?$AAS?$AAE@ 100aad98 libucrt:lcidtoname_downlevel.obj + 0002:00011da8 ??_C@_1M@DAGCADIM@?$AAa?$AAr?$AA?9?$AAO?$AAM@ 100aada8 libucrt:lcidtoname_downlevel.obj + 0002:00011db4 ??_C@_1M@FODLMICG@?$AAe?$AAn?$AA?9?$AAJ?$AAM@ 100aadb4 libucrt:lcidtoname_downlevel.obj + 0002:00011dc0 ??_C@_1M@DNMLCIHB@?$AAe?$AAs?$AA?9?$AAV?$AAE@ 100aadc0 libucrt:lcidtoname_downlevel.obj + 0002:00011dcc ??_C@_1O@EOKHMKJK@?$AAs?$AAm?$AAs?$AA?9?$AAF?$AAI@ 100aadcc libucrt:lcidtoname_downlevel.obj + 0002:00011ddc ??_C@_1M@CAFJMKOF@?$AAa?$AAr?$AA?9?$AAY?$AAE@ 100aaddc libucrt:lcidtoname_downlevel.obj + 0002:00011de8 ??_C@_1M@CBFHIJLI@?$AAe?$AAn?$AA?9?$AAC?$AAB@ 100aade8 libucrt:lcidtoname_downlevel.obj + 0002:00011df4 ??_C@_1M@BGNFLDN@?$AAe?$AAs?$AA?9?$AAC?$AAO@ 100aadf4 libucrt:lcidtoname_downlevel.obj + 0002:00011e00 ??_C@_1O@JMPHMAMC@?$AAs?$AAm?$AAn?$AA?9?$AAF?$AAI@ 100aae00 libucrt:lcidtoname_downlevel.obj + 0002:00011e10 ??_C@_1M@JLANABKE@?$AAa?$AAr?$AA?9?$AAS?$AAY@ 100aae10 libucrt:lcidtoname_downlevel.obj + 0002:00011e1c ??_C@_1M@HPKGCFGN@?$AAe?$AAn?$AA?9?$AAB?$AAZ@ 100aae1c libucrt:lcidtoname_downlevel.obj + 0002:00011e28 ??_C@_1M@OLJCMLGM@?$AAe?$AAs?$AA?9?$AAP?$AAE@ 100aae28 libucrt:lcidtoname_downlevel.obj + 0002:00011e34 ??_C@_1M@MKKGFKLE@?$AAa?$AAr?$AA?9?$AAJ?$AAO@ 100aae34 libucrt:lcidtoname_downlevel.obj + 0002:00011e40 ??_C@_1M@EKPGLDNI@?$AAe?$AAn?$AA?9?$AAT?$AAT@ 100aae40 libucrt:lcidtoname_downlevel.obj + 0002:00011e4c ??_C@_1M@OONGHFHE@?$AAe?$AAs?$AA?9?$AAA?$AAR@ 100aae4c libucrt:lcidtoname_downlevel.obj + 0002:00011e58 ??_C@_1M@OOJFGBHE@?$AAa?$AAr?$AA?9?$AAL?$AAB@ 100aae58 libucrt:lcidtoname_downlevel.obj + 0002:00011e64 ??_C@_1M@GCEJHNEG@?$AAe?$AAn?$AA?9?$AAZ?$AAW@ 100aae64 libucrt:lcidtoname_downlevel.obj + 0002:00011e70 ??_C@_1M@JNOCAHJI@?$AAe?$AAs?$AA?9?$AAE?$AAC@ 100aae70 libucrt:lcidtoname_downlevel.obj + 0002:00011e7c ??_C@_1M@JEFHPGGB@?$AAa?$AAr?$AA?9?$AAK?$AAW@ 100aae7c libucrt:lcidtoname_downlevel.obj + 0002:00011e88 ??_C@_1M@MLKIBJOJ@?$AAe?$AAn?$AA?9?$AAP?$AAH@ 100aae88 libucrt:lcidtoname_downlevel.obj + 0002:00011e94 ??_C@_1M@BDNIPEND@?$AAe?$AAs?$AA?9?$AAC?$AAL@ 100aae94 libucrt:lcidtoname_downlevel.obj + 0002:00011ea0 ??_C@_1M@MPNMEKBD@?$AAa?$AAr?$AA?9?$AAA?$AAE@ 100aaea0 libucrt:lcidtoname_downlevel.obj + 0002:00011eac ??_C@_1M@KBJALCPI@?$AAe?$AAs?$AA?9?$AAU?$AAY@ 100aaeac libucrt:lcidtoname_downlevel.obj + 0002:00011eb8 ??_C@_1M@LLCCOAGA@?$AAa?$AAr?$AA?9?$AAB?$AAH@ 100aaeb8 libucrt:lcidtoname_downlevel.obj + 0002:00011ec4 ??_C@_1M@PBFNCDEL@?$AAe?$AAs?$AA?9?$AAP?$AAY@ 100aaec4 libucrt:lcidtoname_downlevel.obj + 0002:00011ed0 ??_C@_1M@EDGINPNP@?$AAa?$AAr?$AA?9?$AAQ?$AAA@ 100aaed0 libucrt:lcidtoname_downlevel.obj + 0002:00011edc ??_C@_1M@MKDBIIJI@?$AAe?$AAs?$AA?9?$AAB?$AAO@ 100aaedc libucrt:lcidtoname_downlevel.obj + 0002:00011ee8 ??_C@_1M@CPKKEBLD@?$AAe?$AAs?$AA?9?$AAS?$AAV@ 100aaee8 libucrt:lcidtoname_downlevel.obj + 0002:00011ef4 ??_C@_1M@NDBGMMJL@?$AAe?$AAs?$AA?9?$AAH?$AAN@ 100aaef4 libucrt:lcidtoname_downlevel.obj + 0002:00011f00 ??_C@_1M@JIJIBHDP@?$AAe?$AAs?$AA?9?$AAN?$AAI@ 100aaf00 libucrt:lcidtoname_downlevel.obj + 0002:00011f0c ??_C@_1M@CGFMKEEK@?$AAe?$AAs?$AA?9?$AAP?$AAR@ 100aaf0c libucrt:lcidtoname_downlevel.obj + 0002:00011f18 ??_C@_1O@ICJHKIIK@?$AAz?$AAh?$AA?9?$AAC?$AAH?$AAT@ 100aaf18 libucrt:lcidtoname_downlevel.obj + 0002:00011f28 ??_C@_15CLNEJCE@?$AAs?$AAr@ 100aaf28 libucrt:lcidtoname_downlevel.obj + 0002:00012650 ??_C@_1M@KAHEKEIG@?$AAa?$AAf?$AA?9?$AAz?$AAa@ 100ab650 libucrt:lcidtoname_downlevel.obj + 0002:0001265c ??_C@_1M@GIECOABL@?$AAa?$AAr?$AA?9?$AAa?$AAe@ 100ab65c libucrt:lcidtoname_downlevel.obj + 0002:00012668 ??_C@_1M@BMLMEKGI@?$AAa?$AAr?$AA?9?$AAb?$AAh@ 100ab668 libucrt:lcidtoname_downlevel.obj + 0002:00012674 ??_C@_1M@DAPFDGGB@?$AAa?$AAr?$AA?9?$AAd?$AAz@ 100ab674 libucrt:lcidtoname_downlevel.obj + 0002:00012680 ??_C@_1M@FJNKGKIG@?$AAa?$AAr?$AA?9?$AAe?$AAg@ 100ab680 libucrt:lcidtoname_downlevel.obj + 0002:0001268c ??_C@_1M@FLGKKCLO@?$AAa?$AAr?$AA?9?$AAi?$AAq@ 100ab68c libucrt:lcidtoname_downlevel.obj + 0002:00012698 ??_C@_1M@GNDIPALM@?$AAa?$AAr?$AA?9?$AAj?$AAo@ 100ab698 libucrt:lcidtoname_downlevel.obj + 0002:000126a4 ??_C@_1M@DDMJFMGJ@?$AAa?$AAr?$AA?9?$AAk?$AAw@ 100ab6a4 libucrt:lcidtoname_downlevel.obj + 0002:000126b0 ??_C@_1M@EJALMLHM@?$AAa?$AAr?$AA?9?$AAl?$AAb@ 100ab6b0 libucrt:lcidtoname_downlevel.obj + 0002:000126bc ??_C@_1M@MOBDBLOC@?$AAa?$AAr?$AA?9?$AAl?$AAy@ 100ab6bc libucrt:lcidtoname_downlevel.obj + 0002:000126c8 ??_C@_1M@JAOCLHDH@?$AAa?$AAr?$AA?9?$AAm?$AAa@ 100ab6c8 libucrt:lcidtoname_downlevel.obj + 0002:000126d4 ??_C@_1M@JHPMKJIE@?$AAa?$AAr?$AA?9?$AAo?$AAm@ 100ab6d4 libucrt:lcidtoname_downlevel.obj + 0002:000126e0 ??_C@_1M@OEPGHFNH@?$AAa?$AAr?$AA?9?$AAq?$AAa@ 100ab6e0 libucrt:lcidtoname_downlevel.obj + 0002:000126ec ??_C@_1M@KJDONENM@?$AAa?$AAr?$AA?9?$AAs?$AAa@ 100ab6ec libucrt:lcidtoname_downlevel.obj + 0002:000126f8 ??_C@_1M@DMJDKLKM@?$AAa?$AAr?$AA?9?$AAs?$AAy@ 100ab6f8 libucrt:lcidtoname_downlevel.obj + 0002:00012704 ??_C@_1M@OMFIPEDC@?$AAa?$AAr?$AA?9?$AAt?$AAn@ 100ab704 libucrt:lcidtoname_downlevel.obj + 0002:00012710 ??_C@_1M@IHMHGAON@?$AAa?$AAr?$AA?9?$AAy?$AAe@ 100ab710 libucrt:lcidtoname_downlevel.obj + 0002:0001271c ??_C@_1BG@KDCPGJGB@?$AAa?$AAz?$AA?9?$AAa?$AAz?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100ab71c libucrt:lcidtoname_downlevel.obj + 0002:00012734 ??_C@_1BG@IBCKDDOE@?$AAa?$AAz?$AA?9?$AAa?$AAz?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100ab734 libucrt:lcidtoname_downlevel.obj + 0002:0001274c ??_C@_1M@EGPFDCPD@?$AAb?$AAe?$AA?9?$AAb?$AAy@ 100ab74c libucrt:lcidtoname_downlevel.obj + 0002:00012758 ??_C@_1M@PCMGMCGC@?$AAb?$AAg?$AA?9?$AAb?$AAg@ 100ab758 libucrt:lcidtoname_downlevel.obj + 0002:00012764 ??_C@_1M@BJBMFGOB@?$AAb?$AAn?$AA?9?$AAi?$AAn@ 100ab764 libucrt:lcidtoname_downlevel.obj + 0002:00012770 ??_C@_1BG@EAKMMACD@?$AAb?$AAs?$AA?9?$AAb?$AAa?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100ab770 libucrt:lcidtoname_downlevel.obj + 0002:00012788 ??_C@_1M@KGADAODK@?$AAc?$AAa?$AA?9?$AAe?$AAs@ 100ab788 libucrt:lcidtoname_downlevel.obj + 0002:00012794 ??_C@_1M@COAJPDHI@?$AAc?$AAs?$AA?9?$AAc?$AAz@ 100ab794 libucrt:lcidtoname_downlevel.obj + 0002:000127a0 ??_C@_1M@DHBHFONH@?$AAc?$AAy?$AA?9?$AAg?$AAb@ 100ab7a0 libucrt:lcidtoname_downlevel.obj + 0002:000127ac ??_C@_1M@IMGKELGA@?$AAd?$AAa?$AA?9?$AAd?$AAk@ 100ab7ac libucrt:lcidtoname_downlevel.obj + 0002:000127b8 ??_C@_1M@NNDGDNGA@?$AAd?$AAe?$AA?9?$AAa?$AAt@ 100ab7b8 libucrt:lcidtoname_downlevel.obj + 0002:000127c4 ??_C@_1M@IKDBHEEM@?$AAd?$AAe?$AA?9?$AAc?$AAh@ 100ab7c4 libucrt:lcidtoname_downlevel.obj + 0002:000127d0 ??_C@_1M@GFFOJMCJ@?$AAd?$AAe?$AA?9?$AAd?$AAe@ 100ab7d0 libucrt:lcidtoname_downlevel.obj + 0002:000127dc ??_C@_1M@MDNLKBPM@?$AAd?$AAe?$AA?9?$AAl?$AAi@ 100ab7dc libucrt:lcidtoname_downlevel.obj + 0002:000127e8 ??_C@_1M@NJBEEJNL@?$AAd?$AAe?$AA?9?$AAl?$AAu@ 100ab7e8 libucrt:lcidtoname_downlevel.obj + 0002:000127f4 ??_C@_1O@GNNELBAP@?$AAd?$AAi?$AAv?$AA?9?$AAm?$AAv@ 100ab7f4 libucrt:lcidtoname_downlevel.obj + 0002:00012804 ??_C@_1M@EJLEOGAE@?$AAe?$AAl?$AA?9?$AAg?$AAr@ 100ab804 libucrt:lcidtoname_downlevel.obj + 0002:00012810 ??_C@_1M@GMPONJN@?$AAe?$AAn?$AA?9?$AAa?$AAu@ 100ab810 libucrt:lcidtoname_downlevel.obj + 0002:0001281c ??_C@_1M@NIDIIPGF@?$AAe?$AAn?$AA?9?$AAb?$AAz@ 100ab81c libucrt:lcidtoname_downlevel.obj + 0002:00012828 ??_C@_1M@JEHMIMFO@?$AAe?$AAn?$AA?9?$AAc?$AAa@ 100ab828 libucrt:lcidtoname_downlevel.obj + 0002:00012834 ??_C@_1M@IGMJCDLA@?$AAe?$AAn?$AA?9?$AAc?$AAb@ 100ab834 libucrt:lcidtoname_downlevel.obj + 0002:00012840 ??_C@_1M@BNFIGBKG@?$AAe?$AAn?$AA?9?$AAg?$AAb@ 100ab840 libucrt:lcidtoname_downlevel.obj + 0002:0001284c ??_C@_1M@LKIFDIGP@?$AAe?$AAn?$AA?9?$AAi?$AAe@ 100ab84c libucrt:lcidtoname_downlevel.obj + 0002:00012858 ??_C@_1M@PJKFGCCO@?$AAe?$AAn?$AA?9?$AAj?$AAm@ 100ab858 libucrt:lcidtoname_downlevel.obj + 0002:00012864 ??_C@_1M@KPPKEPBO@?$AAe?$AAn?$AA?9?$AAn?$AAz@ 100ab864 libucrt:lcidtoname_downlevel.obj + 0002:00012870 ??_C@_1M@GMDGLDOB@?$AAe?$AAn?$AA?9?$AAp?$AAh@ 100ab870 libucrt:lcidtoname_downlevel.obj + 0002:0001287c ??_C@_1M@ONGIBJNA@?$AAe?$AAn?$AA?9?$AAt?$AAt@ 100ab87c libucrt:lcidtoname_downlevel.obj + 0002:00012888 ??_C@_1M@LLODPCMM@?$AAe?$AAn?$AA?9?$AAu?$AAs@ 100ab888 libucrt:lcidtoname_downlevel.obj + 0002:00012894 ??_C@_1M@LAKFNPAN@?$AAe?$AAn?$AA?9?$AAz?$AAa@ 100ab894 libucrt:lcidtoname_downlevel.obj + 0002:000128a0 ??_C@_1M@MFNHNHEO@?$AAe?$AAn?$AA?9?$AAz?$AAw@ 100ab8a0 libucrt:lcidtoname_downlevel.obj + 0002:000128ac ??_C@_1M@EJEINPHM@?$AAe?$AAs?$AA?9?$AAa?$AAr@ 100ab8ac libucrt:lcidtoname_downlevel.obj + 0002:000128b8 ??_C@_1M@GNKPCCJA@?$AAe?$AAs?$AA?9?$AAb?$AAo@ 100ab8b8 libucrt:lcidtoname_downlevel.obj + 0002:000128c4 ??_C@_1M@LEEGFONL@?$AAe?$AAs?$AA?9?$AAc?$AAl@ 100ab8c4 libucrt:lcidtoname_downlevel.obj + 0002:000128d0 ??_C@_1M@KGPDPBDF@?$AAe?$AAs?$AA?9?$AAc?$AAo@ 100ab8d0 libucrt:lcidtoname_downlevel.obj + 0002:000128dc ??_C@_1M@EIAHOHH@?$AAe?$AAs?$AA?9?$AAc?$AAr@ 100ab8dc libucrt:lcidtoname_downlevel.obj + 0002:000128e8 ??_C@_1M@LLPGMBIN@?$AAe?$AAs?$AA?9?$AAd?$AAo@ 100ab8e8 libucrt:lcidtoname_downlevel.obj + 0002:000128f4 ??_C@_1M@DKHMKNJA@?$AAe?$AAs?$AA?9?$AAe?$AAc@ 100ab8f4 libucrt:lcidtoname_downlevel.obj + 0002:00012900 ??_C@_1M@GKGFPKAP@?$AAe?$AAs?$AA?9?$AAe?$AAs@ 100ab900 libucrt:lcidtoname_downlevel.obj + 0002:0001290c ??_C@_1M@LKHKGDLN@?$AAe?$AAs?$AA?9?$AAg?$AAt@ 100ab90c libucrt:lcidtoname_downlevel.obj + 0002:00012918 ??_C@_1M@HEIIGGJD@?$AAe?$AAs?$AA?9?$AAh?$AAn@ 100ab918 libucrt:lcidtoname_downlevel.obj + 0002:00012924 ??_C@_1M@FBDHPPGD@?$AAe?$AAs?$AA?9?$AAm?$AAx@ 100ab924 libucrt:lcidtoname_downlevel.obj + 0002:00012930 ??_C@_1M@DPAGLNDH@?$AAe?$AAs?$AA?9?$AAn?$AAi@ 100ab930 libucrt:lcidtoname_downlevel.obj + 0002:0001293c ??_C@_1M@MDGOPGDD@?$AAe?$AAs?$AA?9?$AAp?$AAa@ 100ab93c libucrt:lcidtoname_downlevel.obj + 0002:00012948 ??_C@_1M@EMAMGBGE@?$AAe?$AAs?$AA?9?$AAp?$AAe@ 100ab948 libucrt:lcidtoname_downlevel.obj + 0002:00012954 ??_C@_1M@IBMCAOEC@?$AAe?$AAs?$AA?9?$AAp?$AAr@ 100ab954 libucrt:lcidtoname_downlevel.obj + 0002:00012960 ??_C@_1M@FGMDIJED@?$AAe?$AAs?$AA?9?$AAp?$AAy@ 100ab960 libucrt:lcidtoname_downlevel.obj + 0002:0001296c ??_C@_1M@IIDEOLLL@?$AAe?$AAs?$AA?9?$AAs?$AAv@ 100ab96c libucrt:lcidtoname_downlevel.obj + 0002:00012978 ??_C@_1M@GAOBIPA@?$AAe?$AAs?$AA?9?$AAu?$AAy@ 100ab978 libucrt:lcidtoname_downlevel.obj + 0002:00012984 ??_C@_1M@JKFFICHJ@?$AAe?$AAs?$AA?9?$AAv?$AAe@ 100ab984 libucrt:lcidtoname_downlevel.obj + 0002:00012990 ??_C@_1M@PNMLOJDF@?$AAe?$AAt?$AA?9?$AAe?$AAe@ 100ab990 libucrt:lcidtoname_downlevel.obj + 0002:0001299c ??_C@_1M@GHHLIKEI@?$AAe?$AAu?$AA?9?$AAe?$AAs@ 100ab99c libucrt:lcidtoname_downlevel.obj + 0002:000129a8 ??_C@_1M@PBNONODE@?$AAf?$AAa?$AA?9?$AAi?$AAr@ 100ab9a8 libucrt:lcidtoname_downlevel.obj + 0002:000129b4 ??_C@_1M@JEEHPMIL@?$AAf?$AAi?$AA?9?$AAf?$AAi@ 100ab9b4 libucrt:lcidtoname_downlevel.obj + 0002:000129c0 ??_C@_1M@LMDCNDBA@?$AAf?$AAo?$AA?9?$AAf?$AAo@ 100ab9c0 libucrt:lcidtoname_downlevel.obj + 0002:000129cc ??_C@_1M@JKEOHLDK@?$AAf?$AAr?$AA?9?$AAb?$AAe@ 100ab9cc libucrt:lcidtoname_downlevel.obj + 0002:000129d8 ??_C@_1M@NOHADPMI@?$AAf?$AAr?$AA?9?$AAc?$AAa@ 100ab9d8 libucrt:lcidtoname_downlevel.obj + 0002:000129e4 ??_C@_1M@KDHIHAEC@?$AAf?$AAr?$AA?9?$AAc?$AAh@ 100ab9e4 libucrt:lcidtoname_downlevel.obj + 0002:000129f0 ??_C@_1M@MMBBFGAK@?$AAf?$AAr?$AA?9?$AAf?$AAr@ 100ab9f0 libucrt:lcidtoname_downlevel.obj + 0002:000129fc ??_C@_1M@PAFNENNF@?$AAf?$AAr?$AA?9?$AAl?$AAu@ 100ab9fc libucrt:lcidtoname_downlevel.obj + 0002:00012a08 ??_C@_1M@EOHDJGDD@?$AAf?$AAr?$AA?9?$AAm?$AAc@ 100aba08 libucrt:lcidtoname_downlevel.obj + 0002:00012a14 ??_C@_1M@FAPLLOPF@?$AAg?$AAl?$AA?9?$AAe?$AAs@ 100aba14 libucrt:lcidtoname_downlevel.obj + 0002:00012a20 ??_C@_1M@FOPBFLOO@?$AAg?$AAu?$AA?9?$AAi?$AAn@ 100aba20 libucrt:lcidtoname_downlevel.obj + 0002:00012a2c ??_C@_1M@KBMCINPM@?$AAh?$AAe?$AA?9?$AAi?$AAl@ 100aba2c libucrt:lcidtoname_downlevel.obj + 0002:00012a38 ??_C@_1M@BBPHKFPJ@?$AAh?$AAi?$AA?9?$AAi?$AAn@ 100aba38 libucrt:lcidtoname_downlevel.obj + 0002:00012a44 ??_C@_1M@PMBNDPHD@?$AAh?$AAr?$AA?9?$AAb?$AAa@ 100aba44 libucrt:lcidtoname_downlevel.obj + 0002:00012a50 ??_C@_1M@BPCKOEGE@?$AAh?$AAr?$AA?9?$AAh?$AAr@ 100aba50 libucrt:lcidtoname_downlevel.obj + 0002:00012a5c ??_C@_1M@GACBMHKE@?$AAh?$AAu?$AA?9?$AAh?$AAu@ 100aba5c libucrt:lcidtoname_downlevel.obj + 0002:00012a68 ??_C@_1M@MILPAJJC@?$AAh?$AAy?$AA?9?$AAa?$AAm@ 100aba68 libucrt:lcidtoname_downlevel.obj + 0002:00012a74 ??_C@_1M@BABBICEC@?$AAi?$AAd?$AA?9?$AAi?$AAd@ 100aba74 libucrt:lcidtoname_downlevel.obj + 0002:00012a80 ??_C@_1M@BIKNHHPF@?$AAi?$AAs?$AA?9?$AAi?$AAs@ 100aba80 libucrt:lcidtoname_downlevel.obj + 0002:00012a8c ??_C@_1M@NMPCJPHE@?$AAi?$AAt?$AA?9?$AAc?$AAh@ 100aba8c libucrt:lcidtoname_downlevel.obj + 0002:00012a98 ??_C@_1M@GHKGFEDF@?$AAi?$AAt?$AA?9?$AAi?$AAt@ 100aba98 libucrt:lcidtoname_downlevel.obj + 0002:00012aa4 ??_C@_1M@NIEJCJJA@?$AAj?$AAa?$AA?9?$AAj?$AAp@ 100abaa4 libucrt:lcidtoname_downlevel.obj + 0002:00012ab0 ??_C@_1M@JILFNBIM@?$AAk?$AAa?$AA?9?$AAg?$AAe@ 100abab0 libucrt:lcidtoname_downlevel.obj + 0002:00012abc ??_C@_1M@PACPMGPH@?$AAk?$AAk?$AA?9?$AAk?$AAz@ 100ababc libucrt:lcidtoname_downlevel.obj + 0002:00012ac8 ??_C@_1M@IELFGMHA@?$AAk?$AAn?$AA?9?$AAi?$AAn@ 100abac8 libucrt:lcidtoname_downlevel.obj + 0002:00012ad4 ??_C@_1O@IBBJHCH@?$AAk?$AAo?$AAk?$AA?9?$AAi?$AAn@ 100abad4 libucrt:lcidtoname_downlevel.obj + 0002:00012ae4 ??_C@_1M@DMHAEOGC@?$AAk?$AAo?$AA?9?$AAk?$AAr@ 100abae4 libucrt:lcidtoname_downlevel.obj + 0002:00012af0 ??_C@_1M@HBAHBIGA@?$AAk?$AAy?$AA?9?$AAk?$AAg@ 100abaf0 libucrt:lcidtoname_downlevel.obj + 0002:00012afc ??_C@_1M@KPMILCJG@?$AAl?$AAt?$AA?9?$AAl?$AAt@ 100abafc libucrt:lcidtoname_downlevel.obj + 0002:00012b08 ??_C@_1M@BDEKKCA@?$AAl?$AAv?$AA?9?$AAl?$AAv@ 100abb08 libucrt:lcidtoname_downlevel.obj + 0002:00012b14 ??_C@_1M@ELCKCCJJ@?$AAm?$AAi?$AA?9?$AAn?$AAz@ 100abb14 libucrt:lcidtoname_downlevel.obj + 0002:00012b20 ??_C@_1M@CBOOLAPA@?$AAm?$AAk?$AA?9?$AAm?$AAk@ 100abb20 libucrt:lcidtoname_downlevel.obj + 0002:00012b2c ??_C@_1M@GPHNBJKN@?$AAm?$AAl?$AA?9?$AAi?$AAn@ 100abb2c libucrt:lcidtoname_downlevel.obj + 0002:00012b38 ??_C@_1M@PABJILIG@?$AAm?$AAn?$AA?9?$AAm?$AAn@ 100abb38 libucrt:lcidtoname_downlevel.obj + 0002:00012b44 ??_C@_1M@FGBKKIPG@?$AAm?$AAr?$AA?9?$AAi?$AAn@ 100abb44 libucrt:lcidtoname_downlevel.obj + 0002:00012b50 ??_C@_1M@NDBPDDAL@?$AAm?$AAs?$AA?9?$AAb?$AAn@ 100abb50 libucrt:lcidtoname_downlevel.obj + 0002:00012b5c ??_C@_1M@OPIHOOPI@?$AAm?$AAs?$AA?9?$AAm?$AAy@ 100abb5c libucrt:lcidtoname_downlevel.obj + 0002:00012b68 ??_C@_1M@PPDBCNFM@?$AAm?$AAt?$AA?9?$AAm?$AAt@ 100abb68 libucrt:lcidtoname_downlevel.obj + 0002:00012b74 ??_C@_1M@KDJDKMDD@?$AAn?$AAb?$AA?9?$AAn?$AAo@ 100abb74 libucrt:lcidtoname_downlevel.obj + 0002:00012b80 ??_C@_1M@KFCFLMJP@?$AAn?$AAl?$AA?9?$AAb?$AAe@ 100abb80 libucrt:lcidtoname_downlevel.obj + 0002:00012b8c ??_C@_1M@KPOPDDGO@?$AAn?$AAl?$AA?9?$AAn?$AAl@ 100abb8c libucrt:lcidtoname_downlevel.obj + 0002:00012b98 ??_C@_1M@LJKPEMLN@?$AAn?$AAn?$AA?9?$AAn?$AAo@ 100abb98 libucrt:lcidtoname_downlevel.obj + 0002:00012ba4 ??_C@_1M@BDGHHBFL@?$AAn?$AAs?$AA?9?$AAz?$AAa@ 100abba4 libucrt:lcidtoname_downlevel.obj + 0002:00012bb0 ??_C@_1M@IDEHOAP@?$AAp?$AAa?$AA?9?$AAi?$AAn@ 100abbb0 libucrt:lcidtoname_downlevel.obj + 0002:00012bbc ??_C@_1M@HDBKGOGH@?$AAp?$AAl?$AA?9?$AAp?$AAl@ 100abbbc libucrt:lcidtoname_downlevel.obj + 0002:00012bc8 ??_C@_1M@LJLLCMEH@?$AAp?$AAt?$AA?9?$AAb?$AAr@ 100abbc8 libucrt:lcidtoname_downlevel.obj + 0002:00012bd4 ??_C@_1M@NCMONAAL@?$AAp?$AAt?$AA?9?$AAp?$AAt@ 100abbd4 libucrt:lcidtoname_downlevel.obj + 0002:00012be0 ??_C@_1O@EAKMAJDN@?$AAq?$AAu?$AAz?$AA?9?$AAb?$AAo@ 100abbe0 libucrt:lcidtoname_downlevel.obj + 0002:00012bf0 ??_C@_1O@BHHPIGDN@?$AAq?$AAu?$AAz?$AA?9?$AAe?$AAc@ 100abbf0 libucrt:lcidtoname_downlevel.obj + 0002:00012c00 ??_C@_1O@GBAPEKMJ@?$AAq?$AAu?$AAz?$AA?9?$AAp?$AAe@ 100abc00 libucrt:lcidtoname_downlevel.obj + 0002:00012c10 ??_C@_1M@CLGLEFBO@?$AAr?$AAo?$AA?9?$AAr?$AAo@ 100abc10 libucrt:lcidtoname_downlevel.obj + 0002:00012c1c ??_C@_1M@CEEDODME@?$AAr?$AAu?$AA?9?$AAr?$AAu@ 100abc1c libucrt:lcidtoname_downlevel.obj + 0002:00012c28 ??_C@_1M@HPKKKMPP@?$AAs?$AAa?$AA?9?$AAi?$AAn@ 100abc28 libucrt:lcidtoname_downlevel.obj + 0002:00012c34 ??_C@_1M@BKMAIGOJ@?$AAs?$AAe?$AA?9?$AAf?$AAi@ 100abc34 libucrt:lcidtoname_downlevel.obj + 0002:00012c40 ??_C@_1M@NDPIFLFI@?$AAs?$AAe?$AA?9?$AAn?$AAo@ 100abc40 libucrt:lcidtoname_downlevel.obj + 0002:00012c4c ??_C@_1M@DANKKHJ@?$AAs?$AAe?$AA?9?$AAs?$AAe@ 100abc4c libucrt:lcidtoname_downlevel.obj + 0002:00012c58 ??_C@_1M@PNBLONPJ@?$AAs?$AAk?$AA?9?$AAs?$AAk@ 100abc58 libucrt:lcidtoname_downlevel.obj + 0002:00012c64 ??_C@_1M@LFMODOAL@?$AAs?$AAl?$AA?9?$AAs?$AAi@ 100abc64 libucrt:lcidtoname_downlevel.obj + 0002:00012c70 ??_C@_1O@DFKOMPG@?$AAs?$AAm?$AAa?$AA?9?$AAn?$AAo@ 100abc70 libucrt:lcidtoname_downlevel.obj + 0002:00012c80 ??_C@_1O@NDKPBNNH@?$AAs?$AAm?$AAa?$AA?9?$AAs?$AAe@ 100abc80 libucrt:lcidtoname_downlevel.obj + 0002:00012c90 ??_C@_1O@PLLKBHAB@?$AAs?$AAm?$AAj?$AA?9?$AAn?$AAo@ 100abc90 libucrt:lcidtoname_downlevel.obj + 0002:00012ca0 ??_C@_1O@CLEPOGCA@?$AAs?$AAm?$AAj?$AA?9?$AAs?$AAe@ 100abca0 libucrt:lcidtoname_downlevel.obj + 0002:00012cb0 ??_C@_1O@DLGJGKMK@?$AAs?$AAm?$AAn?$AA?9?$AAf?$AAi@ 100abcb0 libucrt:lcidtoname_downlevel.obj + 0002:00012cc0 ??_C@_1O@OJDJGAJC@?$AAs?$AAm?$AAs?$AA?9?$AAf?$AAi@ 100abcc0 libucrt:lcidtoname_downlevel.obj + 0002:00012cd0 ??_C@_1M@BOFOGHPB@?$AAs?$AAq?$AA?9?$AAa?$AAl@ 100abcd0 libucrt:lcidtoname_downlevel.obj + 0002:00012cdc ??_C@_1BG@LJBBIPGB@?$AAs?$AAr?$AA?9?$AAb?$AAa?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100abcdc libucrt:lcidtoname_downlevel.obj + 0002:00012cf4 ??_C@_1BG@JLBENFOE@?$AAs?$AAr?$AA?9?$AAb?$AAa?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100abcf4 libucrt:lcidtoname_downlevel.obj + 0002:00012d0c ??_C@_1BG@KODPNHE@?$AAs?$AAr?$AA?9?$AAs?$AAp?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100abd0c libucrt:lcidtoname_downlevel.obj + 0002:00012d24 ??_C@_1BG@CIOGKHPB@?$AAs?$AAr?$AA?9?$AAs?$AAp?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100abd24 libucrt:lcidtoname_downlevel.obj + 0002:00012d3c ??_C@_1M@NGFJLMAC@?$AAs?$AAv?$AA?9?$AAf?$AAi@ 100abd3c libucrt:lcidtoname_downlevel.obj + 0002:00012d48 ??_C@_1M@MPJEJAJC@?$AAs?$AAv?$AA?9?$AAs?$AAe@ 100abd48 libucrt:lcidtoname_downlevel.obj + 0002:00012d54 ??_C@_1M@MPNDHLFK@?$AAs?$AAw?$AA?9?$AAk?$AAe@ 100abd54 libucrt:lcidtoname_downlevel.obj + 0002:00012d60 ??_C@_1O@KOHBJJI@?$AAs?$AAy?$AAr?$AA?9?$AAs?$AAy@ 100abd60 libucrt:lcidtoname_downlevel.obj + 0002:00012d70 ??_C@_1M@LDCEFHA@?$AAt?$AAa?$AA?9?$AAi?$AAn@ 100abd70 libucrt:lcidtoname_downlevel.obj + 0002:00012d7c ??_C@_1M@CNJOFAK@?$AAt?$AAe?$AA?9?$AAi?$AAn@ 100abd7c libucrt:lcidtoname_downlevel.obj + 0002:00012d88 ??_C@_1M@GNAECACD@?$AAt?$AAh?$AA?9?$AAt?$AAh@ 100abd88 libucrt:lcidtoname_downlevel.obj + 0002:00012d94 ??_C@_1M@CHBIHOJO@?$AAt?$AAn?$AA?9?$AAz?$AAa@ 100abd94 libucrt:lcidtoname_downlevel.obj + 0002:00012da0 ??_C@_1M@GCCMIGPJ@?$AAt?$AAr?$AA?9?$AAt?$AAr@ 100abda0 libucrt:lcidtoname_downlevel.obj + 0002:00012dac ??_C@_1M@CELMCNBK@?$AAt?$AAt?$AA?9?$AAr?$AAu@ 100abdac libucrt:lcidtoname_downlevel.obj + 0002:00012db8 ??_C@_1M@KLMCELGA@?$AAu?$AAk?$AA?9?$AAu?$AAa@ 100abdb8 libucrt:lcidtoname_downlevel.obj + 0002:00012dc4 ??_C@_1M@EPAJJAJF@?$AAu?$AAr?$AA?9?$AAp?$AAk@ 100abdc4 libucrt:lcidtoname_downlevel.obj + 0002:00012dd0 ??_C@_1BG@GEGPMCDJ@?$AAu?$AAz?$AA?9?$AAu?$AAz?$AA?9?$AAc?$AAy?$AAr?$AAl@ 100abdd0 libucrt:lcidtoname_downlevel.obj + 0002:00012de8 ??_C@_1BG@EGGKJILM@?$AAu?$AAz?$AA?9?$AAu?$AAz?$AA?9?$AAl?$AAa?$AAt?$AAn@ 100abde8 libucrt:lcidtoname_downlevel.obj + 0002:00012e00 ??_C@_1M@GFOCLFF@?$AAv?$AAi?$AA?9?$AAv?$AAn@ 100abe00 libucrt:lcidtoname_downlevel.obj + 0002:00012e0c ??_C@_1M@CPAMEDFI@?$AAx?$AAh?$AA?9?$AAz?$AAa@ 100abe0c libucrt:lcidtoname_downlevel.obj + 0002:00012e18 ??_C@_1O@EBKIFIGN@?$AAz?$AAh?$AA?9?$AAc?$AAh?$AAs@ 100abe18 libucrt:lcidtoname_downlevel.obj + 0002:00012e28 ??_C@_1O@NMHPGANE@?$AAz?$AAh?$AA?9?$AAc?$AAh?$AAt@ 100abe28 libucrt:lcidtoname_downlevel.obj + 0002:00012e38 ??_C@_1M@LPINJOMC@?$AAz?$AAh?$AA?9?$AAc?$AAn@ 100abe38 libucrt:lcidtoname_downlevel.obj + 0002:00012e44 ??_C@_1M@OCJEJODD@?$AAz?$AAh?$AA?9?$AAh?$AAk@ 100abe44 libucrt:lcidtoname_downlevel.obj + 0002:00012e50 ??_C@_1M@DNDLJINH@?$AAz?$AAh?$AA?9?$AAm?$AAo@ 100abe50 libucrt:lcidtoname_downlevel.obj + 0002:00012e5c ??_C@_1M@MBFDNDND@?$AAz?$AAh?$AA?9?$AAs?$AAg@ 100abe5c libucrt:lcidtoname_downlevel.obj + 0002:00012e68 ??_C@_1M@IMEPLEPE@?$AAz?$AAh?$AA?9?$AAt?$AAw@ 100abe68 libucrt:lcidtoname_downlevel.obj + 0002:00012e74 ??_C@_1M@BBGHNHJP@?$AAz?$AAu?$AA?9?$AAz?$AAa@ 100abe74 libucrt:lcidtoname_downlevel.obj + 0002:00012e80 ??_C@_01GBGANLPD@0@ 100abe80 libucrt:cfout.obj + 0002:00012e84 ??_C@_05DNEBIAHO@1?$CDINF@ 100abe84 libucrt:cfout.obj + 0002:00012e8c ??_C@_06IMKFLFPG@1?$CDQNAN@ 100abe8c libucrt:cfout.obj + 0002:00012e94 ??_C@_06PGGFOGJG@1?$CDSNAN@ 100abe94 libucrt:cfout.obj + 0002:00012e9c ??_C@_05PHHOCPM@1?$CDIND@ 100abe9c libucrt:cfout.obj + 0002:00012ea4 __days 100abea4 libucrt:days.obj + 0002:00012ed8 __lpdays 100abed8 libucrt:days.obj + 0002:00012f18 __DEFAULT_CW_in_mem 100abf18 libucrt:common.obj + 0002:00012f1a __pi_by_2_to_61 100abf1a libucrt:common.obj + 0002:00012f68 ??_C@_1BA@BALFACEM@?$AAC?$AAO?$AAN?$AAO?$AAU?$AAT?$AA$@ 100abf68 libucrt:initcon.obj + 0002:00012f90 __indefinite 100abf90 libucrt:87disp.obj + 0002:00012f9a __piby2 100abf9a libucrt:87disp.obj + 0002:00012fa4 __piby4 100abfa4 libucrt:87disp.obj + 0002:000130d0 __infinity 100ac0d0 libucrt:87tran.obj + 0002:000130da __minfinity 100ac0da libucrt:87tran.obj + 0002:000130e4 __logemax 100ac0e4 libucrt:87tran.obj + 0002:0001310a __OP_EXPjmptab 100ac10a libucrt:87tran.obj + 0002:00013130 ___acrt_log10_table_t 100ac130 libucrt:log10_tables.obj + 0002:00013540 ___acrt_log10_table_cb 100ac540 libucrt:log10_tables.obj + 0002:00013950 __real@3fe0000000000000 100ac950 libucrt:powhlp.obj + 0002:0001395c ??_7bad_function_call@std@@6B@ 100ac95c libcpmt:xthrow.obj + 0002:00013964 ??_C@_0BC@DPJNKNAF@bad?5function?5call@ 100ac964 libcpmt:xthrow.obj + 0002:0001397c ??_7logic_error@std@@6B@ 100ac97c libcpmt:xthrow.obj + 0002:00013988 ??_7invalid_argument@std@@6B@ 100ac988 libcpmt:xthrow.obj + 0002:00013994 ??_7length_error@std@@6B@ 100ac994 libcpmt:xthrow.obj + 0002:000139a0 ??_7out_of_range@std@@6B@ 100ac9a0 libcpmt:xthrow.obj + 0002:00013ec0 ??_C@_07IPNMCAN@success@ 100acec0 libcpmt:syserror.obj + 0002:00013ec8 ??_C@_0BN@LKKBCCDB@address?5family?5not?5supported@ 100acec8 libcpmt:syserror.obj + 0002:00013ee8 ??_C@_0P@LDMLAFHI@address?5in?5use@ 100acee8 libcpmt:syserror.obj + 0002:00013ef8 ??_C@_0BG@DHPCNBJB@address?5not?5available@ 100acef8 libcpmt:syserror.obj + 0002:00013f10 ??_C@_0BC@DFIBIBIL@already?5connected@ 100acf10 libcpmt:syserror.obj + 0002:00013f24 ??_C@_0BH@CAKOHOMI@argument?5list?5too?5long@ 100acf24 libcpmt:syserror.obj + 0002:00013f3c ??_C@_0BH@CGIMPKIM@argument?5out?5of?5domain@ 100acf3c libcpmt:syserror.obj + 0002:00013f54 ??_C@_0M@KGHGGJGL@bad?5address@ 100acf54 libcpmt:syserror.obj + 0002:00013f60 ??_C@_0BE@MPJPGCEO@bad?5file?5descriptor@ 100acf60 libcpmt:syserror.obj + 0002:00013f74 ??_C@_0M@PMMIEFCP@bad?5message@ 100acf74 libcpmt:syserror.obj + 0002:00013f80 ??_C@_0M@KPHOFDBE@broken?5pipe@ 100acf80 libcpmt:syserror.obj + 0002:00013f8c ??_C@_0BD@MGNDDEGM@connection?5aborted@ 100acf8c libcpmt:syserror.obj + 0002:00013fa0 ??_C@_0BP@KAIHPOGN@connection?5already?5in?5progress@ 100acfa0 libcpmt:syserror.obj + 0002:00013fc0 ??_C@_0BD@PJLIIJEL@connection?5refused@ 100acfc0 libcpmt:syserror.obj + 0002:00013fd4 ??_C@_0BB@IECNJNOI@connection?5reset@ 100acfd4 libcpmt:syserror.obj + 0002:00013fe8 ??_C@_0BC@PPHBOELF@cross?5device?5link@ 100acfe8 libcpmt:syserror.obj + 0002:00013ffc ??_C@_0BN@KDMIFEIP@destination?5address?5required@ 100acffc libcpmt:syserror.obj + 0002:0001401c ??_C@_0BI@NGCEHDD@device?5or?5resource?5busy@ 100ad01c libcpmt:syserror.obj + 0002:00014034 ??_C@_0BE@JIDOCPHM@directory?5not?5empty@ 100ad034 libcpmt:syserror.obj + 0002:00014048 ??_C@_0BI@BNCLIGPB@executable?5format?5error@ 100ad048 libcpmt:syserror.obj + 0002:00014060 ??_C@_0M@MIDIAGJP@file?5exists@ 100ad060 libcpmt:syserror.obj + 0002:0001406c ??_C@_0P@DNAJLBJK@file?5too?5large@ 100ad06c libcpmt:syserror.obj + 0002:0001407c ??_C@_0BC@EJHOMAAK@filename?5too?5long@ 100ad07c libcpmt:syserror.obj + 0002:00014090 ??_C@_0BH@KEFGLDAF@function?5not?5supported@ 100ad090 libcpmt:syserror.obj + 0002:000140a8 ??_C@_0BB@DHFDFGDM@host?5unreachable@ 100ad0a8 libcpmt:syserror.obj + 0002:000140bc ??_C@_0BD@JPHBMONG@identifier?5removed@ 100ad0bc libcpmt:syserror.obj + 0002:000140d0 ??_C@_0BG@CDNPAGJK@illegal?5byte?5sequence@ 100ad0d0 libcpmt:syserror.obj + 0002:000140e8 ??_C@_0CD@BNPLBMNA@inappropriate?5io?5control?5operat@ 100ad0e8 libcpmt:syserror.obj + 0002:0001410c ??_C@_0M@EGEKIIMP@interrupted@ 100ad10c libcpmt:syserror.obj + 0002:00014118 ??_C@_0BB@FCMFBGOM@invalid?5argument@ 100ad118 libcpmt:syserror.obj + 0002:0001412c ??_C@_0N@OHAFKDEK@invalid?5seek@ 100ad12c libcpmt:syserror.obj + 0002:0001413c ??_C@_08GLNPIFBN@io?5error@ 100ad13c libcpmt:syserror.obj + 0002:00014148 ??_C@_0P@FLLDBIDK@is?5a?5directory@ 100ad148 libcpmt:syserror.obj + 0002:00014158 ??_C@_0N@IFLPBIOP@message?5size@ 100ad158 libcpmt:syserror.obj + 0002:00014168 ??_C@_0N@KIIEAAIO@network?5down@ 100ad168 libcpmt:syserror.obj + 0002:00014178 ??_C@_0O@FNPDBHEE@network?5reset@ 100ad178 libcpmt:syserror.obj + 0002:00014188 ??_C@_0BE@IFNCKGE@network?5unreachable@ 100ad188 libcpmt:syserror.obj + 0002:0001419c ??_C@_0BA@PFFCAOFK@no?5buffer?5space@ 100ad19c libcpmt:syserror.obj + 0002:000141ac ??_C@_0BB@IEPBLJHK@no?5child?5process@ 100ad1ac libcpmt:syserror.obj + 0002:000141c0 ??_C@_07PLECNNKG@no?5link@ 100ad1c0 libcpmt:syserror.obj + 0002:000141c8 ??_C@_0BC@NJECKMKE@no?5lock?5available@ 100ad1c8 libcpmt:syserror.obj + 0002:000141dc ??_C@_0BF@PBGGPKKE@no?5message?5available@ 100ad1dc libcpmt:syserror.obj + 0002:000141f4 ??_C@_0L@EDOLMPAK@no?5message@ 100ad1f4 libcpmt:syserror.obj + 0002:00014200 ??_C@_0BD@EAMBFIDF@no?5protocol?5option@ 100ad200 libcpmt:syserror.obj + 0002:00014214 ??_C@_0BD@IJDJKDEA@no?5space?5on?5device@ 100ad214 libcpmt:syserror.obj + 0002:00014228 ??_C@_0BE@MKFDAFMP@no?5stream?5resources@ 100ad228 libcpmt:syserror.obj + 0002:0001423c ??_C@_0BK@IMCPHCBI@no?5such?5device?5or?5address@ 100ad23c libcpmt:syserror.obj + 0002:00014258 ??_C@_0P@FDINDDOK@no?5such?5device@ 100ad258 libcpmt:syserror.obj + 0002:00014268 ??_C@_0BK@NDOCBPGE@no?5such?5file?5or?5directory@ 100ad268 libcpmt:syserror.obj + 0002:00014284 ??_C@_0BA@ENLPPKBN@no?5such?5process@ 100ad284 libcpmt:syserror.obj + 0002:00014294 ??_C@_0BA@DOCPFFJG@not?5a?5directory@ 100ad294 libcpmt:syserror.obj + 0002:000142a4 ??_C@_0N@POEIPGGF@not?5a?5socket@ 100ad2a4 libcpmt:syserror.obj + 0002:000142b4 ??_C@_0N@LGAPMMPI@not?5a?5stream@ 100ad2b4 libcpmt:syserror.obj + 0002:000142c4 ??_C@_0O@GLMIBBEG@not?5connected@ 100ad2c4 libcpmt:syserror.obj + 0002:000142d4 ??_C@_0BC@ENOOLCNF@not?5enough?5memory@ 100ad2d4 libcpmt:syserror.obj + 0002:000142e8 ??_C@_0O@NHEDABJP@not?5supported@ 100ad2e8 libcpmt:syserror.obj + 0002:000142f8 ??_C@_0BD@MOLBPMEA@operation?5canceled@ 100ad2f8 libcpmt:syserror.obj + 0002:0001430c ??_C@_0BG@KDKHOPCO@operation?5in?5progress@ 100ad30c libcpmt:syserror.obj + 0002:00014324 ??_C@_0BI@OHIEJAAB@operation?5not?5permitted@ 100ad324 libcpmt:syserror.obj + 0002:0001433c ??_C@_0BI@LNEGIFLN@operation?5not?5supported@ 100ad33c libcpmt:syserror.obj + 0002:00014354 ??_C@_0BG@OEMDKMEE@operation?5would?5block@ 100ad354 libcpmt:syserror.obj + 0002:0001436c ??_C@_0L@BLPOFLNJ@owner?5dead@ 100ad36c libcpmt:syserror.obj + 0002:00014378 ??_C@_0BC@CIJDGCDI@permission?5denied@ 100ad378 libcpmt:syserror.obj + 0002:0001438c ??_C@_0P@FNPOCJBE@protocol?5error@ 100ad38c libcpmt:syserror.obj + 0002:0001439c ??_C@_0BH@JPPPLHJB@protocol?5not?5supported@ 100ad39c libcpmt:syserror.obj + 0002:000143b4 ??_C@_0BG@EICBIHDP@read?5only?5file?5system@ 100ad3b4 libcpmt:syserror.obj + 0002:000143cc ??_C@_0BO@BJBOMOEJ@resource?5deadlock?5would?5occur@ 100ad3cc libcpmt:syserror.obj + 0002:000143ec ??_C@_0BP@LKNGHENJ@resource?5unavailable?5try?5again@ 100ad3ec libcpmt:syserror.obj + 0002:0001440c ??_C@_0BE@GOIPJJHG@result?5out?5of?5range@ 100ad40c libcpmt:syserror.obj + 0002:00014420 ??_C@_0BG@MPLKFPAE@state?5not?5recoverable@ 100ad420 libcpmt:syserror.obj + 0002:00014438 ??_C@_0P@DIIFGFCG@stream?5timeout@ 100ad438 libcpmt:syserror.obj + 0002:00014448 ??_C@_0P@IPFDMIFL@text?5file?5busy@ 100ad448 libcpmt:syserror.obj + 0002:00014458 ??_C@_09KJPPMAOI@timed?5out@ 100ad458 libcpmt:syserror.obj + 0002:00014464 ??_C@_0BO@HACHBEKI@too?5many?5files?5open?5in?5system@ 100ad464 libcpmt:syserror.obj + 0002:00014484 ??_C@_0BE@GHAFMPAH@too?5many?5files?5open@ 100ad484 libcpmt:syserror.obj + 0002:00014498 ??_C@_0P@HCOMKFCC@too?5many?5links@ 100ad498 libcpmt:syserror.obj + 0002:000144a8 ??_C@_0BO@EFGOJEF@too?5many?5symbolic?5link?5levels@ 100ad4a8 libcpmt:syserror.obj + 0002:000144c8 ??_C@_0BA@KGKGOOJA@value?5too?5large@ 100ad4c8 libcpmt:syserror.obj + 0002:000144d8 ??_C@_0BE@MIEJDDNH@wrong?5protocol?5type@ 100ad4d8 libcpmt:syserror.obj + 0002:000144ec ??_C@_0O@BFJCFAAK@unknown?5error@ 100ad4ec libcpmt:syserror.obj + 0002:00014500 ??_7_Locimp@locale@std@@6B@ 100ad500 libcpmt:locale0.obj + 0002:0001450c ??_C@_01GFHCPBMG@C@ 100ad50c libcpmt:locale0.obj + 0002:00014510 ?_BADOFF@std@@3_JB 100ad510 libcpmt:ios.obj + 0002:0001456c ??_C@_01KDCPPGHE@r@ 100ad56c libcpmt:fiopen.obj + 0002:00014570 ??_C@_01NOFIACDB@w@ 100ad570 libcpmt:fiopen.obj + 0002:00014574 ??_C@_01MCMALHOG@a@ 100ad574 libcpmt:fiopen.obj + 0002:00014578 ??_C@_02JDPG@rb@ 100ad578 libcpmt:fiopen.obj + 0002:0001457c ??_C@_02GMLFBBN@wb@ 100ad57c libcpmt:fiopen.obj + 0002:00014580 ??_C@_02BOGAIONP@ab@ 100ad580 libcpmt:fiopen.obj + 0002:00014584 ??_C@_02CBLLGHLK@r?$CL@ 100ad584 libcpmt:fiopen.obj + 0002:00014588 ??_C@_02CHHAKFFB@w?$CL@ 100ad588 libcpmt:fiopen.obj + 0002:0001458c ??_C@_02DPNLHKJD@a?$CL@ 100ad58c libcpmt:fiopen.obj + 0002:00014590 ??_C@_03HMFOOINA@r?$CLb@ 100ad590 libcpmt:fiopen.obj + 0002:00014594 ??_C@_03ELIABIOC@w?$CLb@ 100ad594 libcpmt:fiopen.obj + 0002:00014598 ??_C@_03DOPCBAKB@a?$CLb@ 100ad598 libcpmt:fiopen.obj + 0002:0001459c ??_C@_02LGOGKLMG@wx@ 100ad59c libcpmt:fiopen.obj + 0002:000145a0 ??_C@_03PLKNOCDJ@w?$CLx@ 100ad5a0 libcpmt:fiopen.obj + 0002:000145a4 ??_C@_03IEOGFEHG@wbx@ 100ad5a4 libcpmt:fiopen.obj + 0002:000145a8 ??_C@_04KJKJPALC@w?$CLbx@ 100ad5a8 libcpmt:fiopen.obj + 0002:000146b0 ??_C@_1BK@MGMFAEKH@?$AAk?$AAe?$AAr?$AAn?$AAe?$AAl?$AA3?$AA2?$AA?4?$AAd?$AAl?$AAl@ 100ad6b0 libcpmt:winapisupp.obj + 0002:000146cc ??_C@_0BE@JOGNEJCI@GetCurrentPackageId@ 100ad6cc libcpmt:winapisupp.obj + 0002:00014784 ??_7type_info@@6B@ 100ad784 LIBCMT:std_type_info_static.obj + 0002:000147c0 __pDefaultRawDllMain 100ad7c0 LIBCMT:dll_dllmain.obj + 0002:000147c0 __pRawDllMain 100ad7c0 LIBCMT:dll_dllmain.obj + 0002:000147e0 __xmm@00000000000000000000000000000000 100ad7e0 libvcruntime:wcschr.obj + 0002:00014870 ?ccs@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100ad870 libucrt:openfile.obj + 0002:00014874 ?utf8_encoding@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100ad874 libucrt:openfile.obj + 0002:0001487c ?utf16_encoding@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100ad87c libucrt:openfile.obj + 0002:00014884 ?unicode_encoding@?1???$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z@4QBDB 100ad884 libucrt:openfile.obj + 0002:0001488b __Asan_string_should_annotate 100ad88b libcpmt:asan_noop.obj + 0002:0001488b __Asan_string_should_annotate_default 100ad88b libcpmt:asan_noop.obj + 0002:0001488c __Asan_vector_should_annotate_default 100ad88c libcpmt:asan_noop.obj + 0002:00014890 ??_C@_04NOJCDH@?$CF02x?$AA@ 100ad890 udis86:udis86.obj + 0002:00014898 ??_C@_04GOMEICPF@far?5?$AA@ 100ad898 udis86:syn-intel.obj + 0002:000148a0 ??_C@_05MAAGGIBB@byte?5?$AA@ 100ad8a0 udis86:syn-intel.obj + 0002:000148a8 ??_C@_05FIBEKMPA@word?5?$AA@ 100ad8a8 udis86:syn-intel.obj + 0002:000148b0 ??_C@_06LEDLKNL@dword?5?$AA@ 100ad8b0 udis86:syn-intel.obj + 0002:000148b8 ??_C@_06DOKFAJLC@qword?5?$AA@ 100ad8b8 udis86:syn-intel.obj + 0002:000148c0 ??_C@_06GMJNCGBF@tword?5?$AA@ 100ad8c0 udis86:syn-intel.obj + 0002:000148c8 ??_C@_06JEEOOCB@oword?5?$AA@ 100ad8c8 udis86:syn-intel.obj + 0002:000148d0 ??_C@_06NEKEHNF@yword?5?$AA@ 100ad8d0 udis86:syn-intel.obj + 0002:000148d8 ??_C@_02DKCKIIND@?$CFs?$AA@ 100ad8d8 udis86:syn-intel.obj + 0002:000148dc ??_C@_01OHGJGJJP@?$FL?$AA@ 100ad8dc udis86:syn-intel.obj + 0002:000148e0 ??_C@_03DKEJHHJP@?$CFs?3?$AA@ 100ad8e0 udis86:syn-intel.obj + 0002:000148e4 ??_C@_01MIFGBAGJ@?$CL?$AA@ 100ad8e4 udis86:syn-intel.obj + 0002:000148e6 ??_C@_00CNPNBAHC@?$AA@ 100ad8e6 udis86:syn-intel.obj + 0002:000148e8 ??_C@_04HDOCAJNK@?$CFs?$CFs?$AA@ 100ad8e8 udis86:syn-intel.obj + 0002:000148f0 ??_C@_03COCDEFBB@?$CK?$CFd?$AA@ 100ad8f0 udis86:syn-intel.obj + 0002:000148f4 ??_C@_01LBDDMOBJ@?$FN?$AA@ 100ad8f4 udis86:syn-intel.obj + 0002:000148f8 ??_C@_0P@CGOKHBFO@word?50x?$CFx?30x?$CFx?$AA@ 100ad8f8 udis86:syn-intel.obj + 0002:00014908 ??_C@_0BA@PAPCPIOM@dword?50x?$CFx?30x?$CFx?$AA@ 100ad908 udis86:syn-intel.obj + 0002:00014918 ??_C@_02DPKJAMEF@?$CFd?$AA@ 100ad918 udis86:syn-intel.obj + 0002:0001491c ??_C@_04HCEKKKGN@o32?5?$AA@ 100ad91c udis86:syn-intel.obj + 0002:00014924 ??_C@_04NPEKMKDK@o16?5?$AA@ 100ad924 udis86:syn-intel.obj + 0002:0001492c ??_C@_04MNHKBEAM@a32?5?$AA@ 100ad92c udis86:syn-intel.obj + 0002:00014934 ??_C@_04GAHKHEFL@a16?5?$AA@ 100ad934 udis86:syn-intel.obj + 0002:0001493c ??_C@_03IKGEINEE@?$CFs?5?$AA@ 100ad93c udis86:syn-intel.obj + 0002:00014940 ??_C@_05NCPMCJGP@lock?5?$AA@ 100ad940 udis86:syn-intel.obj + 0002:00014948 ??_C@_04HHECPAIO@rep?5?$AA@ 100ad948 udis86:syn-intel.obj + 0002:00014950 ??_C@_05OJKCIHFO@repe?5?$AA@ 100ad950 udis86:syn-intel.obj + 0002:00014958 ??_C@_06LIOODCPM@repne?5?$AA@ 100ad958 udis86:syn-intel.obj + 0002:00014960 ??_C@_01CLKCMJKC@?5?$AA@ 100ad960 udis86:syn-intel.obj + 0002:00014964 ??_C@_02KEGNLNML@?0?5?$AA@ 100ad964 udis86:syn-intel.obj + 0002:00014968 _ud_mnemonics_str 100ad968 udis86:itab.obj + 0002:00015798 ??_C@_06KMJLBAPP@opctbl?$AA@ 100ae798 udis86:itab.obj + 0002:000157a0 ??_C@_02ODPMDCNK@?1m?$AA@ 100ae7a0 udis86:itab.obj + 0002:000157a4 ??_C@_04NPNKCMIL@?1reg?$AA@ 100ae7a4 udis86:itab.obj + 0002:000157ac ??_C@_04PBBKLNFH@?1mod?$AA@ 100ae7ac udis86:itab.obj + 0002:000157b4 ??_C@_03KBMMDGFP@?1rm?$AA@ 100ae7b4 udis86:itab.obj + 0002:000157b8 ??_C@_07KBMOBFIF@?1vendor?$AA@ 100ae7b8 udis86:itab.obj + 0002:000157c0 ??_C@_06ENDGCOGG@?13dnow?$AA@ 100ae7c0 udis86:itab.obj + 0002:000157c8 ??_C@_04ENPLPGKO@?1sse?$AA@ 100ae7c8 udis86:itab.obj + 0002:000157d0 ??_C@_02NBMKFAFI@?1o?$AA@ 100ae7d0 udis86:itab.obj + 0002:000157d4 ??_C@_04JNOCLFEC@?1vex?$AA@ 100ae7d4 udis86:itab.obj + 0002:000157dc ??_C@_05FBAHOGKC@?1vexl?$AA@ 100ae7dc udis86:itab.obj + 0002:000157e4 ??_C@_05PIDBCNDI@?1vexw?$AA@ 100ae7e4 udis86:itab.obj + 0002:000157ec ??_C@_04GOLICMFI@?1x87?$AA@ 100ae7ec udis86:itab.obj + 0002:000157f4 ??_C@_02EPEJHNNG@?1a?$AA@ 100ae7f4 udis86:itab.obj + 0002:000157f8 ??_C@_03GINCELHE@aaa?$AA@ 100ae7f8 udis86:itab.obj + 0002:000157fc ??_C@_03BFKFLPDB@aad?$AA@ 100ae7fc udis86:itab.obj + 0002:00015800 ??_C@_03MEGHAEHI@aam?$AA@ 100ae800 udis86:itab.obj + 0002:00015804 ??_C@_03BACGDLKH@aas?$AA@ 100ae804 udis86:itab.obj + 0002:00015808 ??_C@_03FMCPOLBN@adc?$AA@ 100ae808 udis86:itab.obj + 0002:0001580c ??_C@_03BDGOHNNK@add?$AA@ 100ae80c udis86:itab.obj + 0002:00015810 ??_C@_05DPFIJ@addpd?$AA@ 100ae810 udis86:itab.obj + 0002:00015818 ??_C@_05FIAHBBP@addps?$AA@ 100ae818 udis86:itab.obj + 0002:00015820 ??_C@_05CEFELNA@addsd?$AA@ 100ae820 udis86:itab.obj + 0002:00015828 ??_C@_05HMGMPEG@addss?$AA@ 100ae828 udis86:itab.obj + 0002:00015830 ??_C@_08BHNFBKK@addsubpd?$AA@ 100ae830 udis86:itab.obj + 0002:0001583c ??_C@_08EPONFDM@addsubps?$AA@ 100ae83c udis86:itab.obj + 0002:00015848 ??_C@_06BNJBDCNN@aesdec?$AA@ 100ae848 udis86:itab.obj + 0002:00015850 ??_C@_0L@DKDBOHOJ@aesdeclast?$AA@ 100ae850 udis86:itab.obj + 0002:0001585c ??_C@_06KJHILKFJ@aesenc?$AA@ 100ae85c udis86:itab.obj + 0002:00015864 ??_C@_0L@PEJMLDIN@aesenclast?$AA@ 100ae864 udis86:itab.obj + 0002:00015870 ??_C@_06OBOILLLI@aesimc?$AA@ 100ae870 udis86:itab.obj + 0002:00015878 ??_C@_0BA@BKBPMOOB@aeskeygenassist?$AA@ 100ae878 udis86:itab.obj + 0002:00015888 ??_C@_03BOPJPIAM@and?$AA@ 100ae888 udis86:itab.obj + 0002:0001588c ??_C@_06JPIHJOLE@andnpd?$AA@ 100ae88c udis86:itab.obj + 0002:00015894 ??_C@_06JKAEBKCC@andnps?$AA@ 100ae894 udis86:itab.obj + 0002:0001589c ??_C@_05EKLDONCI@andpd?$AA@ 100ae89c udis86:itab.obj + 0002:000158a4 ??_C@_05EPDAGJLO@andps?$AA@ 100ae8a4 udis86:itab.obj + 0002:000158ac ??_C@_04MBAAHCPD@arpl?$AA@ 100ae8ac udis86:itab.obj + 0002:000158b4 ??_C@_07NLBKFAKD@blendpd?$AA@ 100ae8b4 udis86:itab.obj + 0002:000158bc ??_C@_07NOJJNEDF@blendps?$AA@ 100ae8bc udis86:itab.obj + 0002:000158c4 ??_C@_08HANBBCNB@blendvpd?$AA@ 100ae8c4 udis86:itab.obj + 0002:000158d0 ??_C@_08HFFCJGEH@blendvps?$AA@ 100ae8d0 udis86:itab.obj + 0002:000158dc ??_C@_05PFKAILG@bound?$AA@ 100ae8dc udis86:itab.obj + 0002:000158e4 ??_C@_03CKIEAFED@bsf?$AA@ 100ae8e4 udis86:itab.obj + 0002:000158e8 ??_C@_03ECKNCBG@bsr?$AA@ 100ae8e8 udis86:itab.obj + 0002:000158ec ??_C@_05CFLBCKNG@bswap?$AA@ 100ae8ec udis86:itab.obj + 0002:000158f4 ??_C@_02LOIFFB@bt?$AA@ 100ae8f4 udis86:itab.obj + 0002:000158f8 ??_C@_03FCLMOHID@btc?$AA@ 100ae8f8 udis86:itab.obj + 0002:000158fc ??_C@_03BGFMEJD@btr?$AA@ 100ae8fc udis86:itab.obj + 0002:00015900 ??_C@_03BIHOPFNC@bts?$AA@ 100ae900 udis86:itab.obj + 0002:00015904 ??_C@_04OMFAIDPG@call?$AA@ 100ae904 udis86:itab.obj + 0002:0001590c ??_C@_03NMAFIIHB@cbw?$AA@ 100ae90c udis86:itab.obj + 0002:00015910 ??_C@_03IONCFDEF@cdq?$AA@ 100ae910 udis86:itab.obj + 0002:00015914 ??_C@_04BOLCPIKO@cdqe?$AA@ 100ae914 udis86:itab.obj + 0002:0001591c ??_C@_03PIDFHCCO@clc?$AA@ 100ae91c udis86:itab.obj + 0002:00015920 ??_C@_03LHHEOEOJ@cld?$AA@ 100ae920 udis86:itab.obj + 0002:00015924 ??_C@_07KNLCLAFM@clflush?$AA@ 100ae924 udis86:itab.obj + 0002:0001592c ??_C@_04GPBIEAIP@clgi?$AA@ 100ae92c udis86:itab.obj + 0002:00015934 ??_C@_03CNKJKKE@cli?$AA@ 100ae934 udis86:itab.obj + 0002:00015938 ??_C@_04MBFFKHHN@clts?$AA@ 100ae938 udis86:itab.obj + 0002:00015940 ??_C@_03PJPHBIBJ@cmc?$AA@ 100ae940 udis86:itab.obj + 0002:00015944 ??_C@_05OOCADJAF@cmova?$AA@ 100ae944 udis86:itab.obj + 0002:0001594c ??_C@_06GIAOELFE@cmovae?$AA@ 100ae94c udis86:itab.obj + 0002:00015954 ??_C@_05MFANGKMG@cmovb?$AA@ 100ae954 udis86:itab.obj + 0002:0001595c ??_C@_06GKEIPFAN@cmovbe?$AA@ 100ae95c udis86:itab.obj + 0002:00015964 ??_C@_05LIHKJOID@cmovg?$AA@ 100ae964 udis86:itab.obj + 0002:0001596c ??_C@_06GMIDDHOG@cmovge?$AA@ 100ae96c udis86:itab.obj + 0002:00015974 ??_C@_05FLIOEHEI@cmovl?$AA@ 100ae974 udis86:itab.obj + 0002:0001597c ??_C@_06GANGNIAH@cmovle?$AA@ 100ae97c udis86:itab.obj + 0002:00015984 ??_C@_06JJLNOEOD@cmovno?$AA@ 100ae984 udis86:itab.obj + 0002:0001598c ??_C@_06FEOHOKHN@cmovnp?$AA@ 100ae98c udis86:itab.obj + 0002:00015994 ??_C@_06HPMKLJLO@cmovns?$AA@ 100ae994 udis86:itab.obj + 0002:0001599c ??_C@_06KOAIACPH@cmovnz?$AA@ 100ae99c udis86:itab.obj + 0002:000159a4 ??_C@_05HAKDBEIL@cmovo?$AA@ 100ae9a4 udis86:itab.obj + 0002:000159ac ??_C@_05LNPJBKBF@cmovp?$AA@ 100ae9ac udis86:itab.obj + 0002:000159b4 ??_C@_05JGNEEJNG@cmovs?$AA@ 100ae9b4 udis86:itab.obj + 0002:000159bc ??_C@_05EHBGPCJP@cmovz?$AA@ 100ae9bc udis86:itab.obj + 0002:000159c4 ??_C@_03JIBIFJIL@cmp?$AA@ 100ae9c4 udis86:itab.obj + 0002:000159c8 ??_C@_05JPKAPGDL@cmppd?$AA@ 100ae9c8 udis86:itab.obj + 0002:000159d0 ??_C@_05JKCDHCKN@cmpps?$AA@ 100ae9d0 udis86:itab.obj + 0002:000159d8 ??_C@_05MLLMOPOE@cmpsb?$AA@ 100ae9d8 udis86:itab.obj + 0002:000159e0 ??_C@_05JNOGEIGC@cmpsd?$AA@ 100ae9e0 udis86:itab.obj + 0002:000159e8 ??_C@_05KKFDKOHG@cmpsq?$AA@ 100ae9e8 udis86:itab.obj + 0002:000159f0 ??_C@_05JIGFMMPE@cmpss?$AA@ 100ae9f0 udis86:itab.obj + 0002:000159f8 ??_C@_05PMAJAJPA@cmpsw?$AA@ 100ae9f8 udis86:itab.obj + 0002:00015a00 ??_C@_07KJLDDDDB@cmpxchg?$AA@ 100aea00 udis86:itab.obj + 0002:00015a08 ??_C@_0L@LMBAAHML@cmpxchg16b?$AA@ 100aea08 udis86:itab.obj + 0002:00015a14 ??_C@_09EDOHCBK@cmpxchg8b?$AA@ 100aea14 udis86:itab.obj + 0002:00015a20 ??_C@_06FBMFLIKJ@comisd?$AA@ 100aea20 udis86:itab.obj + 0002:00015a28 ??_C@_06FEEGDMDP@comiss?$AA@ 100aea28 udis86:itab.obj + 0002:00015a30 ??_C@_05CDPJMNMF@cpuid?$AA@ 100aea30 udis86:itab.obj + 0002:00015a38 ??_C@_03EAHOANAB@cqo?$AA@ 100aea38 udis86:itab.obj + 0002:00015a3c ??_C@_05KBIBMHFC@crc32?$AA@ 100aea3c udis86:itab.obj + 0002:00015a44 ??_C@_08FGJFEIPF@cvtdq2pd?$AA@ 100aea44 udis86:itab.obj + 0002:00015a50 ??_C@_08FDBGMMGD@cvtdq2ps?$AA@ 100aea50 udis86:itab.obj + 0002:00015a5c ??_C@_08EKEIPNDC@cvtpd2dq?$AA@ 100aea5c udis86:itab.obj + 0002:00015a68 ??_C@_08NDHMGOMH@cvtpd2pi?$AA@ 100aea68 udis86:itab.obj + 0002:00015a74 ??_C@_08GDFBJEBM@cvtpd2ps?$AA@ 100aea74 udis86:itab.obj + 0002:00015a80 ??_C@_08JOECNEDL@cvtpi2pd?$AA@ 100aea80 udis86:itab.obj + 0002:00015a8c ??_C@_08JLMBFAKN@cvtpi2ps?$AA@ 100aea8c udis86:itab.obj + 0002:00015a98 ??_C@_08JIIILGKA@cvtps2dq?$AA@ 100aea98 udis86:itab.obj + 0002:00015aa4 ??_C@_08LEBCFLBI@cvtps2pd?$AA@ 100aeaa4 udis86:itab.obj + 0002:00015ab0 ??_C@_08BLMCFFF@cvtps2pi?$AA@ 100aeab0 udis86:itab.obj + 0002:00015abc ??_C@_08FHKOKCDA@cvtsd2si?$AA@ 100aeabc udis86:itab.obj + 0002:00015ac8 ??_C@_08OHIDFIOL@cvtsd2ss?$AA@ 100aeac8 udis86:itab.obj + 0002:00015ad4 ??_C@_08BKJABIMM@cvtsi2sd?$AA@ 100aead4 udis86:itab.obj + 0002:00015ae0 ??_C@_08BPBDJMFK@cvtsi2ss?$AA@ 100aeae0 udis86:itab.obj + 0002:00015aec ??_C@_08DAMAJHOP@cvtss2sd?$AA@ 100aeaec udis86:itab.obj + 0002:00015af8 ??_C@_08IFGOOJKC@cvtss2si?$AA@ 100aeaf8 udis86:itab.obj + 0002:00015b04 ??_C@_09NBGJDONK@cvttpd2dq?$AA@ 100aeb04 udis86:itab.obj + 0002:00015b10 ??_C@_09EIFNKNCP@cvttpd2pi?$AA@ 100aeb10 udis86:itab.obj + 0002:00015b1c ??_C@_09DKJHFEI@cvttps2dq?$AA@ 100aeb1c udis86:itab.obj + 0002:00015b28 ??_C@_09JKJNOGLN@cvttps2pi?$AA@ 100aeb28 udis86:itab.obj + 0002:00015b34 ??_C@_09MMIPGBNI@cvttsd2si?$AA@ 100aeb34 udis86:itab.obj + 0002:00015b40 ??_C@_09BOEPCKEK@cvttss2si?$AA@ 100aeb40 udis86:itab.obj + 0002:00015b4c ??_C@_03KHAHKIHI@cwd?$AA@ 100aeb4c udis86:itab.obj + 0002:00015b50 ??_C@_04EGPDGBEE@cwde?$AA@ 100aeb50 udis86:itab.obj + 0002:00015b58 ??_C@_03FPAMLLEG@daa?$AA@ 100aeb58 udis86:itab.obj + 0002:00015b5c ??_C@_03CHPIMLJF@das?$AA@ 100aeb5c udis86:itab.obj + 0002:00015b60 ??_C@_03GKDDHBBI@dec?$AA@ 100aeb60 udis86:itab.obj + 0002:00015b64 ??_C@_03FEJMGOGI@div?$AA@ 100aeb64 udis86:itab.obj + 0002:00015b68 ??_C@_05FCEODPJP@divpd?$AA@ 100aeb68 udis86:itab.obj + 0002:00015b70 ??_C@_05FHMNLLAJ@divps?$AA@ 100aeb70 udis86:itab.obj + 0002:00015b78 ??_C@_05FAAIIBMG@divsd?$AA@ 100aeb78 udis86:itab.obj + 0002:00015b80 ??_C@_05FFILAFFA@divss?$AA@ 100aeb80 udis86:itab.obj + 0002:00015b88 ??_C@_04GLDALPAA@dppd?$AA@ 100aeb88 udis86:itab.obj + 0002:00015b90 ??_C@_04GOLDDLJG@dpps?$AA@ 100aeb90 udis86:itab.obj + 0002:00015b98 ??_C@_04OFFOKNEH@emms?$AA@ 100aeb98 udis86:itab.obj + 0002:00015ba0 ??_C@_05IHEOCMON@enter?$AA@ 100aeba0 udis86:itab.obj + 0002:00015ba8 ??_C@_09JKKJMDNE@extractps?$AA@ 100aeba8 udis86:itab.obj + 0002:00015bb4 ??_C@_05GDKIIOEP@f2xm1?$AA@ 100aebb4 udis86:itab.obj + 0002:00015bbc ??_C@_04ODHECPBC@fabs?$AA@ 100aebbc udis86:itab.obj + 0002:00015bc4 ??_C@_04OCHKNHDG@fadd?$AA@ 100aebc4 udis86:itab.obj + 0002:00015bcc ??_C@_05OAGHJGLI@faddp?$AA@ 100aebcc udis86:itab.obj + 0002:00015bd4 ??_C@_04PONMCJGA@fbld?$AA@ 100aebd4 udis86:itab.obj + 0002:00015bdc ??_C@_05HGCPCADO@fbstp?$AA@ 100aebdc udis86:itab.obj + 0002:00015be4 ??_C@_04EEOKGCEP@fchs?$AA@ 100aebe4 udis86:itab.obj + 0002:00015bec ??_C@_05JGAIANAI@fclex?$AA@ 100aebec udis86:itab.obj + 0002:00015bf4 ??_C@_06BMFGNME@fcmovb?$AA@ 100aebf4 udis86:itab.obj + 0002:00015bfc ??_C@_07IEICFMCG@fcmovbe?$AA@ 100aebfc udis86:itab.obj + 0002:00015c04 ??_C@_06EOIEPLAD@fcmove?$AA@ 100aec04 udis86:itab.obj + 0002:00015c0c ??_C@_07MCNJDDIF@fcmovnb?$AA@ 100aec0c udis86:itab.obj + 0002:00015c14 ??_C@_08IFJKDBHO@fcmovnbe?$AA@ 100aec14 udis86:itab.obj + 0002:00015c20 ??_C@_07INJIKFEC@fcmovne?$AA@ 100aec20 udis86:itab.obj + 0002:00015c28 ??_C@_07MHFKLHBD@fcmovnu?$AA@ 100aec28 udis86:itab.obj + 0002:00015c30 ??_C@_06EEGOJFC@fcmovu?$AA@ 100aec30 udis86:itab.obj + 0002:00015c38 ??_C@_04JFOEELBF@fcom?$AA@ 100aec38 udis86:itab.obj + 0002:00015c40 ??_C@_05IADIFENB@fcom2?$AA@ 100aec40 udis86:itab.obj + 0002:00015c48 ??_C@_05NJHHNAEO@fcomi?$AA@ 100aec48 udis86:itab.obj + 0002:00015c50 ??_C@_06LOICGCLB@fcomip?$AA@ 100aec50 udis86:itab.obj + 0002:00015c58 ??_C@_05ECHHHJFG@fcomp?$AA@ 100aec58 udis86:itab.obj + 0002:00015c60 ??_C@_06HGCBOGII@fcomp3?$AA@ 100aec60 udis86:itab.obj + 0002:00015c68 ??_C@_06CAHLEBAO@fcomp5?$AA@ 100aec68 udis86:itab.obj + 0002:00015c70 ??_C@_06KNHFPKEO@fcompp?$AA@ 100aec70 udis86:itab.obj + 0002:00015c78 ??_C@_04EBKFHEMK@fcos?$AA@ 100aec78 udis86:itab.obj + 0002:00015c80 ??_C@_07HAEGMECA@fdecstp?$AA@ 100aec80 udis86:itab.obj + 0002:00015c88 ??_C@_04KFIIMEIE@fdiv?$AA@ 100aec88 udis86:itab.obj + 0002:00015c90 ??_C@_05MFEPLGAL@fdivp?$AA@ 100aec90 udis86:itab.obj + 0002:00015c98 ??_C@_05PHHJNEIJ@fdivr?$AA@ 100aec98 udis86:itab.obj + 0002:00015ca0 ??_C@_06LLKMDLKG@fdivrp?$AA@ 100aeca0 udis86:itab.obj + 0002:00015ca8 ??_C@_05EMBDBHLO@femms?$AA@ 100aeca8 udis86:itab.obj + 0002:00015cb0 ??_C@_05BBECMOMI@ffree?$AA@ 100aecb0 udis86:itab.obj + 0002:00015cb8 ??_C@_06LKJBHBLK@ffreep?$AA@ 100aecb8 udis86:itab.obj + 0002:00015cc0 ??_C@_05MJGHPKBO@fiadd?$AA@ 100aecc0 udis86:itab.obj + 0002:00015cc8 ??_C@_05LOPJGGDN@ficom?$AA@ 100aecc8 udis86:itab.obj + 0002:00015cd0 ??_C@_06HHOJMMIB@ficomp?$AA@ 100aecd0 udis86:itab.obj + 0002:00015cd8 ??_C@_05IOJFOJKM@fidiv?$AA@ 100aecd8 udis86:itab.obj + 0002:00015ce0 ??_C@_06MCOHGBFO@fidivr?$AA@ 100aece0 udis86:itab.obj + 0002:00015ce8 ??_C@_04CJNNKOGB@fild?$AA@ 100aece8 udis86:itab.obj + 0002:00015cf0 ??_C@_05FGIMAGOJ@fimul?$AA@ 100aecf0 udis86:itab.obj + 0002:00015cf8 ??_C@_07HLFGFFCD@fincstp?$AA@ 100aecf8 udis86:itab.obj + 0002:00015d00 ??_C@_04HEGFFIHN@fist?$AA@ 100aed00 udis86:itab.obj + 0002:00015d08 ??_C@_05BPPBBCP@fistp?$AA@ 100aed08 udis86:itab.obj + 0002:00015d10 ??_C@_06IDOGBDGC@fisttp?$AA@ 100aed10 udis86:itab.obj + 0002:00015d18 ??_C@_05HIMJALML@fisub?$AA@ 100aed18 udis86:itab.obj + 0002:00015d20 ??_C@_06BBMHMJEH@fisubr?$AA@ 100aed20 udis86:itab.obj + 0002:00015d28 ??_C@_03IAKKBENL@fld?$AA@ 100aed28 udis86:itab.obj + 0002:00015d2c ??_C@_04NHNMKGPK@fld1?$AA@ 100aed2c udis86:itab.obj + 0002:00015d34 ??_C@_05FCPJNCEL@fldcw?$AA@ 100aed34 udis86:itab.obj + 0002:00015d3c ??_C@_06KOKFHIJJ@fldenv?$AA@ 100aed3c udis86:itab.obj + 0002:00015d44 ??_C@_06NHOEKBFF@fldl2e?$AA@ 100aed44 udis86:itab.obj + 0002:00015d4c ??_C@_06IEDNICEF@fldl2t?$AA@ 100aed4c udis86:itab.obj + 0002:00015d54 ??_C@_06EIGJIGJN@fldlg2?$AA@ 100aed54 udis86:itab.obj + 0002:00015d5c ??_C@_06EHLILNBC@fldln2?$AA@ 100aed5c udis86:itab.obj + 0002:00015d64 ??_C@_05JINIPALN@fldpi?$AA@ 100aed64 udis86:itab.obj + 0002:00015d6c ??_C@_04MEFBDADE@fldz?$AA@ 100aed6c udis86:itab.obj + 0002:00015d74 ??_C@_04HNJBCLMB@fmul?$AA@ 100aed74 udis86:itab.obj + 0002:00015d7c ??_C@_05MDCBBKPL@fmulp?$AA@ 100aed7c udis86:itab.obj + 0002:00015d84 ??_C@_06HABPFIJH@fndisi?$AA@ 100aed84 udis86:itab.obj + 0002:00015d8c ??_C@_05EMBMEKMC@fneni?$AA@ 100aed8c udis86:itab.obj + 0002:00015d94 ??_C@_06PLIFOOCF@fninit?$AA@ 100aed94 udis86:itab.obj + 0002:00015d9c ??_C@_04JIOCPPNE@fnop?$AA@ 100aed9c udis86:itab.obj + 0002:00015da4 ??_C@_06MNBFLGAN@fnsave?$AA@ 100aeda4 udis86:itab.obj + 0002:00015dac ??_C@_07OLELHDDB@fnsetpm?$AA@ 100aedac udis86:itab.obj + 0002:00015db4 ??_C@_06MIMLAAOI@fnstcw?$AA@ 100aedb4 udis86:itab.obj + 0002:00015dbc ??_C@_07OBOALIBJ@fnstenv?$AA@ 100aedbc udis86:itab.obj + 0002:00015dc4 ??_C@_06NEONKDJI@fnstsw?$AA@ 100aedc4 udis86:itab.obj + 0002:00015dcc ??_C@_06HDLDNKJH@fpatan?$AA@ 100aedcc udis86:itab.obj + 0002:00015dd4 ??_C@_05DGDLCGOC@fprem?$AA@ 100aedd4 udis86:itab.obj + 0002:00015ddc ??_C@_06IIGPLPMA@fprem1?$AA@ 100aeddc udis86:itab.obj + 0002:00015de4 ??_C@_05DPHEICCB@fptan?$AA@ 100aede4 udis86:itab.obj + 0002:00015dec ??_C@_07OGNGBFFO@frndint?$AA@ 100aedec udis86:itab.obj + 0002:00015df4 ??_C@_06MILCMPCJ@frstor?$AA@ 100aedf4 udis86:itab.obj + 0002:00015dfc ??_C@_06BCJCCFPK@frstpm?$AA@ 100aedfc udis86:itab.obj + 0002:00015e04 ??_C@_06DAMBGGM@fscale?$AA@ 100aee04 udis86:itab.obj + 0002:00015e0c ??_C@_04OKFNDDPL@fsin?$AA@ 100aee0c udis86:itab.obj + 0002:00015e14 ??_C@_07DGCKCKGH@fsincos?$AA@ 100aee14 udis86:itab.obj + 0002:00015e1c ??_C@_05OBEHOPDB@fsqrt?$AA@ 100aee1c udis86:itab.obj + 0002:00015e24 ??_C@_03NNBCOCMH@fst?$AA@ 100aee24 udis86:itab.obj + 0002:00015e28 ??_C@_04CKOCDMAH@fstp?$AA@ 100aee28 udis86:itab.obj + 0002:00015e30 ??_C@_05FIBDHACN@fstp1?$AA@ 100aee30 udis86:itab.obj + 0002:00015e38 ??_C@_05IJNBMLGE@fstp8?$AA@ 100aee38 udis86:itab.obj + 0002:00015e40 ??_C@_05JAMKPKCF@fstp9?$AA@ 100aee40 udis86:itab.obj + 0002:00015e48 ??_C@_04FDNECGOD@fsub?$AA@ 100aee48 udis86:itab.obj + 0002:00015e50 ??_C@_05BGGPBOBC@fsubp?$AA@ 100aee50 udis86:itab.obj + 0002:00015e58 ??_C@_05CEFJHMJA@fsubr?$AA@ 100aee58 udis86:itab.obj + 0002:00015e60 ??_C@_06NPBELDMO@fsubrp?$AA@ 100aee60 udis86:itab.obj + 0002:00015e68 ??_C@_04NGBGNHDP@ftst?$AA@ 100aee68 udis86:itab.obj + 0002:00015e70 ??_C@_05BLOJBMLO@fucom?$AA@ 100aee70 udis86:itab.obj + 0002:00015e78 ??_C@_06JIPNKHHJ@fucomi?$AA@ 100aee78 udis86:itab.obj + 0002:00015e80 ??_C@_07GHOENMJ@fucomip?$AA@ 100aee80 udis86:itab.obj + 0002:00015e88 ??_C@_06DPNAOGB@fucomp?$AA@ 100aee88 udis86:itab.obj + 0002:00015e90 ??_C@_07BFIJNFDG@fucompp?$AA@ 100aee90 udis86:itab.obj + 0002:00015e98 ??_C@_04BIGCLGIB@fxam?$AA@ 100aee98 udis86:itab.obj + 0002:00015ea0 ??_C@_04GGJBJGKK@fxch?$AA@ 100aeea0 udis86:itab.obj + 0002:00015ea8 ??_C@_05INEPCIJH@fxch4?$AA@ 100aeea8 udis86:itab.obj + 0002:00015eb0 ??_C@_05KGGCHLFE@fxch7?$AA@ 100aeeb0 udis86:itab.obj + 0002:00015eb8 ??_C@_07BBJJIBJB@fxrstor?$AA@ 100aeeb8 udis86:itab.obj + 0002:00015ec0 ??_C@_06BIJKFHIL@fxsave?$AA@ 100aeec0 udis86:itab.obj + 0002:00015ec8 ??_C@_07MCCHLCHD@fxtract?$AA@ 100aeec8 udis86:itab.obj + 0002:00015ed0 ??_C@_05NFKLLKBO@fyl2x?$AA@ 100aeed0 udis86:itab.obj + 0002:00015ed8 ??_C@_07GNFJNPAE@fyl2xp1?$AA@ 100aeed8 udis86:itab.obj + 0002:00015ee0 ??_C@_06BKPLENB@getsec?$AA@ 100aeee0 udis86:itab.obj + 0002:00015ee8 ??_C@_06JEPEIJNG@haddpd?$AA@ 100aeee8 udis86:itab.obj + 0002:00015ef0 ??_C@_06JBHHANEA@haddps?$AA@ 100aeef0 udis86:itab.obj + 0002:00015ef8 ??_C@_03CKLHHBLJ@hlt?$AA@ 100aeef8 udis86:itab.obj + 0002:00015efc ??_C@_06KCABMLKI@hsubpd?$AA@ 100aeefc udis86:itab.obj + 0002:00015f04 ??_C@_06KHICEPDO@hsubps?$AA@ 100aef04 udis86:itab.obj + 0002:00015f0c ??_C@_04CHNIFDFF@idiv?$AA@ 100aef0c udis86:itab.obj + 0002:00015f14 ??_C@_04PPMBLMBA@imul?$AA@ 100aef14 udis86:itab.obj + 0002:00015f1c ??_C@_02LMMGJAGL@in?$AA@ 100aef1c udis86:itab.obj + 0002:00015f20 ??_C@_03JEAMEGCE@inc?$AA@ 100aef20 udis86:itab.obj + 0002:00015f24 ??_C@_04HHHKECMC@insb?$AA@ 100aef24 udis86:itab.obj + 0002:00015f2c ??_C@_04CBCAOFEE@insd?$AA@ 100aef2c udis86:itab.obj + 0002:00015f34 ??_C@_08JOECPMHJ@insertps?$AA@ 100aef34 udis86:itab.obj + 0002:00015f40 ??_C@_04EAMPKENG@insw?$AA@ 100aef40 udis86:itab.obj + 0002:00015f48 ??_C@_03JBIPMCLC@int?$AA@ 100aef48 udis86:itab.obj + 0002:00015f4c ??_C@_04ODKDFKNA@int1?$AA@ 100aef4c udis86:itab.obj + 0002:00015f54 ??_C@_04NBJFDIFC@int3?$AA@ 100aef54 udis86:itab.obj + 0002:00015f5c ??_C@_04MHJLCKAK@into?$AA@ 100aef5c udis86:itab.obj + 0002:00015f64 ??_C@_04CHOLCHKP@invd?$AA@ 100aef64 udis86:itab.obj + 0002:00015f6c ??_C@_06CLILIBGB@invept?$AA@ 100aef6c udis86:itab.obj + 0002:00015f74 ??_C@_06DHGMIPHJ@invlpg?$AA@ 100aef74 udis86:itab.obj + 0002:00015f7c ??_C@_07FFAIPPPB@invlpga?$AA@ 100aef7c udis86:itab.obj + 0002:00015f84 ??_C@_07ILBKJJN@invvpid?$AA@ 100aef84 udis86:itab.obj + 0002:00015f8c ??_C@_05LMEFNKHP@iretd?$AA@ 100aef8c udis86:itab.obj + 0002:00015f94 ??_C@_05ILPADMGL@iretq?$AA@ 100aef94 udis86:itab.obj + 0002:00015f9c ??_C@_05NNKKJLON@iretw?$AA@ 100aef9c udis86:itab.obj + 0002:00015fa4 ??_C@_02DJBIDCPN@ja?$AA@ 100aefa4 udis86:itab.obj + 0002:00015fa8 ??_C@_03NLLPAJHB@jae?$AA@ 100aefa8 udis86:itab.obj + 0002:00015fac ??_C@_02BCDFGBDO@jb?$AA@ 100aefac udis86:itab.obj + 0002:00015fb0 ??_C@_03NJPJLHCI@jbe?$AA@ 100aefb0 udis86:itab.obj + 0002:00015fb4 ??_C@_04EMPOJHHH@jcxz?$AA@ 100aefb4 udis86:itab.obj + 0002:00015fbc ??_C@_05BACBHKCE@jecxz?$AA@ 100aefbc udis86:itab.obj + 0002:00015fc4 ??_C@_02GPECJFHL@jg?$AA@ 100aefc4 udis86:itab.obj + 0002:00015fc8 ??_C@_03NPDCHFMD@jge?$AA@ 100aefc8 udis86:itab.obj + 0002:00015fcc ??_C@_02IMLGEMLA@jl?$AA@ 100aefcc udis86:itab.obj + 0002:00015fd0 ??_C@_03NDGHJKCC@jle?$AA@ 100aefd0 udis86:itab.obj + 0002:00015fd4 ??_C@_03OFBABGAB@jmp?$AA@ 100aefd4 udis86:itab.obj + 0002:00015fd8 ??_C@_03CKAMKGMG@jno?$AA@ 100aefd8 udis86:itab.obj + 0002:00015fdc ??_C@_03OHFGKIFI@jnp?$AA@ 100aefdc udis86:itab.obj + 0002:00015fe0 ??_C@_03MMHLPLJL@jns?$AA@ 100aefe0 udis86:itab.obj + 0002:00015fe4 ??_C@_03BNLJEANC@jnz?$AA@ 100aefe4 udis86:itab.obj + 0002:00015fe8 ??_C@_02KHJLBPHD@jo?$AA@ 100aefe8 udis86:itab.obj + 0002:00015fec ??_C@_02GKMBBBON@jp?$AA@ 100aefec udis86:itab.obj + 0002:00015ff0 ??_C@_05MCOBDBLG@jrcxz?$AA@ 100aeff0 udis86:itab.obj + 0002:00015ff8 ??_C@_02EBOMECCO@js?$AA@ 100aeff8 udis86:itab.obj + 0002:00015ffc ??_C@_02JACOPJGH@jz?$AA@ 100aeffc udis86:itab.obj + 0002:00016000 ??_C@_04JDOGFEHB@lahf?$AA@ 100af000 udis86:itab.obj + 0002:00016008 ??_C@_03PLFHNCDL@lar?$AA@ 100af008 udis86:itab.obj + 0002:0001600c ??_C@_05OOIGKPHA@lddqu?$AA@ 100af00c udis86:itab.obj + 0002:00016014 ??_C@_07HNIFNPIO@ldmxcsr?$AA@ 100af014 udis86:itab.obj + 0002:0001601c ??_C@_03OEIHCBJB@lds?$AA@ 100af01c udis86:itab.obj + 0002:00016020 ??_C@_03JNLBDLHF@lea?$AA@ 100af020 udis86:itab.obj + 0002:00016024 ??_C@_05KLLFHCCG@leave?$AA@ 100af024 udis86:itab.obj + 0002:0001602c ??_C@_03OFEFELKG@les?$AA@ 100af02c udis86:itab.obj + 0002:00016030 ??_C@_06CIBIHIMB@lfence?$AA@ 100af030 udis86:itab.obj + 0002:00016038 ??_C@_03OHADPFPP@lfs?$AA@ 100af038 udis86:itab.obj + 0002:0001603c ??_C@_04MHGDICBK@lgdt?$AA@ 100af03c udis86:itab.obj + 0002:00016044 ??_C@_03OGMBJPMI@lgs?$AA@ 100af044 udis86:itab.obj + 0002:00016048 ??_C@_04CHLMPFCJ@lidt?$AA@ 100af048 udis86:itab.obj + 0002:00016050 ??_C@_04BAGCAFBL@lldt?$AA@ 100af050 udis86:itab.obj + 0002:00016058 ??_C@_04JKJKIEEI@lmsw?$AA@ 100af058 udis86:itab.obj + 0002:00016060 ??_C@_04MKMCLCOO@lock?$AA@ 100af060 udis86:itab.obj + 0002:00016068 ??_C@_05JPFBMOJJ@lodsb?$AA@ 100af068 udis86:itab.obj + 0002:00016070 ??_C@_05MJALGJBP@lodsd?$AA@ 100af070 udis86:itab.obj + 0002:00016078 ??_C@_05POLOIPAL@lodsq?$AA@ 100af078 udis86:itab.obj + 0002:00016080 ??_C@_05KIOECIIN@lodsw?$AA@ 100af080 udis86:itab.obj + 0002:00016088 ??_C@_04GKOOIABA@loop?$AA@ 100af088 udis86:itab.obj + 0002:00016090 ??_C@_05FFHGBAG@loope?$AA@ 100af090 udis86:itab.obj + 0002:00016098 ??_C@_06PNLJICFH@loopne?$AA@ 100af098 udis86:itab.obj + 0002:000160a0 ??_C@_03DALEJKPK@lsl?$AA@ 100af0a0 udis86:itab.obj + 0002:000160a4 ??_C@_03PNOOJEGE@lss?$AA@ 100af0a4 udis86:itab.obj + 0002:000160a8 ??_C@_03OBLKLDKA@ltr?$AA@ 100af0a8 udis86:itab.obj + 0002:000160ac ??_C@_0L@KDNMNDNK@maskmovdqu?$AA@ 100af0ac udis86:itab.obj + 0002:000160b8 ??_C@_08HDJHBAFE@maskmovq?$AA@ 100af0b8 udis86:itab.obj + 0002:000160c4 ??_C@_05KFOOFCKF@maxpd?$AA@ 100af0c4 udis86:itab.obj + 0002:000160cc ??_C@_05KAGNNGDD@maxps?$AA@ 100af0cc udis86:itab.obj + 0002:000160d4 ??_C@_05KHKIOMPM@maxsd?$AA@ 100af0d4 udis86:itab.obj + 0002:000160dc ??_C@_05KCCLGIGK@maxss?$AA@ 100af0dc udis86:itab.obj + 0002:000160e4 ??_C@_06IOGPHDHF@mfence?$AA@ 100af0e4 udis86:itab.obj + 0002:000160ec ??_C@_05OAOMBBCH@minpd?$AA@ 100af0ec udis86:itab.obj + 0002:000160f4 ??_C@_05OFGPJFLB@minps?$AA@ 100af0f4 udis86:itab.obj + 0002:000160fc ??_C@_05OCKKKPHO@minsd?$AA@ 100af0fc udis86:itab.obj + 0002:00016104 ??_C@_05OHCJCLOI@minss?$AA@ 100af104 udis86:itab.obj + 0002:0001610c ??_C@_07LAMOHCEE@monitor?$AA@ 100af10c udis86:itab.obj + 0002:00016114 ??_C@_07MAFPCABL@montmul?$AA@ 100af114 udis86:itab.obj + 0002:0001611c ??_C@_03CNBJFNFA@mov?$AA@ 100af11c udis86:itab.obj + 0002:00016120 ??_C@_06NBDIPDNB@movapd?$AA@ 100af120 udis86:itab.obj + 0002:00016128 ??_C@_06NELLHHEH@movaps?$AA@ 100af128 udis86:itab.obj + 0002:00016130 ??_C@_05PMLINNKI@movbe?$AA@ 100af130 udis86:itab.obj + 0002:00016138 ??_C@_04GKNHOGAK@movd?$AA@ 100af138 udis86:itab.obj + 0002:00016140 ??_C@_07NEEFCFLI@movddup?$AA@ 100af140 udis86:itab.obj + 0002:00016148 ??_C@_07NPEMCIBB@movdq2q?$AA@ 100af148 udis86:itab.obj + 0002:00016150 ??_C@_06JKFDJNJB@movdqa?$AA@ 100af150 udis86:itab.obj + 0002:00016158 ??_C@_06LEPNEKME@movdqu?$AA@ 100af158 udis86:itab.obj + 0002:00016160 ??_C@_07PJOHHBHO@movhlps?$AA@ 100af160 udis86:itab.obj + 0002:00016168 ??_C@_06KMDALMFL@movhpd?$AA@ 100af168 udis86:itab.obj + 0002:00016170 ??_C@_06KJLDDIMN@movhps?$AA@ 100af170 udis86:itab.obj + 0002:00016178 ??_C@_07IDAFEAOJ@movlhps?$AA@ 100af178 udis86:itab.obj + 0002:00016180 ??_C@_06CDFCCLAM@movlpd?$AA@ 100af180 udis86:itab.obj + 0002:00016188 ??_C@_06CGNBKPJK@movlps?$AA@ 100af188 udis86:itab.obj + 0002:00016190 ??_C@_08IBPGOKMO@movmskpd?$AA@ 100af190 udis86:itab.obj + 0002:0001619c ??_C@_08IEHFGOFI@movmskps?$AA@ 100af19c udis86:itab.obj + 0002:000161a8 ??_C@_07MKBDJCIA@movntdq?$AA@ 100af1a8 udis86:itab.obj + 0002:000161b0 ??_C@_08JBJEMKFE@movntdqa?$AA@ 100af1b0 udis86:itab.obj + 0002:000161bc ??_C@_06DLPMDFBG@movnti?$AA@ 100af1bc udis86:itab.obj + 0002:000161c4 ??_C@_07OGIJHPDI@movntpd?$AA@ 100af1c4 udis86:itab.obj + 0002:000161cc ??_C@_07ODAKPLKO@movntps?$AA@ 100af1cc udis86:itab.obj + 0002:000161d4 ??_C@_06LJOHKNEP@movntq?$AA@ 100af1d4 udis86:itab.obj + 0002:000161dc ??_C@_04FNGCAABO@movq?$AA@ 100af1dc udis86:itab.obj + 0002:000161e4 ??_C@_07JGNMJFDC@movq2dq?$AA@ 100af1e4 udis86:itab.obj + 0002:000161ec ??_C@_05KOBNICCI@movsb?$AA@ 100af1ec udis86:itab.obj + 0002:000161f4 ??_C@_05PIEHCFKO@movsd?$AA@ 100af1f4 udis86:itab.obj + 0002:000161fc ??_C@_08NPBMCKFO@movshdup?$AA@ 100af1fc udis86:itab.obj + 0002:00016208 ??_C@_08CKJMIMJO@movsldup?$AA@ 100af208 udis86:itab.obj + 0002:00016214 ??_C@_05MPPCMDLK@movsq?$AA@ 100af214 udis86:itab.obj + 0002:0001621c ??_C@_05PNMEKBDI@movss?$AA@ 100af21c udis86:itab.obj + 0002:00016224 ??_C@_05JJKIGEDM@movsw?$AA@ 100af224 udis86:itab.obj + 0002:0001622c ??_C@_05BODAHIPD@movsx?$AA@ 100af22c udis86:itab.obj + 0002:00016234 ??_C@_06CFDLDNHN@movsxd?$AA@ 100af234 udis86:itab.obj + 0002:0001623c ??_C@_06OEDDDBJ@movupd?$AA@ 100af23c udis86:itab.obj + 0002:00016244 ??_C@_06LMALHIP@movups?$AA@ 100af244 udis86:itab.obj + 0002:0001624c ??_C@_05BBOBEDHM@movzx?$AA@ 100af24c udis86:itab.obj + 0002:00016254 ??_C@_07ILNGPEGO@mpsadbw?$AA@ 100af254 udis86:itab.obj + 0002:0001625c ??_C@_03IMIFIBCN@mul?$AA@ 100af25c udis86:itab.obj + 0002:00016260 ??_C@_05OPPFKDCP@mulpd?$AA@ 100af260 udis86:itab.obj + 0002:00016268 ??_C@_05OKHGCHLJ@mulps?$AA@ 100af268 udis86:itab.obj + 0002:00016270 ??_C@_05ONLDBNHG@mulsd?$AA@ 100af270 udis86:itab.obj + 0002:00016278 ??_C@_05OIDAJJOA@mulss?$AA@ 100af278 udis86:itab.obj + 0002:00016280 ??_C@_05DOGKKCDM@mwait?$AA@ 100af280 udis86:itab.obj + 0002:00016288 ??_C@_03GBOCFEHI@neg?$AA@ 100af288 udis86:itab.obj + 0002:0001628c ??_C@_03GJPGFFDI@nop?$AA@ 100af28c udis86:itab.obj + 0002:00016290 ??_C@_03NJKJADM@not?$AA@ 100af290 udis86:itab.obj + 0002:00016294 ??_C@_02FODMLBIE@or?$AA@ 100af294 udis86:itab.obj + 0002:00016298 ??_C@_04LGOJEGJK@orpd?$AA@ 100af298 udis86:itab.obj + 0002:000162a0 ??_C@_04LDGKMCAM@orps?$AA@ 100af2a0 udis86:itab.obj + 0002:000162a8 ??_C@_03KEJHNBPP@out?$AA@ 100af2a8 udis86:itab.obj + 0002:000162ac ??_C@_05GDIMGEIL@outsb?$AA@ 100af2ac udis86:itab.obj + 0002:000162b4 ??_C@_05DFNGMDAN@outsd?$AA@ 100af2b4 udis86:itab.obj + 0002:000162bc ??_C@_05FEDJICJP@outsw?$AA@ 100af2bc udis86:itab.obj + 0002:000162c4 ??_C@_05HBBOONME@pabsb?$AA@ 100af2c4 udis86:itab.obj + 0002:000162cc ??_C@_05CHEEEKEC@pabsd?$AA@ 100af2cc udis86:itab.obj + 0002:000162d4 ??_C@_05EGKLALNA@pabsw?$AA@ 100af2d4 udis86:itab.obj + 0002:000162dc ??_C@_08MFCBDIOA@packssdw?$AA@ 100af2dc udis86:itab.obj + 0002:000162e8 ??_C@_08OMPEMDNN@packsswb?$AA@ 100af2e8 udis86:itab.obj + 0002:000162f4 ??_C@_08EKGBMNEA@packusdw?$AA@ 100af2f4 udis86:itab.obj + 0002:00016300 ??_C@_08GDLEDGHN@packuswb?$AA@ 100af300 udis86:itab.obj + 0002:0001630c ??_C@_05ENBMAHON@paddb?$AA@ 100af30c udis86:itab.obj + 0002:00016314 ??_C@_05BLEGKAGL@paddd?$AA@ 100af314 udis86:itab.obj + 0002:0001631c ??_C@_05CMPDEGHP@paddq?$AA@ 100af31c udis86:itab.obj + 0002:00016324 ??_C@_06JENJECKA@paddsb?$AA@ 100af324 udis86:itab.obj + 0002:0001632c ??_C@_06KDGMKELE@paddsw?$AA@ 100af32c udis86:itab.obj + 0002:00016334 ??_C@_07LJAGOFBE@paddusb?$AA@ 100af334 udis86:itab.obj + 0002:0001633c ??_C@_07IOLDADAA@paddusw?$AA@ 100af33c udis86:itab.obj + 0002:00016344 ??_C@_05HKKJOBPJ@paddw?$AA@ 100af344 udis86:itab.obj + 0002:0001634c ??_C@_07JOJBOKO@palignr?$AA@ 100af34c udis86:itab.obj + 0002:00016354 ??_C@_04ENDAMC@pand?$AA@ 100af354 udis86:itab.obj + 0002:0001635c ??_C@_05IOBEKIIF@pandn?$AA@ 100af35c udis86:itab.obj + 0002:00016364 ??_C@_05LFEKCGKA@pavgb?$AA@ 100af364 udis86:itab.obj + 0002:0001636c ??_C@_07LALIDMFE@pavgusb?$AA@ 100af36c udis86:itab.obj + 0002:00016374 ??_C@_05ICPPMALE@pavgw?$AA@ 100af374 udis86:itab.obj + 0002:0001637c ??_C@_08PKEFIDIF@pblendvb?$AA@ 100af37c udis86:itab.obj + 0002:00016388 ??_C@_07PABJNHCL@pblendw?$AA@ 100af388 udis86:itab.obj + 0002:00016390 ??_C@_09EPKDNNCN@pclmulqdq?$AA@ 100af390 udis86:itab.obj + 0002:0001639c ??_C@_07MPGLBHEG@pcmpeqb?$AA@ 100af39c udis86:itab.obj + 0002:000163a4 ??_C@_07JJDBLAMA@pcmpeqd?$AA@ 100af3a4 udis86:itab.obj + 0002:000163ac ??_C@_07KOIEFGNE@pcmpeqq?$AA@ 100af3ac udis86:itab.obj + 0002:000163b4 ??_C@_07PINOPBFC@pcmpeqw?$AA@ 100af3b4 udis86:itab.obj + 0002:000163bc ??_C@_09MJAIJFNM@pcmpestri?$AA@ 100af3bc udis86:itab.obj + 0002:000163c8 ??_C@_09KNGEFANI@pcmpestrm?$AA@ 100af3c8 udis86:itab.obj + 0002:000163d4 ??_C@_07GDKJBNCG@pcmpgtb?$AA@ 100af3d4 udis86:itab.obj + 0002:000163dc ??_C@_07DFPDLKKA@pcmpgtd?$AA@ 100af3dc udis86:itab.obj + 0002:000163e4 ??_C@_07CEGFMLE@pcmpgtq?$AA@ 100af3e4 udis86:itab.obj + 0002:000163ec ??_C@_07FEBMPLDC@pcmpgtw?$AA@ 100af3ec udis86:itab.obj + 0002:000163f4 ??_C@_09LOMKFFKH@pcmpistri?$AA@ 100af3f4 udis86:itab.obj + 0002:00016400 ??_C@_09NKKGJAKD@pcmpistrm?$AA@ 100af400 udis86:itab.obj + 0002:0001640c ??_C@_06PLIDEHJN@pextrb?$AA@ 100af40c udis86:itab.obj + 0002:00016414 ??_C@_06KNNJOABL@pextrd?$AA@ 100af414 udis86:itab.obj + 0002:0001641c ??_C@_06JKGMAGAP@pextrq?$AA@ 100af41c udis86:itab.obj + 0002:00016424 ??_C@_06MMDGKBIJ@pextrw?$AA@ 100af424 udis86:itab.obj + 0002:0001642c ??_C@_05EPNILPFG@pf2id?$AA@ 100af42c udis86:itab.obj + 0002:00016434 ??_C@_05CODHPOME@pf2iw?$AA@ 100af434 udis86:itab.obj + 0002:0001643c ??_C@_05NELGAMAL@pfacc?$AA@ 100af43c udis86:itab.obj + 0002:00016444 ??_C@_05JOLIIMEJ@pfadd?$AA@ 100af444 udis86:itab.obj + 0002:0001644c ??_C@_07CCCOOHDB@pfcmpeq?$AA@ 100af44c udis86:itab.obj + 0002:00016454 ??_C@_07PAEOEAK@pfcmpge?$AA@ 100af454 udis86:itab.obj + 0002:0001645c ??_C@_07FMNNMHBK@pfcmpgt?$AA@ 100af45c udis86:itab.obj + 0002:00016464 ??_C@_05DENCKMEH@pfmax?$AA@ 100af464 udis86:itab.obj + 0002:0001646c ??_C@_05CGFJEICI@pfmin?$AA@ 100af46c udis86:itab.obj + 0002:00016474 ??_C@_05BFDHALO@pfmul?$AA@ 100af474 udis86:itab.obj + 0002:0001647c ??_C@_06PBIPAILK@pfnacc?$AA@ 100af47c udis86:itab.obj + 0002:00016484 ??_C@_07HEBANBEP@pfpnacc?$AA@ 100af484 udis86:itab.obj + 0002:0001648c ??_C@_05PHPFLFOI@pfrcp?$AA@ 100af48c udis86:itab.obj + 0002:00016494 ??_C@_08CABPKCDG@pfrcpit1?$AA@ 100af494 udis86:itab.obj + 0002:000164a0 ??_C@_08LDCPBPF@pfrcpit2?$AA@ 100af4a0 udis86:itab.obj + 0002:000164ac ??_C@_08BOKJIJBN@pfrsqit1?$AA@ 100af4ac udis86:itab.obj + 0002:000164b8 ??_C@_07OJNGDJDJ@pfrsqrt?$AA@ 100af4b8 udis86:itab.obj + 0002:000164c0 ??_C@_05CPBGHNJM@pfsub?$AA@ 100af4c0 udis86:itab.obj + 0002:000164c8 ??_C@_06OEJPNCGG@pfsubr?$AA@ 100af4c8 udis86:itab.obj + 0002:000164d0 ??_C@_06DEAFIOGL@phaddd?$AA@ 100af4d0 udis86:itab.obj + 0002:000164d8 ??_C@_07KDEDOHJK@phaddsw?$AA@ 100af4d8 udis86:itab.obj + 0002:000164e0 ??_C@_06FFOKMPPJ@phaddw?$AA@ 100af4e0 udis86:itab.obj + 0002:000164e8 ??_C@_0L@EKOFBFBK@phminposuw?$AA@ 100af4e8 udis86:itab.obj + 0002:000164f4 ??_C@_06MCANAGMB@phsubd?$AA@ 100af4f4 udis86:itab.obj + 0002:000164fc ??_C@_07JFLGKFOE@phsubsw?$AA@ 100af4fc udis86:itab.obj + 0002:00016504 ??_C@_06KDOCEHFD@phsubw?$AA@ 100af504 udis86:itab.obj + 0002:0001650c ??_C@_05MGNEGPLK@pi2fd?$AA@ 100af50c udis86:itab.obj + 0002:00016514 ??_C@_05KHDLCOCI@pi2fw?$AA@ 100af514 udis86:itab.obj + 0002:0001651c ??_C@_06PODGNNHN@pinsrb?$AA@ 100af51c udis86:itab.obj + 0002:00016524 ??_C@_06KIGMHKPL@pinsrd?$AA@ 100af524 udis86:itab.obj + 0002:0001652c ??_C@_06JPNJJMOP@pinsrq?$AA@ 100af52c udis86:itab.obj + 0002:00016534 ??_C@_06MJIDDLGJ@pinsrw?$AA@ 100af534 udis86:itab.obj + 0002:0001653c ??_C@_09CBBJJIHC@pmaddubsw?$AA@ 100af53c udis86:itab.obj + 0002:00016548 ??_C@_07JHJNCBHD@pmaddwd?$AA@ 100af548 udis86:itab.obj + 0002:00016550 ??_C@_06DBDEOFIM@pmaxsb?$AA@ 100af550 udis86:itab.obj + 0002:00016558 ??_C@_06GHGOECAK@pmaxsd?$AA@ 100af558 udis86:itab.obj + 0002:00016560 ??_C@_06GIBADJI@pmaxsw?$AA@ 100af560 udis86:itab.obj + 0002:00016568 ??_C@_06DFLJJJDO@pmaxub?$AA@ 100af568 udis86:itab.obj + 0002:00016570 ??_C@_06GDODDOLI@pmaxud?$AA@ 100af570 udis86:itab.obj + 0002:00016578 ??_C@_06CAMHPCK@pmaxuw?$AA@ 100af578 udis86:itab.obj + 0002:00016580 ??_C@_06HEDGKGAO@pminsb?$AA@ 100af580 udis86:itab.obj + 0002:00016588 ??_C@_06CCGMABII@pminsd?$AA@ 100af588 udis86:itab.obj + 0002:00016590 ??_C@_06EDIDEABK@pminsw?$AA@ 100af590 udis86:itab.obj + 0002:00016598 ??_C@_06HALLNKLM@pminub?$AA@ 100af598 udis86:itab.obj + 0002:000165a0 ??_C@_06CGOBHNDK@pminud?$AA@ 100af5a0 udis86:itab.obj + 0002:000165a8 ??_C@_06EHAODMKI@pminuw?$AA@ 100af5a8 udis86:itab.obj + 0002:000165b0 ??_C@_08JFPNOFE@pmovmskb?$AA@ 100af5b0 udis86:itab.obj + 0002:000165bc ??_C@_08FIAFOMLP@pmovsxbd?$AA@ 100af5bc udis86:itab.obj + 0002:000165c8 ??_C@_08GPLAAKKL@pmovsxbq?$AA@ 100af5c8 udis86:itab.obj + 0002:000165d4 ??_C@_08DJOKKNCN@pmovsxbw?$AA@ 100af5d4 udis86:itab.obj + 0002:000165e0 ??_C@_08GLDNHGBJ@pmovsxdq?$AA@ 100af5e0 udis86:itab.obj + 0002:000165ec ??_C@_08ECOIINCE@pmovsxwd?$AA@ 100af5ec udis86:itab.obj + 0002:000165f8 ??_C@_08HFFNGLDA@pmovsxwq?$AA@ 100af5f8 udis86:itab.obj + 0002:00016604 ??_C@_08FFBFIOMO@pmovzxbd?$AA@ 100af604 udis86:itab.obj + 0002:00016610 ??_C@_08GCKAGINK@pmovzxbq?$AA@ 100af610 udis86:itab.obj + 0002:0001661c ??_C@_08DEPKMPFM@pmovzxbw?$AA@ 100af61c udis86:itab.obj + 0002:00016628 ??_C@_08GGCNBEGI@pmovzxdq?$AA@ 100af628 udis86:itab.obj + 0002:00016634 ??_C@_08EPPIOPFF@pmovzxwd?$AA@ 100af634 udis86:itab.obj + 0002:00016640 ??_C@_08HIENAJEB@pmovzxwq?$AA@ 100af640 udis86:itab.obj + 0002:0001664c ??_C@_06DKJOAGB@pmuldq?$AA@ 100af64c udis86:itab.obj + 0002:00016654 ??_C@_08DNGAMAOA@pmulhrsw?$AA@ 100af654 udis86:itab.obj + 0002:00016660 ??_C@_07BCFIBGPO@pmulhrw?$AA@ 100af660 udis86:itab.obj + 0002:00016668 ??_C@_07BHBHAAHL@pmulhuw?$AA@ 100af668 udis86:itab.obj + 0002:00016670 ??_C@_06FMOJLOID@pmulhw?$AA@ 100af670 udis86:itab.obj + 0002:00016678 ??_C@_06DKAPFHMN@pmulld?$AA@ 100af678 udis86:itab.obj + 0002:00016680 ??_C@_06FLOABGFP@pmullw?$AA@ 100af680 udis86:itab.obj + 0002:00016688 ??_C@_07PONKOBPI@pmuludq?$AA@ 100af688 udis86:itab.obj + 0002:00016690 ??_C@_03NJDAHFJE@pop?$AA@ 100af690 udis86:itab.obj + 0002:00016694 ??_C@_04ILFNDNMO@popa?$AA@ 100af694 udis86:itab.obj + 0002:0001669c ??_C@_05HNMGBMCJ@popad?$AA@ 100af69c udis86:itab.obj + 0002:000166a4 ??_C@_06KOACKPNP@popcnt?$AA@ 100af6a4 udis86:itab.obj + 0002:000166ac ??_C@_05HIIJAKKM@popfd?$AA@ 100af6ac udis86:itab.obj + 0002:000166b4 ??_C@_05EPDMOMLI@popfq?$AA@ 100af6b4 udis86:itab.obj + 0002:000166bc ??_C@_05BJGGELDO@popfw?$AA@ 100af6bc udis86:itab.obj + 0002:000166c4 ??_C@_03OLAGBHBG@por?$AA@ 100af6c4 udis86:itab.obj + 0002:000166c8 ??_C@_08FCDJGKEM@prefetch?$AA@ 100af6c8 udis86:itab.obj + 0002:000166d4 ??_C@_0M@ENHAGFIJ@prefetchnta?$AA@ 100af6d4 udis86:itab.obj + 0002:000166e0 ??_C@_0L@HNBFCMAJ@prefetcht0?$AA@ 100af6e0 udis86:itab.obj + 0002:000166ec ??_C@_0L@GEAOBNEI@prefetcht1?$AA@ 100af6ec udis86:itab.obj + 0002:000166f8 ??_C@_0L@EPCDEOIL@prefetcht2?$AA@ 100af6f8 udis86:itab.obj + 0002:00016704 ??_C@_06DIHGEBBD@psadbw?$AA@ 100af704 udis86:itab.obj + 0002:0001670c ??_C@_06ONHPFNFA@pshufb?$AA@ 100af70c udis86:itab.obj + 0002:00016714 ??_C@_06LLCFPKNG@pshufd?$AA@ 100af714 udis86:itab.obj + 0002:0001671c ??_C@_07GGPEEEO@pshufhw?$AA@ 100af71c udis86:itab.obj + 0002:00016724 ??_C@_07BGGOMJC@pshuflw?$AA@ 100af724 udis86:itab.obj + 0002:0001672c ??_C@_06NKMKLLEE@pshufw?$AA@ 100af72c udis86:itab.obj + 0002:00016734 ??_C@_06CEBMLKEM@psignb?$AA@ 100af734 udis86:itab.obj + 0002:0001673c ??_C@_06HCEGBNMK@psignd?$AA@ 100af73c udis86:itab.obj + 0002:00016744 ??_C@_06BDKJFMFI@psignw?$AA@ 100af744 udis86:itab.obj + 0002:0001674c ??_C@_05MKMBBNNO@pslld?$AA@ 100af74c udis86:itab.obj + 0002:00016754 ??_C@_06FHIFHGHJ@pslldq?$AA@ 100af754 udis86:itab.obj + 0002:0001675c ??_C@_05PNHEPLMK@psllq?$AA@ 100af75c udis86:itab.obj + 0002:00016764 ??_C@_05KLCOFMEM@psllw?$AA@ 100af764 udis86:itab.obj + 0002:0001676c ??_C@_05HCNPKOCB@psrad?$AA@ 100af76c udis86:itab.obj + 0002:00016774 ??_C@_05BDDAOPLD@psraw?$AA@ 100af774 udis86:itab.obj + 0002:0001677c ??_C@_05HKAHDNHC@psrld?$AA@ 100af77c udis86:itab.obj + 0002:00016784 ??_C@_06IIFFFPJK@psrldq?$AA@ 100af784 udis86:itab.obj + 0002:0001678c ??_C@_05ENLCNLGG@psrlq?$AA@ 100af78c udis86:itab.obj + 0002:00016794 ??_C@_05BLOIHMOA@psrlw?$AA@ 100af794 udis86:itab.obj + 0002:0001679c ??_C@_05LLBEIPEH@psubb?$AA@ 100af79c udis86:itab.obj + 0002:000167a4 ??_C@_05ONEOCIMB@psubd?$AA@ 100af7a4 udis86:itab.obj + 0002:000167ac ??_C@_05NKPLMONF@psubq?$AA@ 100af7ac udis86:itab.obj + 0002:000167b4 ??_C@_06KCCMAANO@psubsb?$AA@ 100af7b4 udis86:itab.obj + 0002:000167bc ??_C@_06JFJJOGMK@psubsw?$AA@ 100af7bc udis86:itab.obj + 0002:000167c4 ??_C@_07OINEMGN@psubusb?$AA@ 100af7c4 udis86:itab.obj + 0002:000167cc ??_C@_07DJDIKKHJ@psubusw?$AA@ 100af7cc udis86:itab.obj + 0002:000167d4 ??_C@_05IMKBGJFD@psubw?$AA@ 100af7d4 udis86:itab.obj + 0002:000167dc ??_C@_06JOEFOFIP@pswapd?$AA@ 100af7dc udis86:itab.obj + 0002:000167e4 ??_C@_05FIFBHIFI@ptest?$AA@ 100af7e4 udis86:itab.obj + 0002:000167ec ??_C@_09MMDMOCBC@punpckhbw?$AA@ 100af7ec udis86:itab.obj + 0002:000167f8 ??_C@_09JOOLDJCG@punpckhdq?$AA@ 100af7f8 udis86:itab.obj + 0002:00016804 ??_C@_0L@JJJNOAEF@punpckhqdq?$AA@ 100af804 udis86:itab.obj + 0002:00016810 ??_C@_09LHDOMCBL@punpckhwd?$AA@ 100af810 udis86:itab.obj + 0002:0001681c ??_C@_09EDFOHFEF@punpcklbw?$AA@ 100af81c udis86:itab.obj + 0002:00016828 ??_C@_09BBIJKOHB@punpckldq?$AA@ 100af828 udis86:itab.obj + 0002:00016834 ??_C@_0L@GMBNEGIF@punpcklqdq?$AA@ 100af834 udis86:itab.obj + 0002:00016840 ??_C@_09DIFMFFEM@punpcklwd?$AA@ 100af840 udis86:itab.obj + 0002:0001684c ??_C@_04GHHNIPCF@push?$AA@ 100af84c udis86:itab.obj + 0002:00016854 ??_C@_05DHIFPDCO@pusha?$AA@ 100af854 udis86:itab.obj + 0002:0001685c ??_C@_06NNHACGJP@pushad?$AA@ 100af85c udis86:itab.obj + 0002:00016864 ??_C@_06NIDPDABK@pushfd?$AA@ 100af864 udis86:itab.obj + 0002:0001686c ??_C@_06OPIKNGAO@pushfq?$AA@ 100af86c udis86:itab.obj + 0002:00016874 ??_C@_06LJNAHBII@pushfw?$AA@ 100af874 udis86:itab.obj + 0002:0001687c ??_C@_04DAAGPHDH@pxor?$AA@ 100af87c udis86:itab.obj + 0002:00016884 ??_C@_03JMFEBJCG@rcl?$AA@ 100af884 udis86:itab.obj + 0002:00016888 ??_C@_05ONJJBNPC@rcpps?$AA@ 100af888 udis86:itab.obj + 0002:00016890 ??_C@_05OPNPKDKL@rcpss?$AA@ 100af890 udis86:itab.obj + 0002:00016898 ??_C@_03EIBFCGPJ@rcr?$AA@ 100af898 udis86:itab.obj + 0002:0001689c ??_C@_05OGJHMBLI@rdmsr?$AA@ 100af89c udis86:itab.obj + 0002:000168a4 ??_C@_05BIFODJA@rdpmc?$AA@ 100af8a4 udis86:itab.obj + 0002:000168ac ??_C@_06MJFBMHIP@rdrand?$AA@ 100af8ac udis86:itab.obj + 0002:000168b4 ??_C@_05JIFPPKLN@rdtsc?$AA@ 100af8b4 udis86:itab.obj + 0002:000168bc ??_C@_06JKHHOJDN@rdtscp?$AA@ 100af8bc udis86:itab.obj + 0002:000168c4 ??_C@_03HOKODIMJ@rep?$AA@ 100af8c4 udis86:itab.obj + 0002:000168c8 ??_C@_05GIPJNDPP@repne?$AA@ 100af8c8 udis86:itab.obj + 0002:000168d0 ??_C@_03BKMCPNMN@ret?$AA@ 100af8d0 udis86:itab.obj + 0002:000168d4 ??_C@_04NGGILANB@retf?$AA@ 100af8d4 udis86:itab.obj + 0002:000168dc ??_C@_03JFEOOAEC@rol?$AA@ 100af8dc udis86:itab.obj + 0002:000168e0 ??_C@_03EBAPNPJN@ror?$AA@ 100af8e0 udis86:itab.obj + 0002:000168e4 ??_C@_07JFJPHJIO@roundpd?$AA@ 100af8e4 udis86:itab.obj + 0002:000168ec ??_C@_07JABMPNBI@roundps?$AA@ 100af8ec udis86:itab.obj + 0002:000168f4 ??_C@_07JHNJMHNH@roundsd?$AA@ 100af8f4 udis86:itab.obj + 0002:000168fc ??_C@_07JCFKEDEB@roundss?$AA@ 100af8fc udis86:itab.obj + 0002:00016904 ??_C@_03JJGJILBH@rsm?$AA@ 100af904 udis86:itab.obj + 0002:00016908 ??_C@_07FOPKGEKI@rsqrtps?$AA@ 100af908 udis86:itab.obj + 0002:00016910 ??_C@_07FMLMNKPB@rsqrtss?$AA@ 100af910 udis86:itab.obj + 0002:00016918 ??_C@_04HBFGFECC@sahf?$AA@ 100af918 udis86:itab.obj + 0002:00016920 ??_C@_04LCIAILL@salc?$AA@ 100af920 udis86:itab.obj + 0002:00016928 ??_C@_03PDCNJFPC@sar?$AA@ 100af928 udis86:itab.obj + 0002:0001692c ??_C@_03LLKJDJPK@sbb?$AA@ 100af92c udis86:itab.obj + 0002:00016930 ??_C@_05JPPPGDOE@scasb?$AA@ 100af930 udis86:itab.obj + 0002:00016938 ??_C@_05MJKFMEGC@scasd?$AA@ 100af938 udis86:itab.obj + 0002:00016940 ??_C@_05POBACCHG@scasq?$AA@ 100af940 udis86:itab.obj + 0002:00016948 ??_C@_05KIEKIFPA@scasw?$AA@ 100af948 udis86:itab.obj + 0002:00016950 ??_C@_04KEEJAPKG@seta?$AA@ 100af950 udis86:itab.obj + 0002:00016958 ??_C@_05CHJLNADA@setae?$AA@ 100af958 udis86:itab.obj + 0002:00016960 ??_C@_04IPGEFMGF@setb?$AA@ 100af960 udis86:itab.obj + 0002:00016968 ??_C@_05CFNNGOGJ@setbe?$AA@ 100af968 udis86:itab.obj + 0002:00016970 ??_C@_04PCBDKICA@setg?$AA@ 100af970 udis86:itab.obj + 0002:00016978 ??_C@_05CDBGKMIC@setge?$AA@ 100af978 udis86:itab.obj + 0002:00016980 ??_C@_04BBOHHBOL@setl?$AA@ 100af980 udis86:itab.obj + 0002:00016988 ??_C@_05CPEDEDGD@setle?$AA@ 100af988 udis86:itab.obj + 0002:00016990 ??_C@_05NGCIHPIH@setno?$AA@ 100af990 udis86:itab.obj + 0002:00016998 ??_C@_05BLHCHBBJ@setnp?$AA@ 100af998 udis86:itab.obj + 0002:000169a0 ??_C@_05DAFPCCNK@setns?$AA@ 100af9a0 udis86:itab.obj + 0002:000169a8 ??_C@_05OBJNJJJD@setnz?$AA@ 100af9a8 udis86:itab.obj + 0002:000169b0 ??_C@_04DKMKCCCI@seto?$AA@ 100af9b0 udis86:itab.obj + 0002:000169b8 ??_C@_04PHJACMLG@setp?$AA@ 100af9b8 udis86:itab.obj + 0002:000169c0 ??_C@_04NMLNHPHF@sets?$AA@ 100af9c0 udis86:itab.obj + 0002:000169c8 ??_C@_04NHPMEDM@setz?$AA@ 100af9c8 udis86:itab.obj + 0002:000169d0 ??_C@_06LJIOJEOG@sfence?$AA@ 100af9d0 udis86:itab.obj + 0002:000169d8 ??_C@_04CFNDICEJ@sgdt?$AA@ 100af9d8 udis86:itab.obj + 0002:000169e0 ??_C@_03CILNJBKC@shl?$AA@ 100af9e0 udis86:itab.obj + 0002:000169e4 ??_C@_04DJGBNBPG@shld?$AA@ 100af9e4 udis86:itab.obj + 0002:000169ec ??_C@_03PMPMKOHN@shr?$AA@ 100af9ec udis86:itab.obj + 0002:000169f0 ??_C@_04CPNJFPIM@shrd?$AA@ 100af9f0 udis86:itab.obj + 0002:000169f8 ??_C@_06CBKLGGJD@shufpd?$AA@ 100af9f8 udis86:itab.obj + 0002:00016a00 ??_C@_06CECIOCAF@shufps?$AA@ 100afa00 udis86:itab.obj + 0002:00016a08 ??_C@_04MFAMPFHK@sidt?$AA@ 100afa08 udis86:itab.obj + 0002:00016a10 ??_C@_06JOKOMMPP@skinit?$AA@ 100afa10 udis86:itab.obj + 0002:00016a18 ??_C@_04PCNCAFEI@sldt?$AA@ 100afa18 udis86:itab.obj + 0002:00016a20 ??_C@_04HICKIEBL@smsw?$AA@ 100afa20 udis86:itab.obj + 0002:00016a28 ??_C@_06ENECHGME@sqrtpd?$AA@ 100afa28 udis86:itab.obj + 0002:00016a30 ??_C@_06EIMBPCFC@sqrtps?$AA@ 100afa30 udis86:itab.obj + 0002:00016a38 ??_C@_06EPAEMIJN@sqrtsd?$AA@ 100afa38 udis86:itab.obj + 0002:00016a40 ??_C@_06EKIHEMAL@sqrtss?$AA@ 100afa40 udis86:itab.obj + 0002:00016a48 ??_C@_03LKBJNHHJ@stc?$AA@ 100afa48 udis86:itab.obj + 0002:00016a4c ??_C@_03PFFIEBLO@std?$AA@ 100afa4c udis86:itab.obj + 0002:00016a50 ??_C@_04JKFFKIHN@stgi?$AA@ 100afa50 udis86:itab.obj + 0002:00016a58 ??_C@_03EAPGDPPD@sti?$AA@ 100afa58 udis86:itab.obj + 0002:00016a5c ??_C@_07LPMAGAMH@stmxcsr?$AA@ 100afa5c udis86:itab.obj + 0002:00016a64 ??_C@_05KNOAFPEF@stosb?$AA@ 100afa64 udis86:itab.obj + 0002:00016a6c ??_C@_05PLLKPIMD@stosd?$AA@ 100afa6c udis86:itab.obj + 0002:00016a74 ??_C@_05MMAPBONH@stosq?$AA@ 100afa74 udis86:itab.obj + 0002:00016a7c ??_C@_05JKFFLJFB@stosw?$AA@ 100afa7c udis86:itab.obj + 0002:00016a84 ??_C@_03OJMAPEGJ@str?$AA@ 100afa84 udis86:itab.obj + 0002:00016a88 ??_C@_03KCMAIMAP@sub?$AA@ 100afa88 udis86:itab.obj + 0002:00016a8c ??_C@_05DGPGLHPH@subpd?$AA@ 100afa8c udis86:itab.obj + 0002:00016a94 ??_C@_05DDHFDDGB@subps?$AA@ 100afa94 udis86:itab.obj + 0002:00016a9c ??_C@_05DELAAJKO@subsd?$AA@ 100afa9c udis86:itab.obj + 0002:00016aa4 ??_C@_05DBDDINDI@subss?$AA@ 100afaa4 udis86:itab.obj + 0002:00016aac ??_C@_06CPNDNOLP@swapgs?$AA@ 100afaac udis86:itab.obj + 0002:00016ab4 ??_C@_07JJMJNHGG@syscall?$AA@ 100afab4 udis86:itab.obj + 0002:00016abc ??_C@_08HHDECGPN@sysenter?$AA@ 100afabc udis86:itab.obj + 0002:00016ac8 ??_C@_07LPEIGAGB@sysexit?$AA@ 100afac8 udis86:itab.obj + 0002:00016ad0 ??_C@_06OJDFPBAP@sysret?$AA@ 100afad0 udis86:itab.obj + 0002:00016ad8 ??_C@_04CEJDCDCH@test?$AA@ 100afad8 udis86:itab.obj + 0002:00016ae0 ??_C@_07ENDLCHEK@ucomisd?$AA@ 100afae0 udis86:itab.obj + 0002:00016ae8 ??_C@_07EILIKDNM@ucomiss?$AA@ 100afae8 udis86:itab.obj + 0002:00016af0 ??_C@_03CAPEEHMA@ud2?$AA@ 100afaf0 udis86:itab.obj + 0002:00016af4 ??_C@_08EBLLCNNO@unpckhpd?$AA@ 100afaf4 udis86:itab.obj + 0002:00016b00 ??_C@_08EEDIKJEI@unpckhps?$AA@ 100afb00 udis86:itab.obj + 0002:00016b0c ??_C@_08MONJLKIJ@unpcklpd?$AA@ 100afb0c udis86:itab.obj + 0002:00016b18 ??_C@_08MLFKDOBP@unpcklps?$AA@ 100afb18 udis86:itab.obj + 0002:00016b24 ??_C@_06KDBFGOEF@vaddpd?$AA@ 100afb24 udis86:itab.obj + 0002:00016b2c ??_C@_06KGJGOKND@vaddps?$AA@ 100afb2c udis86:itab.obj + 0002:00016b34 ??_C@_06KBFDNABM@vaddsd?$AA@ 100afb34 udis86:itab.obj + 0002:00016b3c ??_C@_06KENAFEIK@vaddss?$AA@ 100afb3c udis86:itab.obj + 0002:00016b44 ??_C@_09PPKJNIKN@vaddsubpd?$AA@ 100afb44 udis86:itab.obj + 0002:00016b50 ??_C@_09PKCKFMDL@vaddsubps?$AA@ 100afb50 udis86:itab.obj + 0002:00016b5c ??_C@_07IPOAKKNN@vaesdec?$AA@ 100afb5c udis86:itab.obj + 0002:00016b64 ??_C@_0M@OBBELEHO@vaesdeclast?$AA@ 100afb64 udis86:itab.obj + 0002:00016b70 ??_C@_07DLAJCCFJ@vaesenc?$AA@ 100afb70 udis86:itab.obj + 0002:00016b78 ??_C@_0M@CPLJOABK@vaesenclast?$AA@ 100afb78 udis86:itab.obj + 0002:00016b84 ??_C@_07HDJJCDLI@vaesimc?$AA@ 100afb84 udis86:itab.obj + 0002:00016b8c ??_C@_0BB@PMMLANHC@vaeskeygenassist?$AA@ 100afb8c udis86:itab.obj + 0002:00016ba0 ??_C@_07NPGAGLE@vandnpd?$AA@ 100afba0 udis86:itab.obj + 0002:00016ba8 ??_C@_07IHFICCC@vandnps?$AA@ 100afba8 udis86:itab.obj + 0002:00016bb0 ??_C@_06OJKFHGOE@vandpd?$AA@ 100afbb0 udis86:itab.obj + 0002:00016bb8 ??_C@_06OMCGPCHC@vandps?$AA@ 100afbb8 udis86:itab.obj + 0002:00016bc0 ??_C@_08NLIICBDL@vblendpd?$AA@ 100afbc0 udis86:itab.obj + 0002:00016bcc ??_C@_08NOALKFKN@vblendps?$AA@ 100afbcc udis86:itab.obj + 0002:00016bd8 ??_C@_09IOAFJLNG@vblendvpd?$AA@ 100afbd8 udis86:itab.obj + 0002:00016be4 ??_C@_09ILIGBPEA@vblendvps?$AA@ 100afbe4 udis86:itab.obj + 0002:00016bf0 ??_C@_0N@MDBHDICD@vbroadcastsd?$AA@ 100afbf0 udis86:itab.obj + 0002:00016c00 ??_C@_0N@MGJELMLF@vbroadcastss?$AA@ 100afc00 udis86:itab.obj + 0002:00016c10 ??_C@_06DMLGGNPH@vcmppd?$AA@ 100afc10 udis86:itab.obj + 0002:00016c18 ??_C@_06DJDFOJGB@vcmpps?$AA@ 100afc18 udis86:itab.obj + 0002:00016c20 ??_C@_06DOPANDKO@vcmpsd?$AA@ 100afc20 udis86:itab.obj + 0002:00016c28 ??_C@_06DLHDFHDI@vcmpss?$AA@ 100afc28 udis86:itab.obj + 0002:00016c30 ??_C@_07MDLECAKJ@vcomisd?$AA@ 100afc30 udis86:itab.obj + 0002:00016c38 ??_C@_07MGDHKEDP@vcomiss?$AA@ 100afc38 udis86:itab.obj + 0002:00016c40 ??_C@_09KIEBMBPC@vcvtdq2pd?$AA@ 100afc40 udis86:itab.obj + 0002:00016c4c ??_C@_09KNMCEFGE@vcvtdq2ps?$AA@ 100afc4c udis86:itab.obj + 0002:00016c58 ??_C@_09LEJMHEDF@vcvtpd2dq?$AA@ 100afc58 udis86:itab.obj + 0002:00016c64 ??_C@_09JNIFBNBL@vcvtpd2ps?$AA@ 100afc64 udis86:itab.obj + 0002:00016c70 ??_C@_09GGFMDPKH@vcvtps2dq?$AA@ 100afc70 udis86:itab.obj + 0002:00016c7c ??_C@_09EKMGNCBP@vcvtps2pd?$AA@ 100afc7c udis86:itab.obj + 0002:00016c88 ??_C@_09KJHKCLDH@vcvtsd2si?$AA@ 100afc88 udis86:itab.obj + 0002:00016c94 ??_C@_09BJFHNBOM@vcvtsd2ss?$AA@ 100afc94 udis86:itab.obj + 0002:00016ca0 ??_C@_09OEEEJBML@vcvtsi2sd?$AA@ 100afca0 udis86:itab.obj + 0002:00016cac ??_C@_09OBMHBFFN@vcvtsi2ss?$AA@ 100afcac udis86:itab.obj + 0002:00016cb8 ??_C@_09MOBEBOOI@vcvtss2sd?$AA@ 100afcb8 udis86:itab.obj + 0002:00016cc4 ??_C@_09HLLKGAKF@vcvtss2si?$AA@ 100afcc4 udis86:itab.obj + 0002:00016cd0 ??_C@_0L@EPPDHPPA@vcvttpd2dq?$AA@ 100afcd0 udis86:itab.obj + 0002:00016cdc ??_C@_0L@JNDDDEGC@vcvttps2dq?$AA@ 100afcdc udis86:itab.obj + 0002:00016ce8 ??_C@_0L@FCBFCAPC@vcvttsd2si?$AA@ 100afce8 udis86:itab.obj + 0002:00016cf4 ??_C@_0L@IANFGLGA@vcvttss2si?$AA@ 100afcf4 udis86:itab.obj + 0002:00016d00 ??_C@_06PBFIKEFD@vdivpd?$AA@ 100afd00 udis86:itab.obj + 0002:00016d08 ??_C@_06PENLCAMF@vdivps?$AA@ 100afd08 udis86:itab.obj + 0002:00016d10 ??_C@_06PDBOBKAK@vdivsd?$AA@ 100afd10 udis86:itab.obj + 0002:00016d18 ??_C@_06PGJNJOJM@vdivss?$AA@ 100afd18 udis86:itab.obj + 0002:00016d20 ??_C@_05MBKLAHGC@vdppd?$AA@ 100afd20 udis86:itab.obj + 0002:00016d28 ??_C@_05MECIIDPE@vdpps?$AA@ 100afd28 udis86:itab.obj + 0002:00016d30 ??_C@_04JMLLNPG@verr?$AA@ 100afd30 udis86:itab.obj + 0002:00016d38 ??_C@_04HELMEJLD@verw?$AA@ 100afd38 udis86:itab.obj + 0002:00016d40 ??_C@_0N@GHEEFFJN@vextractf128?$AA@ 100afd40 udis86:itab.obj + 0002:00016d50 ??_C@_0L@EDDICPO@vextractps?$AA@ 100afd50 udis86:itab.obj + 0002:00016d5c ??_C@_07GIFBBNG@vhaddpd?$AA@ 100afd5c udis86:itab.obj + 0002:00016d64 ??_C@_07DAGJFEA@vhaddps?$AA@ 100afd64 udis86:itab.obj + 0002:00016d6c ??_C@_07DAHAFDKI@vhsubpd?$AA@ 100afd6c udis86:itab.obj + 0002:00016d74 ??_C@_07DFPDNHDO@vhsubps?$AA@ 100afd74 udis86:itab.obj + 0002:00016d7c ??_C@_0M@HPBOMOMM@vinsertf128?$AA@ 100afd7c udis86:itab.obj + 0002:00016d88 ??_C@_09GAJGHFHO@vinsertps?$AA@ 100afd88 udis86:itab.obj + 0002:00016d94 ??_C@_06ENJADELM@vlddqu?$AA@ 100afd94 udis86:itab.obj + 0002:00016d9c ??_C@_0M@HIPJIAEN@vmaskmovdqu?$AA@ 100afd9c udis86:itab.obj + 0002:00016da8 ??_C@_0L@PCLMIHED@vmaskmovpd?$AA@ 100afda8 udis86:itab.obj + 0002:00016db4 ??_C@_0L@PHDPADNF@vmaskmovps?$AA@ 100afdb4 udis86:itab.obj + 0002:00016dc0 ??_C@_06GPIMJGJ@vmaxpd?$AA@ 100afdc0 udis86:itab.obj + 0002:00016dc8 ??_C@_06DHLENPP@vmaxps?$AA@ 100afdc8 udis86:itab.obj + 0002:00016dd0 ??_C@_06ELOHHDA@vmaxsd?$AA@ 100afdd0 udis86:itab.obj + 0002:00016dd8 ??_C@_06BDNPDKG@vmaxss?$AA@ 100afdd8 udis86:itab.obj + 0002:00016de0 ??_C@_06IMMMFCAA@vmcall?$AA@ 100afde0 udis86:itab.obj + 0002:00016de8 ??_C@_07JAMFMPEO@vmclear?$AA@ 100afde8 udis86:itab.obj + 0002:00016df0 ??_C@_06EDPKIKOL@vminpd?$AA@ 100afdf0 udis86:itab.obj + 0002:00016df8 ??_C@_06EGHJAOHN@vminps?$AA@ 100afdf8 udis86:itab.obj + 0002:00016e00 ??_C@_06EBLMDELC@vminsd?$AA@ 100afe00 udis86:itab.obj + 0002:00016e08 ??_C@_06EEDPLACE@vminss?$AA@ 100afe08 udis86:itab.obj + 0002:00016e10 ??_C@_08FDGBGFFD@vmlaunch?$AA@ 100afe10 udis86:itab.obj + 0002:00016e1c ??_C@_06COECKLLJ@vmload?$AA@ 100afe1c udis86:itab.obj + 0002:00016e24 ??_C@_07HLGEACDE@vmmcall?$AA@ 100afe24 udis86:itab.obj + 0002:00016e2c ??_C@_07EDEJGLNB@vmovapd?$AA@ 100afe2c udis86:itab.obj + 0002:00016e34 ??_C@_07EGMKOPEH@vmovaps?$AA@ 100afe34 udis86:itab.obj + 0002:00016e3c ??_C@_05MAEMFOGI@vmovd?$AA@ 100afe3c udis86:itab.obj + 0002:00016e44 ??_C@_08NENHFECA@vmovddup?$AA@ 100afe44 udis86:itab.obj + 0002:00016e50 ??_C@_07ICCAFJB@vmovdqa?$AA@ 100afe50 udis86:itab.obj + 0002:00016e58 ??_C@_07CGIMNCME@vmovdqu?$AA@ 100afe58 udis86:itab.obj + 0002:00016e60 ??_C@_08PJHFAAOG@vmovhlps?$AA@ 100afe60 udis86:itab.obj + 0002:00016e6c ??_C@_07DOEBCEFL@vmovhpd?$AA@ 100afe6c udis86:itab.obj + 0002:00016e74 ??_C@_07DLMCKAMN@vmovhps?$AA@ 100afe74 udis86:itab.obj + 0002:00016e7c ??_C@_08IDJHDBHB@vmovlhps?$AA@ 100afe7c udis86:itab.obj + 0002:00016e88 ??_C@_07LBCDLDAM@vmovlpd?$AA@ 100afe88 udis86:itab.obj + 0002:00016e90 ??_C@_07LEKADHJK@vmovlps?$AA@ 100afe90 udis86:itab.obj + 0002:00016e98 ??_C@_09HPCCGDMJ@vmovmskpd?$AA@ 100afe98 udis86:itab.obj + 0002:00016ea4 ??_C@_09HKKBOHFP@vmovmskps?$AA@ 100afea4 udis86:itab.obj + 0002:00016eb0 ??_C@_08MKIBODBI@vmovntdq?$AA@ 100afeb0 udis86:itab.obj + 0002:00016ebc ??_C@_09GPEAEDFD@vmovntdqa?$AA@ 100afebc udis86:itab.obj + 0002:00016ec8 ??_C@_08OGBLAOKA@vmovntpd?$AA@ 100afec8 udis86:itab.obj + 0002:00016ed4 ??_C@_08ODJIIKDG@vmovntps?$AA@ 100afed4 udis86:itab.obj + 0002:00016ee0 ??_C@_05PHPJLIHM@vmovq?$AA@ 100afee0 udis86:itab.obj + 0002:00016ee8 ??_C@_06FLFBLOGC@vmovsd?$AA@ 100afee8 udis86:itab.obj + 0002:00016ef0 ??_C@_09CBMIKDFJ@vmovshdup?$AA@ 100afef0 udis86:itab.obj + 0002:00016efc ??_C@_09NEEIAFJJ@vmovsldup?$AA@ 100afefc udis86:itab.obj + 0002:00016f08 ??_C@_06FONCDKPE@vmovss?$AA@ 100aff08 udis86:itab.obj + 0002:00016f10 ??_C@_07JMDCKLBJ@vmovupd?$AA@ 100aff10 udis86:itab.obj + 0002:00016f18 ??_C@_07JJLBCPIP@vmovups?$AA@ 100aff18 udis86:itab.obj + 0002:00016f20 ??_C@_08ILEEIFPG@vmpsadbw?$AA@ 100aff20 udis86:itab.obj + 0002:00016f2c ??_C@_07JMJJCKJK@vmptrld?$AA@ 100aff2c udis86:itab.obj + 0002:00016f34 ??_C@_07MBCBNMIG@vmptrst?$AA@ 100aff34 udis86:itab.obj + 0002:00016f3c ??_C@_06JOCPGCDO@vmread?$AA@ 100aff3c udis86:itab.obj + 0002:00016f44 ??_C@_08EIHJLGKP@vmresume?$AA@ 100aff44 udis86:itab.obj + 0002:00016f50 ??_C@_05JKJGIHPJ@vmrun?$AA@ 100aff50 udis86:itab.obj + 0002:00016f58 ??_C@_06CMFPFIGN@vmsave?$AA@ 100aff58 udis86:itab.obj + 0002:00016f60 ??_C@_06EMODDIOD@vmulpd?$AA@ 100aff60 udis86:itab.obj + 0002:00016f68 ??_C@_06EJGALMHF@vmulps?$AA@ 100aff68 udis86:itab.obj + 0002:00016f70 ??_C@_06EOKFIGLK@vmulsd?$AA@ 100aff70 udis86:itab.obj + 0002:00016f78 ??_C@_06ELCGACCM@vmulss?$AA@ 100aff78 udis86:itab.obj + 0002:00016f80 ??_C@_07ICOKPMJF@vmwrite?$AA@ 100aff80 udis86:itab.obj + 0002:00016f88 ??_C@_06IMFLOOPM@vmxoff?$AA@ 100aff88 udis86:itab.obj + 0002:00016f90 ??_C@_05OEJKEBDL@vmxon?$AA@ 100aff90 udis86:itab.obj + 0002:00016f98 ??_C@_05BMHCPOPI@vorpd?$AA@ 100aff98 udis86:itab.obj + 0002:00016fa0 ??_C@_05BJPBHKGO@vorps?$AA@ 100affa0 udis86:itab.obj + 0002:00016fa8 ??_C@_06NCAIHGAI@vpabsb?$AA@ 100affa8 udis86:itab.obj + 0002:00016fb0 ??_C@_06IEFCNBIO@vpabsd?$AA@ 100affb0 udis86:itab.obj + 0002:00016fb8 ??_C@_06OFLNJABM@vpabsw?$AA@ 100affb8 udis86:itab.obj + 0002:00016fc0 ??_C@_09DLPFLBOH@vpackssdw?$AA@ 100affc0 udis86:itab.obj + 0002:00016fcc ??_C@_09BCCAEKNK@vpacksswb?$AA@ 100affcc udis86:itab.obj + 0002:00016fd8 ??_C@_09LELFEEEH@vpackusdw?$AA@ 100affd8 udis86:itab.obj + 0002:00016fe4 ??_C@_09JNGALPHK@vpackuswb?$AA@ 100affe4 udis86:itab.obj + 0002:00016ff0 ??_C@_06OOAKJMCB@vpaddb?$AA@ 100afff0 udis86:itab.obj + 0002:00016ff8 ??_C@_06LIFADLKH@vpaddd?$AA@ 100afff8 udis86:itab.obj + 0002:00017000 ??_C@_06IPOFNNLD@vpaddq?$AA@ 100b0000 udis86:itab.obj + 0002:00017008 ??_C@_07GKINKKA@vpaddsb?$AA@ 100b0008 udis86:itab.obj + 0002:00017010 ??_C@_07DBBNDMLE@vpaddsw?$AA@ 100b0010 udis86:itab.obj + 0002:00017018 ??_C@_08LJJEJEIM@vpaddusb?$AA@ 100b0018 udis86:itab.obj + 0002:00017024 ??_C@_08IOCBHCJI@vpaddusw?$AA@ 100b0024 udis86:itab.obj + 0002:00017030 ??_C@_06NJLPHKDF@vpaddw?$AA@ 100b0030 udis86:itab.obj + 0002:00017038 ??_C@_08JHLGPDG@vpalignr?$AA@ 100b0038 udis86:itab.obj + 0002:00017044 ??_C@_05KKNGIIKA@vpand?$AA@ 100b0044 udis86:itab.obj + 0002:0001704c ??_C@_06CNACDDEJ@vpandn?$AA@ 100b004c udis86:itab.obj + 0002:00017054 ??_C@_06BGFMLNGM@vpavgb?$AA@ 100b0054 udis86:itab.obj + 0002:0001705c ??_C@_06CBOJFLHI@vpavgw?$AA@ 100b005c udis86:itab.obj + 0002:00017064 ??_C@_09EJBAKIC@vpblendvb?$AA@ 100b0064 udis86:itab.obj + 0002:00017070 ??_C@_08PAILKGLD@vpblendw?$AA@ 100b0070 udis86:itab.obj + 0002:0001707c ??_C@_0L@NBDJJMAH@vpclmulqdq?$AA@ 100b007c udis86:itab.obj + 0002:00017088 ??_C@_08MPPJGGNO@vpcmpeqb?$AA@ 100b0088 udis86:itab.obj + 0002:00017094 ??_C@_08JJKDMBFI@vpcmpeqd?$AA@ 100b0094 udis86:itab.obj + 0002:000170a0 ??_C@_08KOBGCHEM@vpcmpeqq?$AA@ 100b00a0 udis86:itab.obj + 0002:000170ac ??_C@_08PIEMIAMK@vpcmpeqw?$AA@ 100b00ac udis86:itab.obj + 0002:000170b8 ??_C@_0L@FHJCNEPG@vpcmpestri?$AA@ 100b00b8 udis86:itab.obj + 0002:000170c4 ??_C@_0L@DDPOBBPC@vpcmpestrm?$AA@ 100b00c4 udis86:itab.obj + 0002:000170d0 ??_C@_08GDDLGMLO@vpcmpgtb?$AA@ 100b00d0 udis86:itab.obj + 0002:000170dc ??_C@_08DFGBMLDI@vpcmpgtd?$AA@ 100b00dc udis86:itab.obj + 0002:000170e8 ??_C@_08CNECNCM@vpcmpgtq?$AA@ 100b00e8 udis86:itab.obj + 0002:000170f4 ??_C@_08FEIOIKKK@vpcmpgtw?$AA@ 100b00f4 udis86:itab.obj + 0002:00017100 ??_C@_0L@CAFABEIN@vpcmpistri?$AA@ 100b0100 udis86:itab.obj + 0002:0001710c ??_C@_0L@EEDMNBIJ@vpcmpistrm?$AA@ 100b010c udis86:itab.obj + 0002:00017118 ??_C@_0L@EBGBBKJC@vperm2f128?$AA@ 100b0118 udis86:itab.obj + 0002:00017124 ??_C@_09PAKFEJKO@vpermilpd?$AA@ 100b0124 udis86:itab.obj + 0002:00017130 ??_C@_09PFCGMNDI@vpermilps?$AA@ 100b0130 udis86:itab.obj + 0002:0001713c ??_C@_07GJPCNPJN@vpextrb?$AA@ 100b013c udis86:itab.obj + 0002:00017144 ??_C@_07DPKIHIBL@vpextrd?$AA@ 100b0144 udis86:itab.obj + 0002:0001714c ??_C@_07IBNJOAP@vpextrq?$AA@ 100b014c udis86:itab.obj + 0002:00017154 ??_C@_07FOEHDJIJ@vpextrw?$AA@ 100b0154 udis86:itab.obj + 0002:0001715c ??_C@_07KGHEBGGL@vphaddd?$AA@ 100b015c udis86:itab.obj + 0002:00017164 ??_C@_08KDNBJGAC@vphaddsw?$AA@ 100b0164 udis86:itab.obj + 0002:00017170 ??_C@_07MHJLFHPJ@vphaddw?$AA@ 100b0170 udis86:itab.obj + 0002:00017178 ??_C@_0M@JBMAEGIN@vphminposuw?$AA@ 100b0178 udis86:itab.obj + 0002:00017184 ??_C@_07FAHMJOMB@vphsubd?$AA@ 100b0184 udis86:itab.obj + 0002:0001718c ??_C@_08JFCENEHM@vphsubsw?$AA@ 100b018c udis86:itab.obj + 0002:00017198 ??_C@_07DBJDNPFD@vphsubw?$AA@ 100b0198 udis86:itab.obj + 0002:000171a0 ??_C@_07GMEHEFHN@vpinsrb?$AA@ 100b01a0 udis86:itab.obj + 0002:000171a8 ??_C@_07DKBNOCPL@vpinsrd?$AA@ 100b01a8 udis86:itab.obj + 0002:000171b0 ??_C@_07NKIAEOP@vpinsrq?$AA@ 100b01b0 udis86:itab.obj + 0002:000171b8 ??_C@_07FLPCKDGJ@vpinsrw?$AA@ 100b01b8 udis86:itab.obj + 0002:000171c0 ??_C@_0L@LPIDNJFI@vpmaddubsw?$AA@ 100b01c0 udis86:itab.obj + 0002:000171cc ??_C@_08JHAPFAOL@vpmaddwd?$AA@ 100b01cc udis86:itab.obj + 0002:000171d8 ??_C@_07KDEFHNIM@vpmaxsb?$AA@ 100b01d8 udis86:itab.obj + 0002:000171e0 ??_C@_07PFBPNKAK@vpmaxsd?$AA@ 100b01e0 udis86:itab.obj + 0002:000171e8 ??_C@_07JEPAJLJI@vpmaxsw?$AA@ 100b01e8 udis86:itab.obj + 0002:000171f0 ??_C@_07KHMIABDO@vpmaxub?$AA@ 100b01f0 udis86:itab.obj + 0002:000171f8 ??_C@_07PBJCKGLI@vpmaxud?$AA@ 100b01f8 udis86:itab.obj + 0002:00017200 ??_C@_07JAHNOHCK@vpmaxuw?$AA@ 100b0200 udis86:itab.obj + 0002:00017208 ??_C@_07OGEHDOAO@vpminsb?$AA@ 100b0208 udis86:itab.obj + 0002:00017210 ??_C@_07LABNJJII@vpminsd?$AA@ 100b0210 udis86:itab.obj + 0002:00017218 ??_C@_07NBPCNIBK@vpminsw?$AA@ 100b0218 udis86:itab.obj + 0002:00017220 ??_C@_07OCMKECLM@vpminub?$AA@ 100b0220 udis86:itab.obj + 0002:00017228 ??_C@_07LEJAOFDK@vpminud?$AA@ 100b0228 udis86:itab.obj + 0002:00017230 ??_C@_07NFHPKEKI@vpminuw?$AA@ 100b0230 udis86:itab.obj + 0002:00017238 ??_C@_09PHILFHFD@vpmovmskb?$AA@ 100b0238 udis86:itab.obj + 0002:00017244 ??_C@_09KGNBGFLI@vpmovsxbd?$AA@ 100b0244 udis86:itab.obj + 0002:00017250 ??_C@_09JBGEIDKM@vpmovsxbq?$AA@ 100b0250 udis86:itab.obj + 0002:0001725c ??_C@_09MHDOCECK@vpmovsxbw?$AA@ 100b025c udis86:itab.obj + 0002:00017268 ??_C@_09LMDMAECD@vpmovsxwd?$AA@ 100b0268 udis86:itab.obj + 0002:00017274 ??_C@_09ILIJOCDH@vpmovsxwq?$AA@ 100b0274 udis86:itab.obj + 0002:00017280 ??_C@_09KLMBAHMJ@vpmovzxbd?$AA@ 100b0280 udis86:itab.obj + 0002:0001728c ??_C@_09JMHEOBNN@vpmovzxbq?$AA@ 100b028c udis86:itab.obj + 0002:00017298 ??_C@_09MKCOEGFL@vpmovzxbw?$AA@ 100b0298 udis86:itab.obj + 0002:000172a4 ??_C@_09JIPJJNGP@vpmovzxdq?$AA@ 100b02a4 udis86:itab.obj + 0002:000172b0 ??_C@_09LBCMGGFC@vpmovzxwd?$AA@ 100b02b0 udis86:itab.obj + 0002:000172bc ??_C@_09IGJJIAEG@vpmovzxwq?$AA@ 100b02bc udis86:itab.obj + 0002:000172c8 ??_C@_07JBNIHIGB@vpmuldq?$AA@ 100b02c8 udis86:itab.obj + 0002:000172d0 ??_C@_09MDLEEJOH@vpmulhrsw?$AA@ 100b02d0 udis86:itab.obj + 0002:000172dc ??_C@_08BHIFHBOD@vpmulhuw?$AA@ 100b02dc udis86:itab.obj + 0002:000172e8 ??_C@_07MOJICGID@vpmulhw?$AA@ 100b02e8 udis86:itab.obj + 0002:000172f0 ??_C@_07KIHOMPMN@vpmulld?$AA@ 100b02f0 udis86:itab.obj + 0002:000172f8 ??_C@_07MJJBIOFP@vpmullw?$AA@ 100b02f8 udis86:itab.obj + 0002:00017300 ??_C@_04HKPCCKHI@vpor?$AA@ 100b0300 udis86:itab.obj + 0002:00017308 ??_C@_07KKAHNJBD@vpsadbw?$AA@ 100b0308 udis86:itab.obj + 0002:00017310 ??_C@_07HPAOMFFA@vpshufb?$AA@ 100b0310 udis86:itab.obj + 0002:00017318 ??_C@_07CJFEGCNG@vpshufd?$AA@ 100b0318 udis86:itab.obj + 0002:00017320 ??_C@_08GPNDFNG@vpshufhw?$AA@ 100b0320 udis86:itab.obj + 0002:0001732c ??_C@_08BPEJNAK@vpshuflw?$AA@ 100b032c udis86:itab.obj + 0002:00017338 ??_C@_07LGGNCCEM@vpsignb?$AA@ 100b0338 udis86:itab.obj + 0002:00017340 ??_C@_07OADHIFMK@vpsignd?$AA@ 100b0340 udis86:itab.obj + 0002:00017348 ??_C@_07IBNIMEFI@vpsignw?$AA@ 100b0348 udis86:itab.obj + 0002:00017350 ??_C@_06GJNHIGBC@vpslld?$AA@ 100b0350 udis86:itab.obj + 0002:00017358 ??_C@_07MFPEOOHJ@vpslldq?$AA@ 100b0358 udis86:itab.obj + 0002:00017360 ??_C@_06FOGCGAAG@vpsllq?$AA@ 100b0360 udis86:itab.obj + 0002:00017368 ??_C@_06IDIMHIA@vpsllw?$AA@ 100b0368 udis86:itab.obj + 0002:00017370 ??_C@_06NBMJDFON@vpsrad?$AA@ 100b0370 udis86:itab.obj + 0002:00017378 ??_C@_06LACGHEHP@vpsraw?$AA@ 100b0378 udis86:itab.obj + 0002:00017380 ??_C@_06NJBBKGLO@vpsrld?$AA@ 100b0380 udis86:itab.obj + 0002:00017388 ??_C@_07BKCEMHJK@vpsrldq?$AA@ 100b0388 udis86:itab.obj + 0002:00017390 ??_C@_06OOKEEAKK@vpsrlq?$AA@ 100b0390 udis86:itab.obj + 0002:00017398 ??_C@_06LIPOOHCM@vpsrlw?$AA@ 100b0398 udis86:itab.obj + 0002:000173a0 ??_C@_06BIACBEIL@vpsubb?$AA@ 100b03a0 udis86:itab.obj + 0002:000173a8 ??_C@_06EOFILDAN@vpsubd?$AA@ 100b03a8 udis86:itab.obj + 0002:000173b0 ??_C@_06HJONFFBJ@vpsubq?$AA@ 100b03b0 udis86:itab.obj + 0002:000173b8 ??_C@_07DAFNJINO@vpsubsb?$AA@ 100b03b8 udis86:itab.obj + 0002:000173c0 ??_C@_07HOIHOMK@vpsubsw?$AA@ 100b03c0 udis86:itab.obj + 0002:000173c8 ??_C@_08OBPDNPF@vpsubusb?$AA@ 100b03c8 udis86:itab.obj + 0002:000173d4 ??_C@_08DJKKNLOB@vpsubusw?$AA@ 100b03d4 udis86:itab.obj + 0002:000173e0 ??_C@_06CPLHPCJP@vpsubw?$AA@ 100b03e0 udis86:itab.obj + 0002:000173e8 ??_C@_06PLEHODJE@vptest?$AA@ 100b03e8 udis86:itab.obj + 0002:000173f0 ??_C@_0L@FCKGKDDI@vpunpckhbw?$AA@ 100b03f0 udis86:itab.obj + 0002:000173fc ??_C@_0L@HBHIAM@vpunpckhdq?$AA@ 100b03fc udis86:itab.obj + 0002:00017408 ??_C@_0M@ECLILDNC@vpunpckhqdq?$AA@ 100b0408 udis86:itab.obj + 0002:00017414 ??_C@_0L@CJKEIDDB@vpunpckhwd?$AA@ 100b0414 udis86:itab.obj + 0002:00017420 ??_C@_0L@NNMEDEGP@vpunpcklbw?$AA@ 100b0420 udis86:itab.obj + 0002:0001742c ??_C@_0L@IPBDOPFL@vpunpckldq?$AA@ 100b042c udis86:itab.obj + 0002:00017438 ??_C@_0M@LHDIBFBC@vpunpcklqdq?$AA@ 100b0438 udis86:itab.obj + 0002:00017444 ??_C@_0L@KGMGBEGG@vpunpcklwd?$AA@ 100b0444 udis86:itab.obj + 0002:00017450 ??_C@_05JKJNEPFF@vpxor?$AA@ 100b0450 udis86:itab.obj + 0002:00017458 ??_C@_06EOIPIGDO@vrcpps?$AA@ 100b0458 udis86:itab.obj + 0002:00017460 ??_C@_06EMMJDIGH@vrcpss?$AA@ 100b0460 udis86:itab.obj + 0002:00017468 ??_C@_08JFANAIBG@vroundpd?$AA@ 100b0468 udis86:itab.obj + 0002:00017474 ??_C@_08JAIOIMIA@vroundps?$AA@ 100b0474 udis86:itab.obj + 0002:00017480 ??_C@_08JHELLGEP@vroundsd?$AA@ 100b0480 udis86:itab.obj + 0002:0001748c ??_C@_08JCMIDCNJ@vroundss?$AA@ 100b048c udis86:itab.obj + 0002:00017498 ??_C@_08FOGIBFDA@vrsqrtps?$AA@ 100b0498 udis86:itab.obj + 0002:000174a4 ??_C@_08FMCOKLGJ@vrsqrtss?$AA@ 100b04a4 udis86:itab.obj + 0002:000174b0 ??_C@_07LDNKPOJD@vshufpd?$AA@ 100b04b0 udis86:itab.obj + 0002:000174b8 ??_C@_07LGFJHKAF@vshufps?$AA@ 100b04b8 udis86:itab.obj + 0002:000174c0 ??_C@_07NPDDOOME@vsqrtpd?$AA@ 100b04c0 udis86:itab.obj + 0002:000174c8 ??_C@_07NKLAGKFC@vsqrtps?$AA@ 100b04c8 udis86:itab.obj + 0002:000174d0 ??_C@_07NNHFFAJN@vsqrtsd?$AA@ 100b04d0 udis86:itab.obj + 0002:000174d8 ??_C@_07NIPGNEAL@vsqrtss?$AA@ 100b04d8 udis86:itab.obj + 0002:000174e0 ??_C@_08LPFCBBFP@vstmxcsr?$AA@ 100b04e0 udis86:itab.obj + 0002:000174ec ??_C@_06JFOACMDL@vsubpd?$AA@ 100b04ec udis86:itab.obj + 0002:000174f4 ??_C@_06JAGDKIKN@vsubps?$AA@ 100b04f4 udis86:itab.obj + 0002:000174fc ??_C@_06JHKGJCGC@vsubsd?$AA@ 100b04fc udis86:itab.obj + 0002:00017504 ??_C@_06JCCFBGPE@vsubss?$AA@ 100b0504 udis86:itab.obj + 0002:0001750c ??_C@_07LPLDLJHH@vtestpd?$AA@ 100b050c udis86:itab.obj + 0002:00017514 ??_C@_07LKDADNOB@vtestps?$AA@ 100b0514 udis86:itab.obj + 0002:0001751c ??_C@_08ENKJFGNC@vucomisd?$AA@ 100b051c udis86:itab.obj + 0002:00017528 ??_C@_08EICKNCEE@vucomiss?$AA@ 100b0528 udis86:itab.obj + 0002:00017534 ??_C@_09LPGPKENJ@vunpckhpd?$AA@ 100b0534 udis86:itab.obj + 0002:00017540 ??_C@_09LKOMCAEP@vunpckhps?$AA@ 100b0540 udis86:itab.obj + 0002:0001754c ??_C@_09DAANDDIO@vunpcklpd?$AA@ 100b054c udis86:itab.obj + 0002:00017558 ??_C@_09DFIOLHBI@vunpcklps?$AA@ 100b0558 udis86:itab.obj + 0002:00017564 ??_C@_06IFGOAEEE@vxorpd?$AA@ 100b0564 udis86:itab.obj + 0002:0001756c ??_C@_06IAONIANC@vxorps?$AA@ 100b056c udis86:itab.obj + 0002:00017574 ??_C@_08CIMGHFML@vzeroall?$AA@ 100b0574 udis86:itab.obj + 0002:00017580 ??_C@_0L@HMOMGDGG@vzeroupper?$AA@ 100b0580 udis86:itab.obj + 0002:0001758c ??_C@_04PNOAOIAG@wait?$AA@ 100b058c udis86:itab.obj + 0002:00017594 ??_C@_06BAFGEPDI@wbinvd?$AA@ 100b0594 udis86:itab.obj + 0002:0001759c ??_C@_05FJPKDCCJ@wrmsr?$AA@ 100b059c udis86:itab.obj + 0002:000175a4 ??_C@_04DNKKPONF@xadd?$AA@ 100b05a4 udis86:itab.obj + 0002:000175ac ??_C@_04LFJEJMPJ@xchg?$AA@ 100b05ac udis86:itab.obj + 0002:000175b4 ??_C@_09CAOANIJI@xcryptcbc?$AA@ 100b05b4 udis86:itab.obj + 0002:000175c0 ??_C@_09DOPCEBAF@xcryptcfb?$AA@ 100b05c0 udis86:itab.obj + 0002:000175cc ??_C@_09GLJCCEEK@xcryptctr?$AA@ 100b05cc udis86:itab.obj + 0002:000175d8 ??_C@_09BNFCNMDC@xcryptecb?$AA@ 100b05d8 udis86:itab.obj + 0002:000175e4 ??_C@_09HECEPOLN@xcryptofb?$AA@ 100b05e4 udis86:itab.obj + 0002:000175f0 ??_C@_06CPFMIPOH@xgetbv?$AA@ 100b05f0 udis86:itab.obj + 0002:000175f8 ??_C@_05HCCHBCHD@xlatb?$AA@ 100b05f8 udis86:itab.obj + 0002:00017600 ??_C@_03COLCDPPJ@xor?$AA@ 100b0600 udis86:itab.obj + 0002:00017604 ??_C@_05CGHIJPII@xorpd?$AA@ 100b0604 udis86:itab.obj + 0002:0001760c ??_C@_05CDPLBLBO@xorps?$AA@ 100b060c udis86:itab.obj + 0002:00017614 ??_C@_06PPFDCILK@xrstor?$AA@ 100b0614 udis86:itab.obj + 0002:0001761c ??_C@_05NMFCFAIJ@xsave?$AA@ 100b061c udis86:itab.obj + 0002:00017624 ??_C@_06LHBLMPGK@xsetbv?$AA@ 100b0624 udis86:itab.obj + 0002:0001762c ??_C@_05GGOEDCKG@xsha1?$AA@ 100b062c udis86:itab.obj + 0002:00017634 ??_C@_07IJIDDFOL@xsha256?$AA@ 100b0634 udis86:itab.obj + 0002:0001763c ??_C@_06BAEKEDCE@xstore?$AA@ 100b063c udis86:itab.obj + 0002:00017644 ??_C@_07MALOAKCI@invalid?$AA@ 100b0644 udis86:itab.obj + 0002:0001764c ??_C@_05FIGNBJMO@3dnow?$AA@ 100b064c udis86:itab.obj + 0002:00017654 ??_C@_04CGFJFPFD@none?$AA@ 100b0654 udis86:itab.obj + 0002:0001765c ??_C@_02BIKLEMDE@db?$AA@ 100b065c udis86:itab.obj + 0002:00017660 ??_C@_05PDJBBECF@pause?$AA@ 100b0660 udis86:itab.obj + 0002:00018210 _ud_itab__0 100b1210 udis86:itab.obj + 0002:00019e40 _ud_reg_tab 100b2e40 udis86:syn.obj + 0002:0001a0ac ??_C@_02IAODKDFB@al?$AA@ 100b30ac udis86:syn.obj + 0002:0001a0b0 ??_C@_02IDGHHHDP@cl?$AA@ 100b30b0 udis86:syn.obj + 0002:0001a0b4 ??_C@_02IGCIGBLK@dl?$AA@ 100b30b4 udis86:syn.obj + 0002:0001a0b8 ??_C@_02ICKFBNAI@bl?$AA@ 100b30b8 udis86:syn.obj + 0002:0001a0bc ??_C@_02OEIPGGFF@ah?$AA@ 100b30bc udis86:syn.obj + 0002:0001a0c0 ??_C@_02OHALLCDL@ch?$AA@ 100b30c0 udis86:syn.obj + 0002:0001a0c4 ??_C@_02OCEEKELO@dh?$AA@ 100b30c4 udis86:syn.obj + 0002:0001a0c8 ??_C@_02OGMJNIAM@bh?$AA@ 100b30c8 udis86:syn.obj + 0002:0001a0cc ??_C@_03DKIIGDGK@spl?$AA@ 100b30cc udis86:syn.obj + 0002:0001a0d0 ??_C@_03NCCNFDJA@bpl?$AA@ 100b30d0 udis86:syn.obj + 0002:0001a0d4 ??_C@_03CJHPPLJF@sil?$AA@ 100b30d4 udis86:syn.obj + 0002:0001a0d8 ??_C@_03OELBJELD@dil?$AA@ 100b30d8 udis86:syn.obj + 0002:0001a0dc ??_C@_03GCDOPFPJ@r8b?$AA@ 100b30dc udis86:syn.obj + 0002:0001a0e0 ??_C@_03GDPMJPMO@r9b?$AA@ 100b30e0 udis86:syn.obj + 0002:0001a0e4 ??_C@_04IBPIMIDM@r10b?$AA@ 100b30e4 udis86:syn.obj + 0002:0001a0ec ??_C@_04IADKKCAL@r11b?$AA@ 100b30ec udis86:syn.obj + 0002:0001a0f4 ??_C@_04ICHMBMFC@r12b?$AA@ 100b30f4 udis86:syn.obj + 0002:0001a0fc ??_C@_04IDLOHGGF@r13b?$AA@ 100b30fc udis86:syn.obj + 0002:0001a104 ??_C@_04IGPBGAOA@r14b?$AA@ 100b3104 udis86:syn.obj + 0002:0001a10c ??_C@_04IHDDAKNH@r15b?$AA@ 100b310c udis86:syn.obj + 0002:0001a114 ??_C@_02KOENHEAE@ax?$AA@ 100b3114 udis86:syn.obj + 0002:0001a118 ??_C@_02KNMJKAGK@cx?$AA@ 100b3118 udis86:syn.obj + 0002:0001a11c ??_C@_02KIIGLGOP@dx?$AA@ 100b311c udis86:syn.obj + 0002:0001a120 ??_C@_02KMALMKFN@bx?$AA@ 100b3120 udis86:syn.obj + 0002:0001a124 ??_C@_02HJDGIJBC@sp?$AA@ 100b3124 udis86:syn.obj + 0002:0001a128 ??_C@_02GENCEAFF@bp?$AA@ 100b3128 udis86:syn.obj + 0002:0001a12c ??_C@_02OCDGCAAK@si?$AA@ 100b312c udis86:syn.obj + 0002:0001a130 ??_C@_02PLFPJFPP@di?$AA@ 100b3130 udis86:syn.obj + 0002:0001a134 ??_C@_03FFILBDON@r8w?$AA@ 100b3134 udis86:syn.obj + 0002:0001a138 ??_C@_03FEEJHJNK@r9w?$AA@ 100b3138 udis86:syn.obj + 0002:0001a13c ??_C@_04LGENCOCI@r10w?$AA@ 100b313c udis86:syn.obj + 0002:0001a144 ??_C@_04LHIPEEBP@r11w?$AA@ 100b3144 udis86:syn.obj + 0002:0001a14c ??_C@_04LFMJPKEG@r12w?$AA@ 100b314c udis86:syn.obj + 0002:0001a154 ??_C@_04LEALJAHB@r13w?$AA@ 100b3154 udis86:syn.obj + 0002:0001a15c ??_C@_04LBEEIGPE@r14w?$AA@ 100b315c udis86:syn.obj + 0002:0001a164 ??_C@_04LAIGOMMD@r15w?$AA@ 100b3164 udis86:syn.obj + 0002:0001a16c ??_C@_03HMLAHFDL@eax?$AA@ 100b316c udis86:syn.obj + 0002:0001a170 ??_C@_03HPDEKBFF@ecx?$AA@ 100b3170 udis86:syn.obj + 0002:0001a174 ??_C@_03HKHLLHNA@edx?$AA@ 100b3174 udis86:syn.obj + 0002:0001a178 ??_C@_03HOPGMLGC@ebx?$AA@ 100b3178 udis86:syn.obj + 0002:0001a17c ??_C@_03KLMLIICN@esp?$AA@ 100b317c udis86:syn.obj + 0002:0001a180 ??_C@_03LGCPEBGK@ebp?$AA@ 100b3180 udis86:syn.obj + 0002:0001a184 ??_C@_03DAMLCBDF@esi?$AA@ 100b3184 udis86:syn.obj + 0002:0001a188 ??_C@_03CJKCJEMA@edi?$AA@ 100b3188 udis86:syn.obj + 0002:0001a18c ??_C@_03DEGEFCHP@r8d?$AA@ 100b318c udis86:syn.obj + 0002:0001a190 ??_C@_03DFKGDIEI@r9d?$AA@ 100b3190 udis86:syn.obj + 0002:0001a194 ??_C@_04NHKCGPLK@r10d?$AA@ 100b3194 udis86:syn.obj + 0002:0001a19c ??_C@_04NGGAAFIN@r11d?$AA@ 100b319c udis86:syn.obj + 0002:0001a1a4 ??_C@_04NECGLLNE@r12d?$AA@ 100b31a4 udis86:syn.obj + 0002:0001a1ac ??_C@_04NFOENBOD@r13d?$AA@ 100b31ac udis86:syn.obj + 0002:0001a1b4 ??_C@_04NAKLMHGG@r14d?$AA@ 100b31b4 udis86:syn.obj + 0002:0001a1bc ??_C@_04NBGJKNFB@r15d?$AA@ 100b31bc udis86:syn.obj + 0002:0001a1c4 ??_C@_03LBHOBKBN@rax?$AA@ 100b31c4 udis86:syn.obj + 0002:0001a1c8 ??_C@_03LCPKMOHD@rcx?$AA@ 100b31c8 udis86:syn.obj + 0002:0001a1cc ??_C@_03LHLFNIPG@rdx?$AA@ 100b31cc udis86:syn.obj + 0002:0001a1d0 ??_C@_03LDDIKEEE@rbx?$AA@ 100b31d0 udis86:syn.obj + 0002:0001a1d4 ??_C@_03GGAFOHAL@rsp?$AA@ 100b31d4 udis86:syn.obj + 0002:0001a1d8 ??_C@_03HLOBCOEM@rbp?$AA@ 100b31d8 udis86:syn.obj + 0002:0001a1dc ??_C@_03PNAFEOBD@rsi?$AA@ 100b31dc udis86:syn.obj + 0002:0001a1e0 ??_C@_03OEGMPLOG@rdi?$AA@ 100b31e0 udis86:syn.obj + 0002:0001a1e4 ??_C@_02EAFECGCI@r8?$AA@ 100b31e4 udis86:syn.obj + 0002:0001a1e8 ??_C@_02FJEPBHGJ@r9?$AA@ 100b31e8 udis86:syn.obj + 0002:0001a1ec ??_C@_03OFGCPBKA@r10?$AA@ 100b31ec udis86:syn.obj + 0002:0001a1f0 ??_C@_03PMHJMAOB@r11?$AA@ 100b31f0 udis86:syn.obj + 0002:0001a1f4 ??_C@_03NHFEJDCC@r12?$AA@ 100b31f4 udis86:syn.obj + 0002:0001a1f8 ??_C@_03MOEPKCGD@r13?$AA@ 100b31f8 udis86:syn.obj + 0002:0001a1fc ??_C@_03IBAODEKE@r14?$AA@ 100b31fc udis86:syn.obj + 0002:0001a200 ??_C@_03JIBFAFOF@r15?$AA@ 100b3200 udis86:syn.obj + 0002:0001a204 ??_C@_02EKLAAFBD@es?$AA@ 100b3204 udis86:syn.obj + 0002:0001a208 ??_C@_02EODNHJKB@cs?$AA@ 100b3208 udis86:syn.obj + 0002:0001a20c ??_C@_02FCBLNKNB@ss?$AA@ 100b320c udis86:syn.obj + 0002:0001a210 ??_C@_02ELHCGPCE@ds?$AA@ 100b3210 udis86:syn.obj + 0002:0001a214 ??_C@_02EIPGLLEK@fs?$AA@ 100b3214 udis86:syn.obj + 0002:0001a218 ??_C@_02EJDENBHN@gs?$AA@ 100b3218 udis86:syn.obj + 0002:0001a21c ??_C@_03HPBLPCMD@cr0?$AA@ 100b321c udis86:syn.obj + 0002:0001a220 ??_C@_03GGAAMDIC@cr1?$AA@ 100b3220 udis86:syn.obj + 0002:0001a224 ??_C@_03ENCNJAEB@cr2?$AA@ 100b3224 udis86:syn.obj + 0002:0001a228 ??_C@_03FEDGKBAA@cr3?$AA@ 100b3228 udis86:syn.obj + 0002:0001a22c ??_C@_03BLHHDHMH@cr4?$AA@ 100b322c udis86:syn.obj + 0002:0001a230 ??_C@_03CGMAGIG@cr5?$AA@ 100b3230 udis86:syn.obj + 0002:0001a234 ??_C@_03CJEBFFEF@cr6?$AA@ 100b3234 udis86:syn.obj + 0002:0001a238 ??_C@_03DAFKGEAE@cr7?$AA@ 100b3238 udis86:syn.obj + 0002:0001a23c ??_C@_03LHMCHIML@cr8?$AA@ 100b323c udis86:syn.obj + 0002:0001a240 ??_C@_03KONJEJIK@cr9?$AA@ 100b3240 udis86:syn.obj + 0002:0001a244 ??_C@_04NMJGNEDM@cr10?$AA@ 100b3244 udis86:syn.obj + 0002:0001a24c ??_C@_04MFINOFHN@cr11?$AA@ 100b324c udis86:syn.obj + 0002:0001a254 ??_C@_04OOKALGLO@cr12?$AA@ 100b3254 udis86:syn.obj + 0002:0001a25c ??_C@_04PHLLIHPP@cr13?$AA@ 100b325c udis86:syn.obj + 0002:0001a264 ??_C@_04LIPKBBDI@cr14?$AA@ 100b3264 udis86:syn.obj + 0002:0001a26c ??_C@_04KBOBCAHJ@cr15?$AA@ 100b326c udis86:syn.obj + 0002:0001a274 ??_C@_03OCMMMKHK@dr0?$AA@ 100b3274 udis86:syn.obj + 0002:0001a278 ??_C@_03PLNHPLDL@dr1?$AA@ 100b3278 udis86:syn.obj + 0002:0001a27c ??_C@_03NAPKKIPI@dr2?$AA@ 100b327c udis86:syn.obj + 0002:0001a280 ??_C@_03MJOBJJLJ@dr3?$AA@ 100b3280 udis86:syn.obj + 0002:0001a284 ??_C@_03IGKAAPHO@dr4?$AA@ 100b3284 udis86:syn.obj + 0002:0001a288 ??_C@_03JPLLDODP@dr5?$AA@ 100b3288 udis86:syn.obj + 0002:0001a28c ??_C@_03LEJGGNPM@dr6?$AA@ 100b328c udis86:syn.obj + 0002:0001a290 ??_C@_03KNINFMLN@dr7?$AA@ 100b3290 udis86:syn.obj + 0002:0001a294 ??_C@_03CKBFEAHC@dr8?$AA@ 100b3294 udis86:syn.obj + 0002:0001a298 ??_C@_03DDAOHBDD@dr9?$AA@ 100b3298 udis86:syn.obj + 0002:0001a29c ??_C@_04GOLGAICM@dr10?$AA@ 100b329c udis86:syn.obj + 0002:0001a2a4 ??_C@_04HHKNDJGN@dr11?$AA@ 100b32a4 udis86:syn.obj + 0002:0001a2ac ??_C@_04FMIAGKKO@dr12?$AA@ 100b32ac udis86:syn.obj + 0002:0001a2b4 ??_C@_04EFJLFLOP@dr13?$AA@ 100b32b4 udis86:syn.obj + 0002:0001a2bc ??_C@_04KNKMNCI@dr14?$AA@ 100b32bc udis86:syn.obj + 0002:0001a2c4 ??_C@_04BDMBPMGJ@dr15?$AA@ 100b32c4 udis86:syn.obj + 0002:0001a2cc ??_C@_03IILOGBLN@mm0?$AA@ 100b32cc udis86:syn.obj + 0002:0001a2d0 ??_C@_03JBKFFAPM@mm1?$AA@ 100b32d0 udis86:syn.obj + 0002:0001a2d4 ??_C@_03LKIIADDP@mm2?$AA@ 100b32d4 udis86:syn.obj + 0002:0001a2d8 ??_C@_03KDJDDCHO@mm3?$AA@ 100b32d8 udis86:syn.obj + 0002:0001a2dc ??_C@_03OMNCKELJ@mm4?$AA@ 100b32dc udis86:syn.obj + 0002:0001a2e0 ??_C@_03PFMJJFPI@mm5?$AA@ 100b32e0 udis86:syn.obj + 0002:0001a2e4 ??_C@_03NOOEMGDL@mm6?$AA@ 100b32e4 udis86:syn.obj + 0002:0001a2e8 ??_C@_03MHPPPHHK@mm7?$AA@ 100b32e8 udis86:syn.obj + 0002:0001a2ec ??_C@_03CLIPNJOO@st0?$AA@ 100b32ec udis86:syn.obj + 0002:0001a2f0 ??_C@_03DCJEOIKP@st1?$AA@ 100b32f0 udis86:syn.obj + 0002:0001a2f4 ??_C@_03BJLJLLGM@st2?$AA@ 100b32f4 udis86:syn.obj + 0002:0001a2f8 ??_C@_03KCIKCN@st3?$AA@ 100b32f8 udis86:syn.obj + 0002:0001a2fc ??_C@_03EPODBMOK@st4?$AA@ 100b32fc udis86:syn.obj + 0002:0001a300 ??_C@_03FGPICNKL@st5?$AA@ 100b3300 udis86:syn.obj + 0002:0001a304 ??_C@_03HNNFHOGI@st6?$AA@ 100b3304 udis86:syn.obj + 0002:0001a308 ??_C@_03GEMOEPCJ@st7?$AA@ 100b3308 udis86:syn.obj + 0002:0001a30c ??_C@_04KGHKOCLC@xmm0?$AA@ 100b330c udis86:syn.obj + 0002:0001a314 ??_C@_04LPGBNDPD@xmm1?$AA@ 100b3314 udis86:syn.obj + 0002:0001a31c ??_C@_04JEEMIADA@xmm2?$AA@ 100b331c udis86:syn.obj + 0002:0001a324 ??_C@_04INFHLBHB@xmm3?$AA@ 100b3324 udis86:syn.obj + 0002:0001a32c ??_C@_04MCBGCHLG@xmm4?$AA@ 100b332c udis86:syn.obj + 0002:0001a334 ??_C@_04NLANBGPH@xmm5?$AA@ 100b3334 udis86:syn.obj + 0002:0001a33c ??_C@_04PACAEFDE@xmm6?$AA@ 100b333c udis86:syn.obj + 0002:0001a344 ??_C@_04OJDLHEHF@xmm7?$AA@ 100b3344 udis86:syn.obj + 0002:0001a34c ??_C@_04GOKDGILK@xmm8?$AA@ 100b334c udis86:syn.obj + 0002:0001a354 ??_C@_04HHLIFJPL@xmm9?$AA@ 100b3354 udis86:syn.obj + 0002:0001a35c ??_C@_05PLENPEIG@xmm10?$AA@ 100b335c udis86:syn.obj + 0002:0001a364 ??_C@_05OCFGMFMH@xmm11?$AA@ 100b3364 udis86:syn.obj + 0002:0001a36c ??_C@_05MJHLJGAE@xmm12?$AA@ 100b336c udis86:syn.obj + 0002:0001a374 ??_C@_05NAGAKHEF@xmm13?$AA@ 100b3374 udis86:syn.obj + 0002:0001a37c ??_C@_05JPCBDBIC@xmm14?$AA@ 100b337c udis86:syn.obj + 0002:0001a384 ??_C@_05IGDKAAMD@xmm15?$AA@ 100b3384 udis86:syn.obj + 0002:0001a38c ??_C@_04JLBKMLAC@ymm0?$AA@ 100b338c udis86:syn.obj + 0002:0001a394 ??_C@_04ICABPKED@ymm1?$AA@ 100b3394 udis86:syn.obj + 0002:0001a39c ??_C@_04KJCMKJIA@ymm2?$AA@ 100b339c udis86:syn.obj + 0002:0001a3a4 ??_C@_04LADHJIMB@ymm3?$AA@ 100b33a4 udis86:syn.obj + 0002:0001a3ac ??_C@_04PPHGAOAG@ymm4?$AA@ 100b33ac udis86:syn.obj + 0002:0001a3b4 ??_C@_04OGGNDPEH@ymm5?$AA@ 100b33b4 udis86:syn.obj + 0002:0001a3bc ??_C@_04MNEAGMIE@ymm6?$AA@ 100b33bc udis86:syn.obj + 0002:0001a3c4 ??_C@_04NEFLFNMF@ymm7?$AA@ 100b33c4 udis86:syn.obj + 0002:0001a3cc ??_C@_04FDMDEBAK@ymm8?$AA@ 100b33cc udis86:syn.obj + 0002:0001a3d4 ??_C@_04EKNIHAEL@ymm9?$AA@ 100b33d4 udis86:syn.obj + 0002:0001a3dc ??_C@_05DABBCHCD@ymm10?$AA@ 100b33dc udis86:syn.obj + 0002:0001a3e4 ??_C@_05CJAKBGGC@ymm11?$AA@ 100b33e4 udis86:syn.obj + 0002:0001a3ec ??_C@_05CCHEFKB@ymm12?$AA@ 100b33ec udis86:syn.obj + 0002:0001a3f4 ??_C@_05BLDMHEOA@ymm13?$AA@ 100b33f4 udis86:syn.obj + 0002:0001a3fc ??_C@_05FEHNOCCH@ymm14?$AA@ 100b33fc udis86:syn.obj + 0002:0001a404 ??_C@_05ENGGNDGG@ymm15?$AA@ 100b3404 udis86:syn.obj + 0002:0001a40c ??_C@_03HHLEMBKN@rip?$AA@ 100b340c udis86:syn.obj + 0002:0001a410 ??_C@_08KBPBCHKK@?$CFs?$CF?$CLI64d?$AA@ 100b3410 udis86:syn.obj + 0002:0001a41c ??_C@_07NDNBFKNF@0x?$CFI64x?$AA@ 100b341c udis86:syn.obj + 0002:0001a424 ??_C@_08CDEEPEOG@?90x?$CFI64x?$AA@ 100b3424 udis86:syn.obj + 0002:0001a430 ??_C@_09DFCDNKEO@?$CFs0x?$CFI64x?$AA@ 100b3430 udis86:syn.obj + 0002:0001a440 __load_config_used 100b3440 LIBCMT:loadcfg.obj + 0002:0001a540 __tls_used 100b3540 LIBCMT:tlssup.obj + 0002:0001a558 ??_R4exception@std@@6B@ 100b3558 logging.cpp.obj + 0002:0001a56c ??_R3exception@std@@8 100b356c logging.cpp.obj + 0002:0001a57c ??_R2exception@std@@8 100b357c logging.cpp.obj + 0002:0001a584 ??_R1A@?0A@EA@exception@std@@8 100b3584 logging.cpp.obj + 0002:0001a5a0 ??_R4bad_array_new_length@std@@6B@ 100b35a0 logging.cpp.obj + 0002:0001a5b4 ??_R3bad_array_new_length@std@@8 100b35b4 logging.cpp.obj + 0002:0001a5c4 ??_R2bad_array_new_length@std@@8 100b35c4 logging.cpp.obj + 0002:0001a5d4 ??_R1A@?0A@EA@bad_array_new_length@std@@8 100b35d4 logging.cpp.obj + 0002:0001a5f0 ??_R1A@?0A@EA@bad_alloc@std@@8 100b35f0 logging.cpp.obj + 0002:0001a60c ??_R3bad_alloc@std@@8 100b360c logging.cpp.obj + 0002:0001a61c ??_R2bad_alloc@std@@8 100b361c logging.cpp.obj + 0002:0001a628 ??_R4bad_alloc@std@@6B@ 100b3628 logging.cpp.obj + 0002:0001a63c ??_R4ios_base@std@@6B@ 100b363c logging.cpp.obj + 0002:0001a650 ??_R3ios_base@std@@8 100b3650 logging.cpp.obj + 0002:0001a660 ??_R2ios_base@std@@8 100b3660 logging.cpp.obj + 0002:0001a66c ??_R1A@?0A@EA@ios_base@std@@8 100b366c logging.cpp.obj + 0002:0001a688 ??_R17?0A@EA@?$_Iosb@H@std@@8 100b3688 logging.cpp.obj + 0002:0001a6a4 ??_R3?$_Iosb@H@std@@8 100b36a4 logging.cpp.obj + 0002:0001a6b4 ??_R2?$_Iosb@H@std@@8 100b36b4 logging.cpp.obj + 0002:0001a6bc ??_R1A@?0A@EA@?$_Iosb@H@std@@8 100b36bc logging.cpp.obj + 0002:0001a6d8 ??_R4?$basic_ios@DU?$char_traits@D@std@@@std@@6B@ 100b36d8 logging.cpp.obj + 0002:0001a6ec ??_R3?$basic_ios@DU?$char_traits@D@std@@@std@@8 100b36ec logging.cpp.obj + 0002:0001a6fc ??_R2?$basic_ios@DU?$char_traits@D@std@@@std@@8 100b36fc logging.cpp.obj + 0002:0001a70c ??_R1A@?0A@EA@?$basic_ios@DU?$char_traits@D@std@@@std@@8 100b370c logging.cpp.obj + 0002:0001a728 ??_R4?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@ 100b3728 logging.cpp.obj + 0002:0001a73c ??_R3?$basic_streambuf@DU?$char_traits@D@std@@@std@@8 100b373c logging.cpp.obj + 0002:0001a74c ??_R2?$basic_streambuf@DU?$char_traits@D@std@@@std@@8 100b374c logging.cpp.obj + 0002:0001a754 ??_R1A@?0A@EA@?$basic_streambuf@DU?$char_traits@D@std@@@std@@8 100b3754 logging.cpp.obj + 0002:0001a770 ??_R4?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@ 100b3770 logging.cpp.obj + 0002:0001a784 ??_R3?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100b3784 logging.cpp.obj + 0002:0001a794 ??_R2?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100b3794 logging.cpp.obj + 0002:0001a7a8 ??_R1A@?0A@EA@?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100b37a8 logging.cpp.obj + 0002:0001a7c4 ??_R1A@A@3FA@?$basic_ios@DU?$char_traits@D@std@@@std@@8 100b37c4 logging.cpp.obj + 0002:0001a7e0 ??_R1A@A@3EA@ios_base@std@@8 100b37e0 logging.cpp.obj + 0002:0001a7fc ??_R17A@3EA@?$_Iosb@H@std@@8 100b37fc logging.cpp.obj + 0002:0001a818 ??_R4?$basic_filebuf@DU?$char_traits@D@std@@@std@@6B@ 100b3818 logging.cpp.obj + 0002:0001a82c ??_R3?$basic_filebuf@DU?$char_traits@D@std@@@std@@8 100b382c logging.cpp.obj + 0002:0001a83c ??_R2?$basic_filebuf@DU?$char_traits@D@std@@@std@@8 100b383c logging.cpp.obj + 0002:0001a848 ??_R1A@?0A@EA@?$basic_filebuf@DU?$char_traits@D@std@@@std@@8 100b3848 logging.cpp.obj + 0002:0001a864 ??_R4?$basic_ofstream@DU?$char_traits@D@std@@@std@@6B@ 100b3864 logging.cpp.obj + 0002:0001a878 ??_R3?$basic_ofstream@DU?$char_traits@D@std@@@std@@8 100b3878 logging.cpp.obj + 0002:0001a888 ??_R2?$basic_ofstream@DU?$char_traits@D@std@@@std@@8 100b3888 logging.cpp.obj + 0002:0001a8a0 ??_R1A@?0A@EA@?$basic_ofstream@DU?$char_traits@D@std@@@std@@8 100b38a0 logging.cpp.obj + 0002:0001a8bc ??_R4runtime_error@std@@6B@ 100b38bc logging.cpp.obj + 0002:0001a8d0 ??_R3runtime_error@std@@8 100b38d0 logging.cpp.obj + 0002:0001a8e0 ??_R2runtime_error@std@@8 100b38e0 logging.cpp.obj + 0002:0001a8ec ??_R1A@?0A@EA@runtime_error@std@@8 100b38ec logging.cpp.obj + 0002:0001a908 ??_R3error_category@std@@8 100b3908 logging.cpp.obj + 0002:0001a918 ??_R2error_category@std@@8 100b3918 logging.cpp.obj + 0002:0001a920 ??_R1A@?0A@EA@error_category@std@@8 100b3920 logging.cpp.obj + 0002:0001a93c ??_R4_System_error@std@@6B@ 100b393c logging.cpp.obj + 0002:0001a950 ??_R3_System_error@std@@8 100b3950 logging.cpp.obj + 0002:0001a960 ??_R2_System_error@std@@8 100b3960 logging.cpp.obj + 0002:0001a970 ??_R1A@?0A@EA@_System_error@std@@8 100b3970 logging.cpp.obj + 0002:0001a98c ??_R4system_error@std@@6B@ 100b398c logging.cpp.obj + 0002:0001a9a0 ??_R3system_error@std@@8 100b39a0 logging.cpp.obj + 0002:0001a9b0 ??_R2system_error@std@@8 100b39b0 logging.cpp.obj + 0002:0001a9c4 ??_R1A@?0A@EA@system_error@std@@8 100b39c4 logging.cpp.obj + 0002:0001a9e0 ??_R4_Iostream_error_category2@std@@6B@ 100b39e0 logging.cpp.obj + 0002:0001a9f4 ??_R3_Iostream_error_category2@std@@8 100b39f4 logging.cpp.obj + 0002:0001aa04 ??_R2_Iostream_error_category2@std@@8 100b3a04 logging.cpp.obj + 0002:0001aa10 ??_R1A@?0A@EA@_Iostream_error_category2@std@@8 100b3a10 logging.cpp.obj + 0002:0001aa2c ??_R4bad_cast@std@@6B@ 100b3a2c logging.cpp.obj + 0002:0001aa40 ??_R3bad_cast@std@@8 100b3a40 logging.cpp.obj + 0002:0001aa50 ??_R2bad_cast@std@@8 100b3a50 logging.cpp.obj + 0002:0001aa5c ??_R1A@?0A@EA@bad_cast@std@@8 100b3a5c logging.cpp.obj + 0002:0001aa78 ??_R4_Facet_base@std@@6B@ 100b3a78 logging.cpp.obj + 0002:0001aa8c ??_R3_Facet_base@std@@8 100b3a8c logging.cpp.obj + 0002:0001aa9c ??_R2_Facet_base@std@@8 100b3a9c logging.cpp.obj + 0002:0001aaa4 ??_R1A@?0A@EA@_Facet_base@std@@8 100b3aa4 logging.cpp.obj + 0002:0001aac0 ??_R3facet@locale@std@@8 100b3ac0 logging.cpp.obj + 0002:0001aad0 ??_R2facet@locale@std@@8 100b3ad0 logging.cpp.obj + 0002:0001aae0 ??_R1A@?0A@EA@facet@locale@std@@8 100b3ae0 logging.cpp.obj + 0002:0001aafc ??_R13?0A@EA@_Crt_new_delete@std@@8 100b3afc logging.cpp.obj + 0002:0001ab18 ??_R3_Crt_new_delete@std@@8 100b3b18 logging.cpp.obj + 0002:0001ab28 ??_R2_Crt_new_delete@std@@8 100b3b28 logging.cpp.obj + 0002:0001ab30 ??_R1A@?0A@EA@_Crt_new_delete@std@@8 100b3b30 logging.cpp.obj + 0002:0001ab4c ??_R3codecvt_base@std@@8 100b3b4c logging.cpp.obj + 0002:0001ab5c ??_R2codecvt_base@std@@8 100b3b5c logging.cpp.obj + 0002:0001ab70 ??_R1A@?0A@EA@codecvt_base@std@@8 100b3b70 logging.cpp.obj + 0002:0001ab8c ??_R3ctype_base@std@@8 100b3b8c logging.cpp.obj + 0002:0001ab9c ??_R2ctype_base@std@@8 100b3b9c logging.cpp.obj + 0002:0001abb0 ??_R1A@?0A@EA@ctype_base@std@@8 100b3bb0 logging.cpp.obj + 0002:0001abcc ??_R4?$ctype@D@std@@6B@ 100b3bcc logging.cpp.obj + 0002:0001abe0 ??_R3?$ctype@D@std@@8 100b3be0 logging.cpp.obj + 0002:0001abf0 ??_R2?$ctype@D@std@@8 100b3bf0 logging.cpp.obj + 0002:0001ac08 ??_R1A@?0A@EA@?$ctype@D@std@@8 100b3c08 logging.cpp.obj + 0002:0001ac24 ??_R4failure@ios_base@std@@6B@ 100b3c24 logging.cpp.obj + 0002:0001ac38 ??_R3failure@ios_base@std@@8 100b3c38 logging.cpp.obj + 0002:0001ac48 ??_R2failure@ios_base@std@@8 100b3c48 logging.cpp.obj + 0002:0001ac60 ??_R1A@?0A@EA@failure@ios_base@std@@8 100b3c60 logging.cpp.obj + 0002:0001ac7c ??_R4?$codecvt@DDU_Mbstatet@@@std@@6B@ 100b3c7c logging.cpp.obj + 0002:0001ac90 ??_R3?$codecvt@DDU_Mbstatet@@@std@@8 100b3c90 logging.cpp.obj + 0002:0001aca0 ??_R2?$codecvt@DDU_Mbstatet@@@std@@8 100b3ca0 logging.cpp.obj + 0002:0001acb8 ??_R1A@?0A@EA@?$codecvt@DDU_Mbstatet@@@std@@8 100b3cb8 logging.cpp.obj + 0002:0001acd4 ??_R4bad_exception@std@@6B@ 100b3cd4 main.cpp.obj + 0002:0001ace8 ??_R3bad_exception@std@@8 100b3ce8 main.cpp.obj + 0002:0001acf8 ??_R2bad_exception@std@@8 100b3cf8 main.cpp.obj + 0002:0001ad04 ??_R1A@?0A@EA@bad_exception@std@@8 100b3d04 main.cpp.obj + 0002:0001ad20 ??_R4?$basic_istream@DU?$char_traits@D@std@@@std@@6B@ 100b3d20 main.cpp.obj + 0002:0001ad34 ??_R3?$basic_istream@DU?$char_traits@D@std@@@std@@8 100b3d34 main.cpp.obj + 0002:0001ad44 ??_R2?$basic_istream@DU?$char_traits@D@std@@@std@@8 100b3d44 main.cpp.obj + 0002:0001ad58 ??_R1A@?0A@EA@?$basic_istream@DU?$char_traits@D@std@@@std@@8 100b3d58 main.cpp.obj + 0002:0001ad74 ??_R4?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@ 100b3d74 main.cpp.obj + 0002:0001ad88 ??_R3?$basic_iostream@DU?$char_traits@D@std@@@std@@8 100b3d88 main.cpp.obj + 0002:0001ad98 ??_R2?$basic_iostream@DU?$char_traits@D@std@@@std@@8 100b3d98 main.cpp.obj + 0002:0001adc0 ??_R1A@?0A@EA@?$basic_iostream@DU?$char_traits@D@std@@@std@@8 100b3dc0 main.cpp.obj + 0002:0001addc ??_R1BA@?0A@EA@?$basic_ostream@DU?$char_traits@D@std@@@std@@8 100b3ddc main.cpp.obj + 0002:0001adf8 ??_R4?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 100b3df8 main.cpp.obj + 0002:0001ae0c ??_R3?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3e0c main.cpp.obj + 0002:0001ae1c ??_R2?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3e1c main.cpp.obj + 0002:0001ae28 ??_R1A@?0A@EA@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3e28 main.cpp.obj + 0002:0001ae44 ??_R4?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 100b3e44 main.cpp.obj + 0002:0001ae58 ??_R3?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3e58 main.cpp.obj + 0002:0001ae68 ??_R2?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3e68 main.cpp.obj + 0002:0001ae80 ??_R1A@?0A@EA@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3e80 main.cpp.obj + 0002:0001ae9c ??_R4?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@ 100b3e9c main.cpp.obj + 0002:0001aeb0 ??_R3?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3eb0 main.cpp.obj + 0002:0001aec0 ??_R2?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3ec0 main.cpp.obj + 0002:0001aeec ??_R1A@?0A@EA@?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@8 100b3eec main.cpp.obj + 0002:0001af08 ??_R3_Ref_count_base@std@@8 100b3f08 main.cpp.obj + 0002:0001af18 ??_R2_Ref_count_base@std@@8 100b3f18 main.cpp.obj + 0002:0001af20 ??_R1A@?0A@EA@_Ref_count_base@std@@8 100b3f20 main.cpp.obj + 0002:0001af3c ??_R4exception@boost@@6B@ 100b3f3c main.cpp.obj + 0002:0001af50 ??_R3exception@boost@@8 100b3f50 main.cpp.obj + 0002:0001af60 ??_R2exception@boost@@8 100b3f60 main.cpp.obj + 0002:0001af68 ??_R1A@?0A@EA@exception@boost@@8 100b3f68 main.cpp.obj + 0002:0001af84 ??_R4error_info_base@exception_detail@boost@@6B@ 100b3f84 main.cpp.obj + 0002:0001af98 ??_R3error_info_base@exception_detail@boost@@8 100b3f98 main.cpp.obj + 0002:0001afa8 ??_R2error_info_base@exception_detail@boost@@8 100b3fa8 main.cpp.obj + 0002:0001afb0 ??_R1A@?0A@EA@error_info_base@exception_detail@boost@@8 100b3fb0 main.cpp.obj + 0002:0001afcc ??_R4error_info_container@exception_detail@boost@@6B@ 100b3fcc main.cpp.obj + 0002:0001afe0 ??_R3error_info_container@exception_detail@boost@@8 100b3fe0 main.cpp.obj + 0002:0001aff0 ??_R2error_info_container@exception_detail@boost@@8 100b3ff0 main.cpp.obj + 0002:0001aff8 ??_R1A@?0A@EA@error_info_container@exception_detail@boost@@8 100b3ff8 main.cpp.obj + 0002:0001b014 ??_R4clone_base@exception_detail@boost@@6B@ 100b4014 main.cpp.obj + 0002:0001b028 ??_R3clone_base@exception_detail@boost@@8 100b4028 main.cpp.obj + 0002:0001b038 ??_R2clone_base@exception_detail@boost@@8 100b4038 main.cpp.obj + 0002:0001b040 ??_R1A@?0A@EA@clone_base@exception_detail@boost@@8 100b4040 main.cpp.obj + 0002:0001b05c ??_R4sp_counted_base@detail@boost@@6B@ 100b405c main.cpp.obj + 0002:0001b070 ??_R3sp_counted_base@detail@boost@@8 100b4070 main.cpp.obj + 0002:0001b080 ??_R2sp_counted_base@detail@boost@@8 100b4080 main.cpp.obj + 0002:0001b088 ??_R1A@?0A@EA@sp_counted_base@detail@boost@@8 100b4088 main.cpp.obj + 0002:0001b0a4 ??_R4error_info_container_impl@exception_detail@boost@@6B@ 100b40a4 main.cpp.obj + 0002:0001b0b8 ??_R3error_info_container_impl@exception_detail@boost@@8 100b40b8 main.cpp.obj + 0002:0001b0c8 ??_R2error_info_container_impl@exception_detail@boost@@8 100b40c8 main.cpp.obj + 0002:0001b0d4 ??_R1A@?0A@EA@error_info_container_impl@exception_detail@boost@@8 100b40d4 main.cpp.obj + 0002:0001b0f0 ??_R4?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 100b40f0 main.cpp.obj + 0002:0001b104 ??_R3?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b4104 main.cpp.obj + 0002:0001b114 ??_R2?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b4114 main.cpp.obj + 0002:0001b128 ??_R1A@?0A@EA@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b4128 main.cpp.obj + 0002:0001b144 ??_R4bad_alloc_@exception_detail@boost@@6Bexception@2@@ 100b4144 main.cpp.obj + 0002:0001b158 ??_R3bad_alloc_@exception_detail@boost@@8 100b4158 main.cpp.obj + 0002:0001b168 ??_R2bad_alloc_@exception_detail@boost@@8 100b4168 main.cpp.obj + 0002:0001b17c ??_R1A@?0A@EA@bad_alloc_@exception_detail@boost@@8 100b417c main.cpp.obj + 0002:0001b198 ??_R1BI@?0A@EA@bad_alloc@std@@8 100b4198 main.cpp.obj + 0002:0001b1b4 ??_R1BI@?0A@EA@exception@std@@8 100b41b4 main.cpp.obj + 0002:0001b1d0 ??_R4bad_alloc_@exception_detail@boost@@6Bbad_alloc@std@@@ 100b41d0 main.cpp.obj + 0002:0001b1e4 ??_R4bad_exception_@exception_detail@boost@@6Bexception@2@@ 100b41e4 main.cpp.obj + 0002:0001b1f8 ??_R3bad_exception_@exception_detail@boost@@8 100b41f8 main.cpp.obj + 0002:0001b208 ??_R2bad_exception_@exception_detail@boost@@8 100b4208 main.cpp.obj + 0002:0001b21c ??_R1A@?0A@EA@bad_exception_@exception_detail@boost@@8 100b421c main.cpp.obj + 0002:0001b238 ??_R1BI@?0A@EA@bad_exception@std@@8 100b4238 main.cpp.obj + 0002:0001b254 ??_R4bad_exception_@exception_detail@boost@@6Bbad_exception@std@@@ 100b4254 main.cpp.obj + 0002:0001b268 ??_R4Error@hadesmem@@6Bexception@std@@@ 100b4268 main.cpp.obj + 0002:0001b27c ??_R3Error@hadesmem@@8 100b427c main.cpp.obj + 0002:0001b28c ??_R2Error@hadesmem@@8 100b428c main.cpp.obj + 0002:0001b29c ??_R1A@?0A@EA@Error@hadesmem@@8 100b429c main.cpp.obj + 0002:0001b2b8 ??_R1A@A@3FA@exception@std@@8 100b42b8 main.cpp.obj + 0002:0001b2d4 ??_R1A@A@7FA@exception@boost@@8 100b42d4 main.cpp.obj + 0002:0001b2f0 ??_R4Error@hadesmem@@6Bexception@boost@@@ 100b42f0 main.cpp.obj + 0002:0001b304 ??_R4?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@6B@ 100b4304 main.cpp.obj + 0002:0001b318 ??_R3?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@8 100b4318 main.cpp.obj + 0002:0001b328 ??_R2?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@8 100b4328 main.cpp.obj + 0002:0001b334 ??_R1A@?0A@EA@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@8 100b4334 main.cpp.obj + 0002:0001b350 ??_R4?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@6B@ 100b4350 main.cpp.obj + 0002:0001b364 ??_R3?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@8 100b4364 main.cpp.obj + 0002:0001b374 ??_R2?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@8 100b4374 main.cpp.obj + 0002:0001b380 ??_R1A@?0A@EA@?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@8 100b4380 main.cpp.obj + 0002:0001b39c ??_R3PatchDetourBase@hadesmem@@8 100b439c main.cpp.obj + 0002:0001b3ac ??_R2PatchDetourBase@hadesmem@@8 100b43ac main.cpp.obj + 0002:0001b3b4 ??_R1A@?0A@EA@PatchDetourBase@hadesmem@@8 100b43b4 main.cpp.obj + 0002:0001b3d0 ??_R4CDataStore@Nampower@@6B@ 100b43d0 main.cpp.obj + 0002:0001b3e4 ??_R3CDataStore@Nampower@@8 100b43e4 main.cpp.obj + 0002:0001b3f4 ??_R2CDataStore@Nampower@@8 100b43f4 main.cpp.obj + 0002:0001b3fc ??_R1A@?0A@EA@CDataStore@Nampower@@8 100b43fc main.cpp.obj + 0002:0001b418 ??_R4?$PatchDetour@P6IXXZPAX@hadesmem@@6B@ 100b4418 main.cpp.obj + 0002:0001b42c ??_R3?$PatchDetour@P6IXXZPAX@hadesmem@@8 100b442c main.cpp.obj + 0002:0001b43c ??_R2?$PatchDetour@P6IXXZPAX@hadesmem@@8 100b443c main.cpp.obj + 0002:0001b448 ??_R1A@?0A@EA@?$PatchDetour@P6IXXZPAX@hadesmem@@8 100b4448 main.cpp.obj + 0002:0001b464 ??_R4?$PatchDetour@P6GXXZPAX@hadesmem@@6B@ 100b4464 main.cpp.obj + 0002:0001b478 ??_R3?$PatchDetour@P6GXXZPAX@hadesmem@@8 100b4478 main.cpp.obj + 0002:0001b488 ??_R2?$PatchDetour@P6GXXZPAX@hadesmem@@8 100b4488 main.cpp.obj + 0002:0001b494 ??_R1A@?0A@EA@?$PatchDetour@P6GXXZPAX@hadesmem@@8 100b4494 main.cpp.obj + 0002:0001b4b0 ??_R4?$PatchDetour@P6IXHI@ZPAX@hadesmem@@6B@ 100b44b0 main.cpp.obj + 0002:0001b4c4 ??_R3?$PatchDetour@P6IXHI@ZPAX@hadesmem@@8 100b44c4 main.cpp.obj + 0002:0001b4d4 ??_R2?$PatchDetour@P6IXHI@ZPAX@hadesmem@@8 100b44d4 main.cpp.obj + 0002:0001b4e0 ??_R1A@?0A@EA@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@8 100b44e0 main.cpp.obj + 0002:0001b4fc ??_R4?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@6B@ 100b44fc main.cpp.obj + 0002:0001b510 ??_R3?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@8 100b4510 main.cpp.obj + 0002:0001b520 ??_R2?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@8 100b4520 main.cpp.obj + 0002:0001b52c ??_R1A@?0A@EA@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@8 100b452c main.cpp.obj + 0002:0001b548 ??_R4?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@6B@ 100b4548 main.cpp.obj + 0002:0001b55c ??_R3?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@8 100b455c main.cpp.obj + 0002:0001b56c ??_R2?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@8 100b456c main.cpp.obj + 0002:0001b578 ??_R1A@?0A@EA@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@8 100b4578 main.cpp.obj + 0002:0001b594 ??_R4?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@6B@ 100b4594 main.cpp.obj + 0002:0001b5a8 ??_R3?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@8 100b45a8 main.cpp.obj + 0002:0001b5b8 ??_R2?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@8 100b45b8 main.cpp.obj + 0002:0001b5c4 ??_R1A@?0A@EA@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@8 100b45c4 main.cpp.obj + 0002:0001b5e0 ??_R4?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@6B@ 100b45e0 main.cpp.obj + 0002:0001b5f4 ??_R3?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@8 100b45f4 main.cpp.obj + 0002:0001b604 ??_R2?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@8 100b4604 main.cpp.obj + 0002:0001b610 ??_R1A@?0A@EA@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@8 100b4610 main.cpp.obj + 0002:0001b62c ??_R4?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@6B@ 100b462c main.cpp.obj + 0002:0001b640 ??_R3?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@8 100b4640 main.cpp.obj + 0002:0001b650 ??_R2?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@8 100b4650 main.cpp.obj + 0002:0001b65c ??_R1A@?0A@EA@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@8 100b465c main.cpp.obj + 0002:0001b678 ??_R4?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@6B@ 100b4678 main.cpp.obj + 0002:0001b68c ??_R3?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@8 100b468c main.cpp.obj + 0002:0001b69c ??_R2?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@8 100b469c main.cpp.obj + 0002:0001b6a8 ??_R1A@?0A@EA@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@8 100b46a8 main.cpp.obj + 0002:0001b6c4 ??_R4?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@6B@ 100b46c4 main.cpp.obj + 0002:0001b6d8 ??_R3?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@8 100b46d8 main.cpp.obj + 0002:0001b6e8 ??_R2?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@8 100b46e8 main.cpp.obj + 0002:0001b6f4 ??_R1A@?0A@EA@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@8 100b46f4 main.cpp.obj + 0002:0001b710 ??_R4?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@6B@ 100b4710 main.cpp.obj + 0002:0001b724 ??_R3?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@8 100b4724 main.cpp.obj + 0002:0001b734 ??_R2?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@8 100b4734 main.cpp.obj + 0002:0001b740 ??_R1A@?0A@EA@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@8 100b4740 main.cpp.obj + 0002:0001b75c ??_R4?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b475c main.cpp.obj + 0002:0001b770 ??_R3?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b4770 main.cpp.obj + 0002:0001b780 ??_R2?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b4780 main.cpp.obj + 0002:0001b78c ??_R1A@?0A@EA@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b478c main.cpp.obj + 0002:0001b7a8 ??_R4?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@6B@ 100b47a8 main.cpp.obj + 0002:0001b7bc ??_R3?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@8 100b47bc main.cpp.obj + 0002:0001b7cc ??_R2?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@8 100b47cc main.cpp.obj + 0002:0001b7d8 ??_R1A@?0A@EA@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@8 100b47d8 main.cpp.obj + 0002:0001b7f4 ??_R4?$PatchDetour@P6IH_K@ZPAX@hadesmem@@6B@ 100b47f4 main.cpp.obj + 0002:0001b808 ??_R3?$PatchDetour@P6IH_K@ZPAX@hadesmem@@8 100b4808 main.cpp.obj + 0002:0001b818 ??_R2?$PatchDetour@P6IH_K@ZPAX@hadesmem@@8 100b4818 main.cpp.obj + 0002:0001b824 ??_R1A@?0A@EA@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@8 100b4824 main.cpp.obj + 0002:0001b840 ??_R4?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@6B@ 100b4840 main.cpp.obj + 0002:0001b854 ??_R3?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@8 100b4854 main.cpp.obj + 0002:0001b864 ??_R2?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@8 100b4864 main.cpp.obj + 0002:0001b870 ??_R1A@?0A@EA@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@8 100b4870 main.cpp.obj + 0002:0001b88c ??_R4?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@6B@ 100b488c main.cpp.obj + 0002:0001b8a0 ??_R3?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@8 100b48a0 main.cpp.obj + 0002:0001b8b0 ??_R2?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@8 100b48b0 main.cpp.obj + 0002:0001b8bc ??_R1A@?0A@EA@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@8 100b48bc main.cpp.obj + 0002:0001b8d8 ??_R4?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@6B@ 100b48d8 main.cpp.obj + 0002:0001b8ec ??_R3?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@8 100b48ec main.cpp.obj + 0002:0001b8fc ??_R2?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@8 100b48fc main.cpp.obj + 0002:0001b908 ??_R1A@?0A@EA@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@8 100b4908 main.cpp.obj + 0002:0001b924 ??_R4?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b4924 main.cpp.obj + 0002:0001b938 ??_R3?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b4938 main.cpp.obj + 0002:0001b948 ??_R2?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b4948 main.cpp.obj + 0002:0001b954 ??_R1A@?0A@EA@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b4954 main.cpp.obj + 0002:0001b970 ??_R4?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b4970 main.cpp.obj + 0002:0001b984 ??_R3?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b4984 main.cpp.obj + 0002:0001b994 ??_R2?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b4994 main.cpp.obj + 0002:0001b9a0 ??_R1A@?0A@EA@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b49a0 main.cpp.obj + 0002:0001b9bc ??_R4?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@6B@ 100b49bc main.cpp.obj + 0002:0001b9d0 ??_R3?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b49d0 main.cpp.obj + 0002:0001b9e0 ??_R2?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b49e0 main.cpp.obj + 0002:0001b9ec ??_R1A@?0A@EA@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@8 100b49ec main.cpp.obj + 0002:0001ba08 ??_R4?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@6B@ 100b4a08 main.cpp.obj + 0002:0001ba1c ??_R3?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@8 100b4a1c main.cpp.obj + 0002:0001ba2c ??_R2?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@8 100b4a2c main.cpp.obj + 0002:0001ba38 ??_R1A@?0A@EA@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@8 100b4a38 main.cpp.obj + 0002:0001ba54 ??_R4?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@6B@ 100b4a54 main.cpp.obj + 0002:0001ba68 ??_R3?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@8 100b4a68 main.cpp.obj + 0002:0001ba78 ??_R2?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@8 100b4a78 main.cpp.obj + 0002:0001ba84 ??_R1A@?0A@EA@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@8 100b4a84 main.cpp.obj + 0002:0001baa0 ??_R4?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@6B@ 100b4aa0 main.cpp.obj + 0002:0001bab4 ??_R3?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@8 100b4ab4 main.cpp.obj + 0002:0001bac4 ??_R2?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@8 100b4ac4 main.cpp.obj + 0002:0001bad0 ??_R1A@?0A@EA@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@8 100b4ad0 main.cpp.obj + 0002:0001baec ??_R4?$PatchDetour@P6IX_K@ZPAX@hadesmem@@6B@ 100b4aec main.cpp.obj + 0002:0001bb00 ??_R3?$PatchDetour@P6IX_K@ZPAX@hadesmem@@8 100b4b00 main.cpp.obj + 0002:0001bb10 ??_R2?$PatchDetour@P6IX_K@ZPAX@hadesmem@@8 100b4b10 main.cpp.obj + 0002:0001bb1c ??_R1A@?0A@EA@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@8 100b4b1c main.cpp.obj + 0002:0001bb38 ??_R4?$PatchDetour@P6IXEH@ZPAX@hadesmem@@6B@ 100b4b38 main.cpp.obj + 0002:0001bb4c ??_R3?$PatchDetour@P6IXEH@ZPAX@hadesmem@@8 100b4b4c main.cpp.obj + 0002:0001bb5c ??_R2?$PatchDetour@P6IXEH@ZPAX@hadesmem@@8 100b4b5c main.cpp.obj + 0002:0001bb68 ??_R1A@?0A@EA@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@8 100b4b68 main.cpp.obj + 0002:0001bb84 ??_R4?$PatchDetour@P6IXI@ZPAX@hadesmem@@6B@ 100b4b84 main.cpp.obj + 0002:0001bb98 ??_R3?$PatchDetour@P6IXI@ZPAX@hadesmem@@8 100b4b98 main.cpp.obj + 0002:0001bba8 ??_R2?$PatchDetour@P6IXI@ZPAX@hadesmem@@8 100b4ba8 main.cpp.obj + 0002:0001bbb4 ??_R1A@?0A@EA@?$PatchDetour@P6IXI@ZPAX@hadesmem@@8 100b4bb4 main.cpp.obj + 0002:0001bbd0 ??_R4?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@6B@ 100b4bd0 main.cpp.obj + 0002:0001bbe4 ??_R3?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@8 100b4be4 main.cpp.obj + 0002:0001bbf4 ??_R2?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@8 100b4bf4 main.cpp.obj + 0002:0001bc00 ??_R1A@?0A@EA@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@8 100b4c00 main.cpp.obj + 0002:0001bc1c ??_R4?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@6B@ 100b4c1c main.cpp.obj + 0002:0001bc30 ??_R3?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@8 100b4c30 main.cpp.obj + 0002:0001bc40 ??_R2?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@8 100b4c40 main.cpp.obj + 0002:0001bc4c ??_R1A@?0A@EA@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@8 100b4c4c main.cpp.obj + 0002:0001bc68 ??_R4?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@6B@ 100b4c68 main.cpp.obj + 0002:0001bc7c ??_R3?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@8 100b4c7c main.cpp.obj + 0002:0001bc8c ??_R2?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@8 100b4c8c main.cpp.obj + 0002:0001bc98 ??_R1A@?0A@EA@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@8 100b4c98 main.cpp.obj + 0002:0001bcb4 ??_R4?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@6B@ 100b4cb4 main.cpp.obj + 0002:0001bcc8 ??_R3?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@8 100b4cc8 main.cpp.obj + 0002:0001bcd8 ??_R2?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@8 100b4cd8 main.cpp.obj + 0002:0001bce4 ??_R1A@?0A@EA@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@8 100b4ce4 main.cpp.obj + 0002:0001bd00 ??_R4?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@6B@ 100b4d00 main.cpp.obj + 0002:0001bd14 ??_R3?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@8 100b4d14 main.cpp.obj + 0002:0001bd24 ??_R2?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@8 100b4d24 main.cpp.obj + 0002:0001bd30 ??_R1A@?0A@EA@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@8 100b4d30 main.cpp.obj + 0002:0001bd4c ??_R4?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@6B@ 100b4d4c main.cpp.obj + 0002:0001bd60 ??_R3?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@8 100b4d60 main.cpp.obj + 0002:0001bd70 ??_R2?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@8 100b4d70 main.cpp.obj + 0002:0001bd7c ??_R1A@?0A@EA@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@8 100b4d7c main.cpp.obj + 0002:0001bd98 ??_R4?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@6B@ 100b4d98 main.cpp.obj + 0002:0001bdac ??_R3?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@8 100b4dac main.cpp.obj + 0002:0001bdbc ??_R2?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@8 100b4dbc main.cpp.obj + 0002:0001bdc8 ??_R1A@?0A@EA@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@8 100b4dc8 main.cpp.obj + 0002:0001bde4 ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b4de4 main.cpp.obj + 0002:0001bdf4 ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b4df4 main.cpp.obj + 0002:0001bdfc ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b4dfc main.cpp.obj + 0002:0001be18 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@8 100b4e18 main.cpp.obj + 0002:0001be28 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@8 100b4e28 main.cpp.obj + 0002:0001be30 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@8 100b4e30 main.cpp.obj + 0002:0001be4c ??_R4?$numpunct@D@std@@6B@ 100b4e4c main.cpp.obj + 0002:0001be60 ??_R3?$numpunct@D@std@@8 100b4e60 main.cpp.obj + 0002:0001be70 ??_R2?$numpunct@D@std@@8 100b4e70 main.cpp.obj + 0002:0001be84 ??_R1A@?0A@EA@?$numpunct@D@std@@8 100b4e84 main.cpp.obj + 0002:0001bea0 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@8 100b4ea0 main.cpp.obj + 0002:0001beb0 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@8 100b4eb0 main.cpp.obj + 0002:0001beb8 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@8 100b4eb8 main.cpp.obj + 0002:0001bed4 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b4ed4 main.cpp.obj + 0002:0001bee4 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b4ee4 main.cpp.obj + 0002:0001beec ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b4eec main.cpp.obj + 0002:0001bf08 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@8 100b4f08 main.cpp.obj + 0002:0001bf18 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@8 100b4f18 main.cpp.obj + 0002:0001bf20 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@8 100b4f20 main.cpp.obj + 0002:0001bf3c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@8 100b4f3c main.cpp.obj + 0002:0001bf4c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@8 100b4f4c main.cpp.obj + 0002:0001bf54 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@8 100b4f54 main.cpp.obj + 0002:0001bf70 ??_R3?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@8 100b4f70 main.cpp.obj + 0002:0001bf80 ??_R2?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@8 100b4f80 main.cpp.obj + 0002:0001bf88 ??_R1A@?0A@EA@?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@8 100b4f88 main.cpp.obj + 0002:0001bfa4 ??_R3?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@8 100b4fa4 main.cpp.obj + 0002:0001bfb4 ??_R2?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@8 100b4fb4 main.cpp.obj + 0002:0001bfbc ??_R1A@?0A@EA@?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@8 100b4fbc main.cpp.obj + 0002:0001bfd8 ??_R3?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@8 100b4fd8 main.cpp.obj + 0002:0001bfe8 ??_R2?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@8 100b4fe8 main.cpp.obj + 0002:0001bff0 ??_R1A@?0A@EA@?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@8 100b4ff0 main.cpp.obj + 0002:0001c00c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@8 100b500c main.cpp.obj + 0002:0001c01c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@8 100b501c main.cpp.obj + 0002:0001c024 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@8 100b5024 main.cpp.obj + 0002:0001c040 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@8 100b5040 main.cpp.obj + 0002:0001c050 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@8 100b5050 main.cpp.obj + 0002:0001c058 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@8 100b5058 main.cpp.obj + 0002:0001c074 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@8 100b5074 main.cpp.obj + 0002:0001c084 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@8 100b5084 main.cpp.obj + 0002:0001c08c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@8 100b508c main.cpp.obj + 0002:0001c0a8 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@8 100b50a8 main.cpp.obj + 0002:0001c0b8 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@8 100b50b8 main.cpp.obj + 0002:0001c0c0 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@8 100b50c0 main.cpp.obj + 0002:0001c0dc ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@8 100b50dc main.cpp.obj + 0002:0001c0ec ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@8 100b50ec main.cpp.obj + 0002:0001c0f4 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@8 100b50f4 main.cpp.obj + 0002:0001c110 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@8 100b5110 main.cpp.obj + 0002:0001c120 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@8 100b5120 main.cpp.obj + 0002:0001c128 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@8 100b5128 main.cpp.obj + 0002:0001c144 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@8 100b5144 main.cpp.obj + 0002:0001c154 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@8 100b5154 main.cpp.obj + 0002:0001c15c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@8 100b515c main.cpp.obj + 0002:0001c178 ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@8 100b5178 main.cpp.obj + 0002:0001c188 ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@8 100b5188 main.cpp.obj + 0002:0001c190 ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@8 100b5190 main.cpp.obj + 0002:0001c1ac ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@8 100b51ac main.cpp.obj + 0002:0001c1bc ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@8 100b51bc main.cpp.obj + 0002:0001c1c4 ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@8 100b51c4 main.cpp.obj + 0002:0001c1e0 ??_R3?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@8 100b51e0 main.cpp.obj + 0002:0001c1f0 ??_R2?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@8 100b51f0 main.cpp.obj + 0002:0001c1f8 ??_R1A@?0A@EA@?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@8 100b51f8 main.cpp.obj + 0002:0001c214 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@8 100b5214 main.cpp.obj + 0002:0001c224 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@8 100b5224 main.cpp.obj + 0002:0001c22c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@8 100b522c main.cpp.obj + 0002:0001c248 ??_R3?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@8 100b5248 main.cpp.obj + 0002:0001c258 ??_R2?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@8 100b5258 main.cpp.obj + 0002:0001c260 ??_R1A@?0A@EA@?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@8 100b5260 main.cpp.obj + 0002:0001c27c ??_R3?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@8 100b527c main.cpp.obj + 0002:0001c28c ??_R2?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@8 100b528c main.cpp.obj + 0002:0001c294 ??_R1A@?0A@EA@?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@8 100b5294 main.cpp.obj + 0002:0001c2b0 ??_R3?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b52b0 main.cpp.obj + 0002:0001c2c0 ??_R2?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b52c0 main.cpp.obj + 0002:0001c2c8 ??_R1A@?0A@EA@?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b52c8 main.cpp.obj + 0002:0001c2e4 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@8 100b52e4 main.cpp.obj + 0002:0001c2f4 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@8 100b52f4 main.cpp.obj + 0002:0001c2fc ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@8 100b52fc main.cpp.obj + 0002:0001c318 ??_R3?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b5318 main.cpp.obj + 0002:0001c328 ??_R2?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b5328 main.cpp.obj + 0002:0001c330 ??_R1A@?0A@EA@?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@8 100b5330 main.cpp.obj + 0002:0001c34c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@8 100b534c main.cpp.obj + 0002:0001c35c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@8 100b535c main.cpp.obj + 0002:0001c364 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@8 100b5364 main.cpp.obj + 0002:0001c380 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@8 100b5380 main.cpp.obj + 0002:0001c390 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@8 100b5390 main.cpp.obj + 0002:0001c398 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@8 100b5398 main.cpp.obj + 0002:0001c3b4 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@8 100b53b4 main.cpp.obj + 0002:0001c3c4 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@8 100b53c4 main.cpp.obj + 0002:0001c3cc ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@8 100b53cc main.cpp.obj + 0002:0001c3e8 ??_R3?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@8 100b53e8 main.cpp.obj + 0002:0001c3f8 ??_R2?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@8 100b53f8 main.cpp.obj + 0002:0001c400 ??_R1A@?0A@EA@?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@8 100b5400 main.cpp.obj + 0002:0001c41c ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@8 100b541c main.cpp.obj + 0002:0001c42c ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@8 100b542c main.cpp.obj + 0002:0001c434 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@8 100b5434 main.cpp.obj + 0002:0001c450 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@8 100b5450 main.cpp.obj + 0002:0001c460 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@8 100b5460 main.cpp.obj + 0002:0001c468 ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@8 100b5468 main.cpp.obj + 0002:0001c484 ??_R3?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@8 100b5484 main.cpp.obj + 0002:0001c494 ??_R2?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@8 100b5494 main.cpp.obj + 0002:0001c49c ??_R1A@?0A@EA@?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@8 100b549c main.cpp.obj + 0002:0001c4b8 ??_R4?$wrapexcept@VError@hadesmem@@@boost@@6B@ 100b54b8 main.cpp.obj + 0002:0001c4cc ??_R3?$wrapexcept@VError@hadesmem@@@boost@@8 100b54cc main.cpp.obj + 0002:0001c4dc ??_R2?$wrapexcept@VError@hadesmem@@@boost@@8 100b54dc main.cpp.obj + 0002:0001c4f8 ??_R1A@?0A@EA@?$wrapexcept@VError@hadesmem@@@boost@@8 100b54f8 main.cpp.obj + 0002:0001c514 ??_R13?0A@EA@Error@hadesmem@@8 100b5514 main.cpp.obj + 0002:0001c530 ??_R1A@33FA@exception@std@@8 100b5530 main.cpp.obj + 0002:0001c54c ??_R1A@37FA@exception@boost@@8 100b554c main.cpp.obj + 0002:0001c568 ??_R17?0A@EA@type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b5568 main.cpp.obj + 0002:0001c584 ??_R3type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b5584 main.cpp.obj + 0002:0001c594 ??_R2type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b5594 main.cpp.obj + 0002:0001c59c ??_R1A@?0A@EA@type@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@8 100b559c main.cpp.obj + 0002:0001c5b8 ??_R4?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@std@@@ 100b55b8 main.cpp.obj + 0002:0001c5cc ??_R4?$wrapexcept@VError@hadesmem@@@boost@@6Bexception@1@@ 100b55cc main.cpp.obj + 0002:0001c5e0 ??_R4?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ 100b55e0 main.cpp.obj + 0002:0001c5f4 ??_R3?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b55f4 main.cpp.obj + 0002:0001c604 ??_R2?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b5604 main.cpp.obj + 0002:0001c618 ??_R1A@?0A@EA@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@8 100b5618 main.cpp.obj + 0002:0001c634 ??_R4?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 100b5634 main.cpp.obj + 0002:0001c648 ??_R3?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b5648 main.cpp.obj + 0002:0001c658 ??_R2?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b5658 main.cpp.obj + 0002:0001c664 ??_R1A@?0A@EA@?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b5664 main.cpp.obj + 0002:0001c680 ??_R4?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@6B@ 100b5680 main.cpp.obj + 0002:0001c694 ??_R3?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b5694 main.cpp.obj + 0002:0001c6a4 ??_R2?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b56a4 main.cpp.obj + 0002:0001c6b0 ??_R1A@?0A@EA@?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@8 100b56b0 main.cpp.obj + 0002:0001c6cc ??_R4?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 100b56cc main.cpp.obj + 0002:0001c6e0 ??_R3?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@8 100b56e0 main.cpp.obj + 0002:0001c6f0 ??_R2?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@8 100b56f0 main.cpp.obj + 0002:0001c70c ??_R1A@?0A@EA@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@8 100b570c main.cpp.obj + 0002:0001c728 ??_R1A@CE@3FA@clone_base@exception_detail@boost@@8 100b5728 main.cpp.obj + 0002:0001c744 ??_R4?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6Bbad_alloc@std@@@ 100b5744 main.cpp.obj + 0002:0001c758 ??_R4?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@6B@ 100b5758 main.cpp.obj + 0002:0001c76c ??_R4?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bexception@2@@ 100b576c main.cpp.obj + 0002:0001c780 ??_R3?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@8 100b5780 main.cpp.obj + 0002:0001c790 ??_R2?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@8 100b5790 main.cpp.obj + 0002:0001c7ac ??_R1A@?0A@EA@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@8 100b57ac main.cpp.obj + 0002:0001c7c8 ??_R4?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6Bbad_exception@std@@@ 100b57c8 main.cpp.obj + 0002:0001c7dc ??_R4?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@6B@ 100b57dc main.cpp.obj + 0002:0001c7f0 ??_R4?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@6B@ 100b57f0 main.cpp.obj + 0002:0001c804 ??_R3?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@8 100b5804 main.cpp.obj + 0002:0001c814 ??_R2?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@8 100b5814 main.cpp.obj + 0002:0001c820 ??_R1A@?0A@EA@?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@8 100b5820 main.cpp.obj + 0002:0001c83c ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@6B@ 100b583c main.cpp.obj + 0002:0001c850 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@8 100b5850 main.cpp.obj + 0002:0001c860 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@8 100b5860 main.cpp.obj + 0002:0001c86c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@8 100b586c main.cpp.obj + 0002:0001c888 ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@6B@ 100b5888 main.cpp.obj + 0002:0001c89c ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@8 100b589c main.cpp.obj + 0002:0001c8ac ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@8 100b58ac main.cpp.obj + 0002:0001c8b8 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@8 100b58b8 main.cpp.obj + 0002:0001c8d4 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@6B@ 100b58d4 main.cpp.obj + 0002:0001c8e8 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@8 100b58e8 main.cpp.obj + 0002:0001c8f8 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@8 100b58f8 main.cpp.obj + 0002:0001c904 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@8 100b5904 main.cpp.obj + 0002:0001c920 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@6B@ 100b5920 main.cpp.obj + 0002:0001c934 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@8 100b5934 main.cpp.obj + 0002:0001c944 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@8 100b5944 main.cpp.obj + 0002:0001c950 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@8 100b5950 main.cpp.obj + 0002:0001c96c ??_R4?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@6B@ 100b596c main.cpp.obj + 0002:0001c980 ??_R3?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@8 100b5980 main.cpp.obj + 0002:0001c990 ??_R2?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@8 100b5990 main.cpp.obj + 0002:0001c99c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@8 100b599c main.cpp.obj + 0002:0001c9b8 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@6B@ 100b59b8 main.cpp.obj + 0002:0001c9cc ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@8 100b59cc main.cpp.obj + 0002:0001c9dc ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@8 100b59dc main.cpp.obj + 0002:0001c9e8 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@8 100b59e8 main.cpp.obj + 0002:0001ca04 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@6B@ 100b5a04 main.cpp.obj + 0002:0001ca18 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@8 100b5a18 main.cpp.obj + 0002:0001ca28 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@8 100b5a28 main.cpp.obj + 0002:0001ca34 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@8 100b5a34 main.cpp.obj + 0002:0001ca50 ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@6B@ 100b5a50 main.cpp.obj + 0002:0001ca64 ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@8 100b5a64 main.cpp.obj + 0002:0001ca74 ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@8 100b5a74 main.cpp.obj + 0002:0001ca80 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@8 100b5a80 main.cpp.obj + 0002:0001ca9c ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@6B@ 100b5a9c main.cpp.obj + 0002:0001cab0 ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@8 100b5ab0 main.cpp.obj + 0002:0001cac0 ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@8 100b5ac0 main.cpp.obj + 0002:0001cacc ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@8 100b5acc main.cpp.obj + 0002:0001cae8 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@6B@ 100b5ae8 main.cpp.obj + 0002:0001cafc ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@8 100b5afc main.cpp.obj + 0002:0001cb0c ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@8 100b5b0c main.cpp.obj + 0002:0001cb18 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@8 100b5b18 main.cpp.obj + 0002:0001cb34 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@6B@ 100b5b34 main.cpp.obj + 0002:0001cb48 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@8 100b5b48 main.cpp.obj + 0002:0001cb58 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@8 100b5b58 main.cpp.obj + 0002:0001cb64 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@8 100b5b64 main.cpp.obj + 0002:0001cb80 ??_R4?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@6B@ 100b5b80 main.cpp.obj + 0002:0001cb94 ??_R3?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@8 100b5b94 main.cpp.obj + 0002:0001cba4 ??_R2?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@8 100b5ba4 main.cpp.obj + 0002:0001cbb0 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@8 100b5bb0 main.cpp.obj + 0002:0001cbcc ??_R4?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@6B@ 100b5bcc main.cpp.obj + 0002:0001cbe0 ??_R3?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@8 100b5be0 main.cpp.obj + 0002:0001cbf0 ??_R2?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@8 100b5bf0 main.cpp.obj + 0002:0001cbfc ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@8 100b5bfc main.cpp.obj + 0002:0001cc18 ??_R4?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@6B@ 100b5c18 main.cpp.obj + 0002:0001cc2c ??_R3?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@8 100b5c2c main.cpp.obj + 0002:0001cc3c ??_R2?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@8 100b5c3c main.cpp.obj + 0002:0001cc48 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@8 100b5c48 main.cpp.obj + 0002:0001cc64 ??_R4?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@6B@ 100b5c64 main.cpp.obj + 0002:0001cc78 ??_R3?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@8 100b5c78 main.cpp.obj + 0002:0001cc88 ??_R2?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@8 100b5c88 main.cpp.obj + 0002:0001cc94 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@8 100b5c94 main.cpp.obj + 0002:0001ccb0 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@6B@ 100b5cb0 main.cpp.obj + 0002:0001ccc4 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@8 100b5cc4 main.cpp.obj + 0002:0001ccd4 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@8 100b5cd4 main.cpp.obj + 0002:0001cce0 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@8 100b5ce0 main.cpp.obj + 0002:0001ccfc ??_R4?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@6B@ 100b5cfc main.cpp.obj + 0002:0001cd10 ??_R3?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@8 100b5d10 main.cpp.obj + 0002:0001cd20 ??_R2?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@8 100b5d20 main.cpp.obj + 0002:0001cd2c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@8 100b5d2c main.cpp.obj + 0002:0001cd48 ??_R4?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@6B@ 100b5d48 main.cpp.obj + 0002:0001cd5c ??_R3?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@8 100b5d5c main.cpp.obj + 0002:0001cd6c ??_R2?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@8 100b5d6c main.cpp.obj + 0002:0001cd78 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@8 100b5d78 main.cpp.obj + 0002:0001cd94 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@6B@ 100b5d94 main.cpp.obj + 0002:0001cda8 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@8 100b5da8 main.cpp.obj + 0002:0001cdb8 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@8 100b5db8 main.cpp.obj + 0002:0001cdc4 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@8 100b5dc4 main.cpp.obj + 0002:0001cde0 ??_R4?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@6B@ 100b5de0 main.cpp.obj + 0002:0001cdf4 ??_R3?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@8 100b5df4 main.cpp.obj + 0002:0001ce04 ??_R2?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@8 100b5e04 main.cpp.obj + 0002:0001ce10 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@8 100b5e10 main.cpp.obj + 0002:0001ce2c ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@6B@ 100b5e2c main.cpp.obj + 0002:0001ce40 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@8 100b5e40 main.cpp.obj + 0002:0001ce50 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@8 100b5e50 main.cpp.obj + 0002:0001ce5c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@8 100b5e5c main.cpp.obj + 0002:0001ce78 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@6B@ 100b5e78 main.cpp.obj + 0002:0001ce8c ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@8 100b5e8c main.cpp.obj + 0002:0001ce9c ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@8 100b5e9c main.cpp.obj + 0002:0001cea8 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@8 100b5ea8 main.cpp.obj + 0002:0001cec4 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@6B@ 100b5ec4 main.cpp.obj + 0002:0001ced8 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@8 100b5ed8 main.cpp.obj + 0002:0001cee8 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@8 100b5ee8 main.cpp.obj + 0002:0001cef4 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@8 100b5ef4 main.cpp.obj + 0002:0001cf10 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@6B@ 100b5f10 main.cpp.obj + 0002:0001cf24 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@8 100b5f24 main.cpp.obj + 0002:0001cf34 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@8 100b5f34 main.cpp.obj + 0002:0001cf40 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@8 100b5f40 main.cpp.obj + 0002:0001cf5c ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@6B@ 100b5f5c main.cpp.obj + 0002:0001cf70 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@8 100b5f70 main.cpp.obj + 0002:0001cf80 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@8 100b5f80 main.cpp.obj + 0002:0001cf8c ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@8 100b5f8c main.cpp.obj + 0002:0001cfa8 ??_R4?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@6B@ 100b5fa8 main.cpp.obj + 0002:0001cfbc ??_R3?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@8 100b5fbc main.cpp.obj + 0002:0001cfcc ??_R2?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@8 100b5fcc main.cpp.obj + 0002:0001cfd8 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@8 100b5fd8 main.cpp.obj + 0002:0001cff4 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@6B@ 100b5ff4 main.cpp.obj + 0002:0001d008 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@8 100b6008 main.cpp.obj + 0002:0001d018 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@8 100b6018 main.cpp.obj + 0002:0001d024 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@8 100b6024 main.cpp.obj + 0002:0001d040 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@6B@ 100b6040 main.cpp.obj + 0002:0001d054 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@8 100b6054 main.cpp.obj + 0002:0001d064 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@8 100b6064 main.cpp.obj + 0002:0001d070 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@8 100b6070 main.cpp.obj + 0002:0001d08c ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@6B@ 100b608c main.cpp.obj + 0002:0001d0a0 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@8 100b60a0 main.cpp.obj + 0002:0001d0b0 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@8 100b60b0 main.cpp.obj + 0002:0001d0bc ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@8 100b60bc main.cpp.obj + 0002:0001d0d8 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@6B@ 100b60d8 main.cpp.obj + 0002:0001d0ec ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@8 100b60ec main.cpp.obj + 0002:0001d0fc ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@8 100b60fc main.cpp.obj + 0002:0001d108 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@8 100b6108 main.cpp.obj + 0002:0001d124 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@6B@ 100b6124 main.cpp.obj + 0002:0001d138 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@8 100b6138 main.cpp.obj + 0002:0001d148 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@8 100b6148 main.cpp.obj + 0002:0001d154 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@8 100b6154 main.cpp.obj + 0002:0001d170 ??_R4?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@6B@ 100b6170 main.cpp.obj + 0002:0001d184 ??_R3?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@8 100b6184 main.cpp.obj + 0002:0001d194 ??_R2?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@8 100b6194 main.cpp.obj + 0002:0001d1a0 ??_R1A@?0A@EA@?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@8 100b61a0 main.cpp.obj + 0002:0001d1bc ??_R4?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 100b61bc main.cpp.obj + 0002:0001d1d0 ??_R3?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b61d0 main.cpp.obj + 0002:0001d1e0 ??_R2?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b61e0 main.cpp.obj + 0002:0001d1ec ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b61ec main.cpp.obj + 0002:0001d208 ??_R4?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@6B@ 100b6208 main.cpp.obj + 0002:0001d21c ??_R3?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b621c main.cpp.obj + 0002:0001d22c ??_R2?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b622c main.cpp.obj + 0002:0001d238 ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@8 100b6238 main.cpp.obj + 0002:0001d254 ??_R4?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@6B@ 100b6254 main.cpp.obj + 0002:0001d268 ??_R3?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@8 100b6268 main.cpp.obj + 0002:0001d278 ??_R2?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@8 100b6278 main.cpp.obj + 0002:0001d284 ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@8 100b6284 main.cpp.obj + 0002:0001d2a0 ??_R4?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@6B@ 100b62a0 main.cpp.obj + 0002:0001d2b4 ??_R3?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@8 100b62b4 main.cpp.obj + 0002:0001d2c4 ??_R2?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@8 100b62c4 main.cpp.obj + 0002:0001d2d0 ??_R1A@?0A@EA@?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@8 100b62d0 main.cpp.obj + 0002:0001d2ec ??_R4?$basic_ifstream@DU?$char_traits@D@std@@@std@@6B@ 100b62ec file_scripts.cpp.obj + 0002:0001d300 ??_R3?$basic_ifstream@DU?$char_traits@D@std@@@std@@8 100b6300 file_scripts.cpp.obj + 0002:0001d310 ??_R2?$basic_ifstream@DU?$char_traits@D@std@@@std@@8 100b6310 file_scripts.cpp.obj + 0002:0001d328 ??_R1A@?0A@EA@?$basic_ifstream@DU?$char_traits@D@std@@@std@@8 100b6328 file_scripts.cpp.obj + 0002:0001d344 ??_R4bad_typeid@std@@6B@ 100b6344 libvcruntime:rtti.obj + 0002:0001d358 ??_R3bad_typeid@std@@8 100b6358 libvcruntime:rtti.obj + 0002:0001d368 ??_R2bad_typeid@std@@8 100b6368 libvcruntime:rtti.obj + 0002:0001d374 ??_R1A@?0A@EA@bad_typeid@std@@8 100b6374 libvcruntime:rtti.obj + 0002:0001d390 ??_R4__non_rtti_object@std@@6B@ 100b6390 libvcruntime:rtti.obj + 0002:0001d3a4 ??_R3__non_rtti_object@std@@8 100b63a4 libvcruntime:rtti.obj + 0002:0001d3b4 ??_R2__non_rtti_object@std@@8 100b63b4 libvcruntime:rtti.obj + 0002:0001d3c4 ??_R1A@?0A@EA@__non_rtti_object@std@@8 100b63c4 libvcruntime:rtti.obj + 0002:0001d3e0 ??_R4DNameNode@@6B@ 100b63e0 libvcruntime:undname.obj + 0002:0001d3f4 ??_R3DNameNode@@8 100b63f4 libvcruntime:undname.obj + 0002:0001d404 ??_R2DNameNode@@8 100b6404 libvcruntime:undname.obj + 0002:0001d40c ??_R1A@?0A@EA@DNameNode@@8 100b640c libvcruntime:undname.obj + 0002:0001d428 ??_R4charNode@@6B@ 100b6428 libvcruntime:undname.obj + 0002:0001d43c ??_R3charNode@@8 100b643c libvcruntime:undname.obj + 0002:0001d44c ??_R2charNode@@8 100b644c libvcruntime:undname.obj + 0002:0001d458 ??_R1A@?0A@EA@charNode@@8 100b6458 libvcruntime:undname.obj + 0002:0001d474 ??_R4pcharNode@@6B@ 100b6474 libvcruntime:undname.obj + 0002:0001d488 ??_R3pcharNode@@8 100b6488 libvcruntime:undname.obj + 0002:0001d498 ??_R2pcharNode@@8 100b6498 libvcruntime:undname.obj + 0002:0001d4a4 ??_R1A@?0A@EA@pcharNode@@8 100b64a4 libvcruntime:undname.obj + 0002:0001d4c0 ??_R4pDNameNode@@6B@ 100b64c0 libvcruntime:undname.obj + 0002:0001d4d4 ??_R3pDNameNode@@8 100b64d4 libvcruntime:undname.obj + 0002:0001d4e4 ??_R2pDNameNode@@8 100b64e4 libvcruntime:undname.obj + 0002:0001d4f0 ??_R1A@?0A@EA@pDNameNode@@8 100b64f0 libvcruntime:undname.obj + 0002:0001d50c ??_R4DNameStatusNode@@6B@ 100b650c libvcruntime:undname.obj + 0002:0001d520 ??_R3DNameStatusNode@@8 100b6520 libvcruntime:undname.obj + 0002:0001d530 ??_R2DNameStatusNode@@8 100b6530 libvcruntime:undname.obj + 0002:0001d53c ??_R1A@?0A@EA@DNameStatusNode@@8 100b653c libvcruntime:undname.obj + 0002:0001d558 ??_R4pairNode@@6B@ 100b6558 libvcruntime:undname.obj + 0002:0001d56c ??_R3pairNode@@8 100b656c libvcruntime:undname.obj + 0002:0001d57c ??_R2pairNode@@8 100b657c libvcruntime:undname.obj + 0002:0001d588 ??_R1A@?0A@EA@pairNode@@8 100b6588 libvcruntime:undname.obj + 0002:0001d5a4 ??_R4bad_function_call@std@@6B@ 100b65a4 libcpmt:xthrow.obj + 0002:0001d5b8 ??_R3bad_function_call@std@@8 100b65b8 libcpmt:xthrow.obj + 0002:0001d5c8 ??_R2bad_function_call@std@@8 100b65c8 libcpmt:xthrow.obj + 0002:0001d5d4 ??_R1A@?0A@EA@bad_function_call@std@@8 100b65d4 libcpmt:xthrow.obj + 0002:0001d5f0 ??_R4logic_error@std@@6B@ 100b65f0 libcpmt:xthrow.obj + 0002:0001d604 ??_R3logic_error@std@@8 100b6604 libcpmt:xthrow.obj + 0002:0001d614 ??_R2logic_error@std@@8 100b6614 libcpmt:xthrow.obj + 0002:0001d620 ??_R1A@?0A@EA@logic_error@std@@8 100b6620 libcpmt:xthrow.obj + 0002:0001d63c ??_R4invalid_argument@std@@6B@ 100b663c libcpmt:xthrow.obj + 0002:0001d650 ??_R3invalid_argument@std@@8 100b6650 libcpmt:xthrow.obj + 0002:0001d660 ??_R2invalid_argument@std@@8 100b6660 libcpmt:xthrow.obj + 0002:0001d670 ??_R1A@?0A@EA@invalid_argument@std@@8 100b6670 libcpmt:xthrow.obj + 0002:0001d68c ??_R4length_error@std@@6B@ 100b668c libcpmt:xthrow.obj + 0002:0001d6a0 ??_R3length_error@std@@8 100b66a0 libcpmt:xthrow.obj + 0002:0001d6b0 ??_R2length_error@std@@8 100b66b0 libcpmt:xthrow.obj + 0002:0001d6c0 ??_R1A@?0A@EA@length_error@std@@8 100b66c0 libcpmt:xthrow.obj + 0002:0001d6dc ??_R4out_of_range@std@@6B@ 100b66dc libcpmt:xthrow.obj + 0002:0001d6f0 ??_R3out_of_range@std@@8 100b66f0 libcpmt:xthrow.obj + 0002:0001d700 ??_R2out_of_range@std@@8 100b6700 libcpmt:xthrow.obj + 0002:0001d710 ??_R1A@?0A@EA@out_of_range@std@@8 100b6710 libcpmt:xthrow.obj + 0002:0001d72c ??_R4_Locimp@locale@std@@6B@ 100b672c libcpmt:locale0.obj + 0002:0001d740 ??_R3_Locimp@locale@std@@8 100b6740 libcpmt:locale0.obj + 0002:0001d750 ??_R2_Locimp@locale@std@@8 100b6750 libcpmt:locale0.obj + 0002:0001d764 ??_R1A@?0A@EA@_Locimp@locale@std@@8 100b6764 libcpmt:locale0.obj + 0002:0001d780 ??_R4type_info@@6B@ 100b6780 LIBCMT:std_type_info_static.obj + 0002:0001d794 ??_R3type_info@@8 100b6794 LIBCMT:std_type_info_static.obj + 0002:0001d7a4 ??_R2type_info@@8 100b67a4 LIBCMT:std_type_info_static.obj + 0002:0001d7ac ??_R1A@?0A@EA@type_info@@8 100b67ac LIBCMT:std_type_info_static.obj + 0002:0001d7c8 ___safe_se_handler_table 100b67c8 + 0002:0001dbf4 ___volatile_metadata 100b6bf4 + 0002:0001e0ac ___rtc_iaa 100b70ac LIBCMT:initsect.obj + 0002:0001e0b0 ___rtc_izz 100b70b0 LIBCMT:initsect.obj + 0002:0001e0b4 ___rtc_taa 100b70b4 LIBCMT:initsect.obj + 0002:0001e0b8 ___rtc_tzz 100b70b8 LIBCMT:initsect.obj + 0002:0001e0bc __tls_start 100b70bc LIBCMT:tlssup.obj + 0002:0001e0c0 ?orig_user_ptr@?1??GetOriginalArbitraryUserPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ@4PAXA 100b70c0 main.cpp.obj + 0002:0001e0c4 ?ret_address_ptr@?1??GetReturnAddressPtrPtr@PatchDetourBase@hadesmem@@KAPAPAXXZ@4PAXA 100b70c4 main.cpp.obj + 0002:0001e0c8 __Init_thread_epoch 100b70c8 LIBCMT:thread_safe_statics.obj + 0002:0001e0cc __tls_end 100b70cc LIBCMT:tlssup.obj + 0002:0001e358 __CT??_R0?AVexception@std@@@8??0exception@std@@QAE@ABV01@@Z12 100b7358 logging.cpp.obj + 0002:0001e374 __TI3?AVbad_array_new_length@std@@ 100b7374 logging.cpp.obj + 0002:0001e384 __CTA3?AVbad_array_new_length@std@@ 100b7384 logging.cpp.obj + 0002:0001e394 __CT??_R0?AVbad_array_new_length@std@@@8??0bad_array_new_length@std@@QAE@ABV01@@Z12 100b7394 logging.cpp.obj + 0002:0001e3b0 __CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QAE@ABV01@@Z12 100b73b0 logging.cpp.obj + 0002:0001e3cc __CT??_R0?AVruntime_error@std@@@8??0runtime_error@std@@QAE@ABV01@@Z12 100b73cc logging.cpp.obj + 0002:0001e3e8 __CT??_R0?AVsystem_error@std@@@8??0system_error@std@@QAE@ABV01@@Z20 100b73e8 logging.cpp.obj + 0002:0001e404 __CT??_R0?AV_System_error@std@@@8??0_System_error@std@@QAE@ABV01@@Z20 100b7404 logging.cpp.obj + 0002:0001e420 __TI2?AVbad_cast@std@@ 100b7420 logging.cpp.obj + 0002:0001e430 __CTA2?AVbad_cast@std@@ 100b7430 logging.cpp.obj + 0002:0001e43c __CT??_R0?AVbad_cast@std@@@8??0bad_cast@std@@QAE@ABV01@@Z12 100b743c logging.cpp.obj + 0002:0001e458 __TI5?AVfailure@ios_base@std@@ 100b7458 logging.cpp.obj + 0002:0001e468 __CTA5?AVfailure@ios_base@std@@ 100b7468 logging.cpp.obj + 0002:0001e480 __CT??_R0?AVfailure@ios_base@std@@@8??0failure@ios_base@std@@QAE@ABV012@@Z20 100b7480 logging.cpp.obj + 0002:000233b8 __CT??_R0?AVclone_base@exception_detail@boost@@@8??0clone_base@exception_detail@boost@@QAE@ABV012@@Z4 100bc3b8 main.cpp.obj + 0002:000233d4 __TI6?AU?$wrapexcept@VError@hadesmem@@@boost@@ 100bc3d4 main.cpp.obj + 0002:000233e4 __CTA6?AU?$wrapexcept@VError@hadesmem@@@boost@@ 100bc3e4 main.cpp.obj + 0002:00023400 __CT??_R0?AU?$wrapexcept@VError@hadesmem@@@boost@@@8??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z44 100bc400 main.cpp.obj + 0002:0002341c __CT??_R0?AVError@hadesmem@@@8??0Error@hadesmem@@QAE@ABV01@@Z404 100bc41c main.cpp.obj + 0002:00023438 __CT??_R0?AVexception@std@@@8??0exception@std@@QAE@ABV01@@Z12044 100bc438 main.cpp.obj + 0002:00023454 __CT??_R0?AVexception@boost@@@8??0exception@boost@@QAE@ABV01@@Z24048 100bc454 main.cpp.obj + 0002:00023470 __CT??_R0?AUtype@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@@818 100bc470 main.cpp.obj + 0002:0002348c __TI6?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@ 100bc48c main.cpp.obj + 0002:0002349c __CTA6?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@ 100bc49c main.cpp.obj + 0002:000234b8 __CT??_R0?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@8??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z48 100bc4b8 main.cpp.obj + 0002:000234d4 __CT??_R0?AUbad_exception_@exception_detail@boost@@@8??0bad_exception_@exception_detail@boost@@QAE@ABU012@@Z36 100bc4d4 main.cpp.obj + 0002:000234f0 __CT??_R0?AVexception@boost@@@8??0exception@boost@@QAE@ABV01@@Z24 100bc4f0 main.cpp.obj + 0002:0002350c __CT??_R0?AVbad_exception@std@@@8??0bad_exception@std@@QAE@ABV01@@Z1224 100bc50c main.cpp.obj + 0002:00023528 __CT??_R0?AVexception@std@@@8??0exception@std@@QAE@ABV01@@Z1224 100bc528 main.cpp.obj + 0002:00023544 __CT??_R0?AVclone_base@exception_detail@boost@@@8??0clone_base@exception_detail@boost@@QAE@ABV012@@Z40364 100bc544 main.cpp.obj + 0002:00023560 __TI6?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@ 100bc560 main.cpp.obj + 0002:00023570 __CTA6?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@ 100bc570 main.cpp.obj + 0002:0002358c __CT??_R0?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@8??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z48 100bc58c main.cpp.obj + 0002:000235a8 __CT??_R0?AUbad_alloc_@exception_detail@boost@@@8??0bad_alloc_@exception_detail@boost@@QAE@ABU012@@Z36 100bc5a8 main.cpp.obj + 0002:000235c4 __CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QAE@ABV01@@Z1224 100bc5c4 main.cpp.obj + 0002:000244ec __TI3?AV__non_rtti_object@std@@ 100bd4ec libvcruntime:rtti.obj + 0002:000244fc __CTA3?AV__non_rtti_object@std@@ 100bd4fc libvcruntime:rtti.obj + 0002:0002450c __CT??_R0?AV__non_rtti_object@std@@@8??0__non_rtti_object@std@@QAE@ABV01@@Z12 100bd50c libvcruntime:rtti.obj + 0002:00024528 __CT??_R0?AVbad_typeid@std@@@8??0bad_typeid@std@@QAE@ABV01@@Z12 100bd528 libvcruntime:rtti.obj + 0002:00024544 __TI2?AVbad_typeid@std@@ 100bd544 libvcruntime:rtti.obj + 0002:00024554 __CTA2?AVbad_typeid@std@@ 100bd554 libvcruntime:rtti.obj + 0002:00024644 __TI2?AVbad_exception@std@@ 100bd644 libvcruntime:frame.obj + 0002:00024654 __CTA2?AVbad_exception@std@@ 100bd654 libvcruntime:frame.obj + 0002:00024660 __CT??_R0?AVbad_exception@std@@@8??0bad_exception@std@@QAE@ABV01@@Z12 100bd660 libvcruntime:frame.obj + 0002:00024c98 __TI2?AVbad_alloc@std@@ 100bdc98 libcpmt:xthrow.obj + 0002:00024ca8 __CTA2?AVbad_alloc@std@@ 100bdca8 libcpmt:xthrow.obj + 0002:00024cb4 __TI3?AVinvalid_argument@std@@ 100bdcb4 libcpmt:xthrow.obj + 0002:00024cc4 __CTA3?AVinvalid_argument@std@@ 100bdcc4 libcpmt:xthrow.obj + 0002:00024cd4 __CT??_R0?AVinvalid_argument@std@@@8??0invalid_argument@std@@QAE@ABV01@@Z12 100bdcd4 libcpmt:xthrow.obj + 0002:00024cf0 __CT??_R0?AVlogic_error@std@@@8??0logic_error@std@@QAE@ABV01@@Z12 100bdcf0 libcpmt:xthrow.obj + 0002:00024d0c __TI3?AVlength_error@std@@ 100bdd0c libcpmt:xthrow.obj + 0002:00024d1c __CTA3?AVlength_error@std@@ 100bdd1c libcpmt:xthrow.obj + 0002:00024d2c __CT??_R0?AVlength_error@std@@@8??0length_error@std@@QAE@ABV01@@Z12 100bdd2c libcpmt:xthrow.obj + 0002:00024d48 __TI3?AVout_of_range@std@@ 100bdd48 libcpmt:xthrow.obj + 0002:00024d58 __CTA3?AVout_of_range@std@@ 100bdd58 libcpmt:xthrow.obj + 0002:00024d68 __CT??_R0?AVout_of_range@std@@@8??0out_of_range@std@@QAE@ABV01@@Z12 100bdd68 libcpmt:xthrow.obj + 0002:00024d84 __TI2?AVruntime_error@std@@ 100bdd84 libcpmt:xthrow.obj + 0002:00024d94 __CTA2?AVruntime_error@std@@ 100bdd94 libcpmt:xthrow.obj + 0002:00024da0 __TI2?AVbad_function_call@std@@ 100bdda0 libcpmt:xthrow.obj + 0002:00024db0 __CTA2?AVbad_function_call@std@@ 100bddb0 libcpmt:xthrow.obj + 0002:00024dbc __CT??_R0?AVbad_function_call@std@@@8??0bad_function_call@std@@QAE@ABV01@@Z12 100bddbc libcpmt:xthrow.obj + 0002:00024f54 __IMPORT_DESCRIPTOR_KERNEL32 100bdf54 kernel32:KERNEL32.dll + 0002:00024f68 __IMPORT_DESCRIPTOR_USER32 100bdf68 user32:USER32.dll + 0002:00024f7c __IMPORT_DESCRIPTOR_CRYPT32 100bdf7c Crypt32:CRYPT32.dll + 0002:00024f90 __NULL_IMPORT_DESCRIPTOR 100bdf90 kernel32:KERNEL32.dll + 0003:00000000 ?debugLogFile@Nampower@@3V?$basic_ofstream@DU?$char_traits@D@std@@@std@@A 100bf000 logging.cpp.obj + 0003:000000b0 ?_Static@?1???$_Immortalize_memcpy_image@V_Iostream_error_category2@std@@@std@@YAABV_Iostream_error_category2@1@XZ@4U?$_Constexpr_immortalize_impl@V_Iostream_error_category2@std@@@1@A 100bf0b0 logging.cpp.obj + 0003:000000b8 ?gNextCastId@Nampower@@3_KA 100bf0b8 main.cpp.obj + 0003:000000c0 ?gUserSettings@Nampower@@3UUserSettings@@A 100bf0c0 main.cpp.obj + 0003:00000108 ?lua_error@Nampower@@3P6AXPAIPBD@ZA 100bf108 helper.cpp.obj + 0003:0000010c ?lua_gettop@Nampower@@3P6IHPAI@ZA 100bf10c helper.cpp.obj + 0003:00000110 ?lua_settop@Nampower@@3P6IXPAIH@ZA 100bf110 helper.cpp.obj + 0003:00000114 ?lua_type@Nampower@@3P6IHPAIH@ZA 100bf114 helper.cpp.obj + 0003:00000118 ?lua_isstring@Nampower@@3P6I_NPAIH@ZA 100bf118 helper.cpp.obj + 0003:0000011c ?lua_isnumber@Nampower@@3P6I_NPAIH@ZA 100bf11c helper.cpp.obj + 0003:00000120 ?lua_toflag@Nampower@@3P6IIPAIHI@ZA 100bf120 helper.cpp.obj + 0003:00000124 ?lua_tostring@Nampower@@3P6IPADPAIH@ZA 100bf124 helper.cpp.obj + 0003:00000128 ?lua_tonumber@Nampower@@3P6INPAIH@ZA 100bf128 helper.cpp.obj + 0003:0000012c ?lua_pushnumber@Nampower@@3P6IXPAIN@ZA 100bf12c helper.cpp.obj + 0003:00000130 ?lua_pushstring@Nampower@@3P6IXPAIPAD@ZA 100bf130 helper.cpp.obj + 0003:00000134 ?lua_pushboolean@Nampower@@3P6IXPAI_N@ZA 100bf134 helper.cpp.obj + 0003:00000138 ?lua_pushnil@Nampower@@3P6IXPAI@ZA 100bf138 helper.cpp.obj + 0003:0000013c ?lua_newtable@Nampower@@3P6IXPAI@ZA 100bf13c helper.cpp.obj + 0003:00000140 ?lua_settable@Nampower@@3P6IXPAIH@ZA 100bf140 helper.cpp.obj + 0003:00000144 ?luaL_ref@Nampower@@3P6IHPAIH@ZA 100bf144 helper.cpp.obj + 0003:00000148 ?lua_touserdata@Nampower@@3P6IPAXPAIH@ZA 100bf148 helper.cpp.obj + 0003:0000014c ?lua_rawgeti@Nampower@@3P6IXPAIHH@ZA 100bf14c helper.cpp.obj + 0003:00000150 ?luaL_unref@Nampower@@3P6IXPAIHH@ZA 100bf150 helper.cpp.obj + 0003:0000023c ?gScriptPriority@Nampower@@3HA 100bf23c misc_scripts.cpp.obj + 0003:00000590 __NLG_Destination 100bf590 libvcruntime:exsup.obj + 0003:000005a0 __iob 100bf5a0 libucrt:_file.obj + 0003:00000650 ___abort_behavior 100bf650 libucrt:abort.obj + 0003:00000660 ___acrt_lconv_c 100bf660 libucrt:localeconv.obj + 0003:000006b0 ___acrt_lconv 100bf6b0 libucrt:localeconv.obj + 0003:000006b4 ___acrt_lconv_static_decimal 100bf6b4 libucrt:localeconv.obj + 0003:000006b8 ___acrt_lconv_static_W_decimal 100bf6b8 libucrt:localeconv.obj + 0003:000006c8 ___acrt_initial_locale_data 100bf6c8 libucrt:nlsdata.obj + 0003:00000780 ___acrt_initial_locale_pointers 100bf780 libucrt:nlsdata.obj + 0003:00000788 ___acrt_wide_c_locale_string 100bf788 libucrt:nlsdata.obj + 0003:0000078c ___mb_cur_max 100bf78c libucrt:nlsdata.obj + 0003:00000790 ___badioinfo 100bf790 libucrt:ioinit.obj + 0003:000007c8 __lookuptrailbytes 100bf7c8 libucrt:read.obj + 0003:000008cc __pctype 100bf8cc libucrt:ctype.obj + 0003:000008d0 __pwctype 100bf8d0 libucrt:ctype.obj + 0003:00000a80 ___acrt_initial_multibyte_data 100bfa80 libucrt:mbctype.obj + 0003:00000fa0 ___globallocalestatus 100bffa0 libucrt:glstatus.obj + 0003:00000fc4 ?_Sync@ios_base@std@@0_NA 100bffc4 libcpmt:ios.obj + 0003:0000101c ___scrt_native_dllmain_reason 100c001c LIBCMT:utility.obj + 0003:00001040 ___security_cookie 100c0040 LIBCMT:gs_cookie.obj + 0003:00001080 ___security_cookie_complement 100c0080 LIBCMT:gs_cookie.obj + 0003:00001090 __Init_global_epoch 100c0090 LIBCMT:thread_safe_statics.obj + 0003:000010a0 __fltused 100c00a0 LIBCMT:fltused.obj + 0003:000010b0 ___isa_inverted 100c00b0 LIBCMT:cpu_disp.obj + 0003:000010b8 ___isa_enabled 100c00b8 LIBCMT:cpu_disp.obj + 0003:000010c0 _ud_lookup_table_list 100c00c0 udis86:itab.obj + 0003:000025b8 _ud_itab 100c15b8 udis86:itab.obj + 0003:000138e0 ??_R0?AVexception@std@@@8 100d28e0 logging.cpp.obj + 0003:000138fc ??_R0?AVbad_array_new_length@std@@@8 100d28fc logging.cpp.obj + 0003:00013924 ??_R0?AVbad_alloc@std@@@8 100d2924 logging.cpp.obj + 0003:00013940 ??_R0?AVruntime_error@std@@@8 100d2940 logging.cpp.obj + 0003:00013960 ??_R0?AVsystem_error@std@@@8 100d2960 logging.cpp.obj + 0003:00013980 ??_R0?AV_System_error@std@@@8 100d2980 logging.cpp.obj + 0003:000139a0 ??_R0?AVbad_cast@std@@@8 100d29a0 logging.cpp.obj + 0003:000139bc ??_R0?AVfailure@ios_base@std@@@8 100d29bc logging.cpp.obj + 0003:000139e0 ??_R0?AVexception@boost@@@8 100d29e0 main.cpp.obj + 0003:00013a00 ??_R0?AVclone_base@exception_detail@boost@@@8 100d2a00 main.cpp.obj + 0003:00013a30 ??_R0?AVbad_exception@std@@@8 100d2a30 main.cpp.obj + 0003:00013a50 ??_R0?AVError@hadesmem@@@8 100d2a50 main.cpp.obj + 0003:00013a70 ??_R0?AU?$wrapexcept@VError@hadesmem@@@boost@@@8 100d2a70 main.cpp.obj + 0003:00013aa8 ??_R0?AUtype@?$wrapexcept_add_base@VError@hadesmem@@Vexception@boost@@$00@detail@boost@@@8 100d2aa8 main.cpp.obj + 0003:00013b08 ??_R0P6IXPAVPatchDetourBase@hadesmem@@@Z@8 100d2b08 main.cpp.obj + 0003:00013b38 ??_R0P6IHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d2b38 main.cpp.obj + 0003:00013b68 ??_R0P6GXPAVPatchDetourBase@hadesmem@@@Z@8 100d2b68 main.cpp.obj + 0003:00013b98 ??_R0P6IXPAVPatchDetourBase@hadesmem@@HI@Z@8 100d2b98 main.cpp.obj + 0003:00013bc8 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAX1I@Z@8 100d2bc8 main.cpp.obj + 0003:00013bfc ??_R0P6IXPAVPatchDetourBase@hadesmem@@IH_K@Z@8 100d2bfc main.cpp.obj + 0003:00013c30 ??_R0P6I_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@8 100d2c30 main.cpp.obj + 0003:00013c78 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@8 100d2c78 main.cpp.obj + 0003:00013cc0 ??_R0P6IXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@8 100d2cc0 main.cpp.obj + 0003:00013d08 ??_R0P6IXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@8 100d2d08 main.cpp.obj + 0003:00013d54 ??_R0P6IPAHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d2d54 main.cpp.obj + 0003:00013d88 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@8 100d2d88 main.cpp.obj + 0003:00013dd4 ??_R0P6IIPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d2dd4 main.cpp.obj + 0003:00013e04 ??_R0P6IHPAVPatchDetourBase@hadesmem@@_K@Z@8 100d2e04 main.cpp.obj + 0003:00013e38 ??_R0P6IIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@8 100d2e38 main.cpp.obj + 0003:00013e84 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAXHH@Z@8 100d2e84 main.cpp.obj + 0003:00013eb8 ??_R0P6I_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@8 100d2eb8 main.cpp.obj + 0003:00013ef0 ??_R0P6GHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@8 100d2ef0 main.cpp.obj + 0003:00013f38 ??_R0P6IHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@8 100d2f38 main.cpp.obj + 0003:00013f80 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@8 100d2f80 main.cpp.obj + 0003:00013fcc ??_R0P6IXPAVPatchDetourBase@hadesmem@@IHH@Z@8 100d2fcc main.cpp.obj + 0003:00013ffc ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@8 100d2ffc main.cpp.obj + 0003:00014034 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@8 100d3034 main.cpp.obj + 0003:0001406c ??_R0P6IXPAVPatchDetourBase@hadesmem@@_K@Z@8 100d306c main.cpp.obj + 0003:0001409c ??_R0P6IXPAVPatchDetourBase@hadesmem@@EH@Z@8 100d309c main.cpp.obj + 0003:000140cc ??_R0P6IXPAVPatchDetourBase@hadesmem@@I@Z@8 100d30cc main.cpp.obj + 0003:000140fc ??_R0P6IIPAVPatchDetourBase@hadesmem@@PAI11@Z@8 100d30fc main.cpp.obj + 0003:00014130 ??_R0P6I_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@8 100d3130 main.cpp.obj + 0003:00014174 ??_R0P6I_KPAVPatchDetourBase@hadesmem@@PBD@Z@8 100d3174 main.cpp.obj + 0003:000141a8 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PA_KI@Z@8 100d31a8 main.cpp.obj + 0003:000141dc ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAX1II@Z@8 100d31dc main.cpp.obj + 0003:00014210 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d3210 main.cpp.obj + 0003:00014240 ??_R0P6IXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@8 100d3240 main.cpp.obj + 0003:00014278 ??_R0?AV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@8 100d3278 main.cpp.obj + 0003:000142c0 ??_R0?AV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@8 100d32c0 main.cpp.obj + 0003:0001431c ??_R0?AUbad_exception_@exception_detail@boost@@@8 100d331c main.cpp.obj + 0003:00014350 ??_R0?AV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@8 100d3350 main.cpp.obj + 0003:000143a8 ??_R0?AUbad_alloc_@exception_detail@boost@@@8 100d33a8 main.cpp.obj + 0003:000143d8 ??_R0?AV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@8 100d33d8 main.cpp.obj + 0003:00014454 ??_R0P6AXPAVPatchDetourBase@hadesmem@@@Z@8 100d3454 main.cpp.obj + 0003:00014484 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@8 100d3484 main.cpp.obj + 0003:000144b8 ??_R0P6AXPAVPatchDetourBase@hadesmem@@HI@Z@8 100d34b8 main.cpp.obj + 0003:000144e8 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@8 100d34e8 main.cpp.obj + 0003:00014520 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d3520 main.cpp.obj + 0003:00014550 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@8 100d3550 main.cpp.obj + 0003:00014584 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@8 100d3584 main.cpp.obj + 0003:000145b8 ??_R0P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@8 100d35b8 main.cpp.obj + 0003:00014600 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@8 100d3600 main.cpp.obj + 0003:0001464c ??_R0P6AXPAVPatchDetourBase@hadesmem@@EH@Z@8 100d364c main.cpp.obj + 0003:0001467c ??_R0P6AXPAVPatchDetourBase@hadesmem@@_K@Z@8 100d367c main.cpp.obj + 0003:000146ac ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@8 100d36ac main.cpp.obj + 0003:000146e4 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@8 100d36e4 main.cpp.obj + 0003:0001471c ??_R0P6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@8 100d371c main.cpp.obj + 0003:00014750 ??_R0P6AXPAVPatchDetourBase@hadesmem@@I@Z@8 100d3750 main.cpp.obj + 0003:00014780 ??_R0P6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d3780 main.cpp.obj + 0003:000147b4 ??_R0P6AHPAVPatchDetourBase@hadesmem@@_K@Z@8 100d37b4 main.cpp.obj + 0003:000147e4 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@8 100d37e4 main.cpp.obj + 0003:00014818 ??_R0P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@8 100d3818 main.cpp.obj + 0003:00014864 ??_R0P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@8 100d3864 main.cpp.obj + 0003:00014898 ??_R0P6AIPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d3898 main.cpp.obj + 0003:000148c8 ??_R0P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@8 100d38c8 main.cpp.obj + 0003:00014900 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@8 100d3900 main.cpp.obj + 0003:00014950 ??_R0P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@8 100d3950 main.cpp.obj + 0003:000149a0 ??_R0P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@8 100d39a0 main.cpp.obj + 0003:000149e8 ??_R0P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@8 100d39e8 main.cpp.obj + 0003:00014a30 ??_R0P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@8 100d3a30 main.cpp.obj + 0003:00014a78 ??_R0P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@8 100d3a78 main.cpp.obj + 0003:00014ac0 ??_R0P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@8 100d3ac0 main.cpp.obj + 0003:00014b08 ??_R0P6AXPAVPatchDetourBase@hadesmem@@IHH@Z@8 100d3b08 main.cpp.obj + 0003:00014b38 ??_R0P6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@8 100d3b38 main.cpp.obj + 0003:00014b6c ??_R0P6AHPAVPatchDetourBase@hadesmem@@PAI@Z@8 100d3b6c main.cpp.obj + 0003:00014b9c ??_R0PAUTagErrorString@hadesmem@@@8 100d3b9c main.cpp.obj + 0003:00014bc4 ??_R0PAUTagErrorCodeWinLast@hadesmem@@@8 100d3bc4 main.cpp.obj + 0003:00014bf0 ??_R0?AV__non_rtti_object@std@@@8 100d3bf0 libvcruntime:rtti.obj + 0003:00014c14 ??_R0?AVbad_typeid@std@@@8 100d3c14 libvcruntime:rtti.obj + 0003:00014c34 ??_R0?AVinvalid_argument@std@@@8 100d3c34 libcpmt:xthrow.obj + 0003:00014c58 ??_R0?AVlogic_error@std@@@8 100d3c58 libcpmt:xthrow.obj + 0003:00014c78 ??_R0?AVlength_error@std@@@8 100d3c78 libcpmt:xthrow.obj + 0003:00014c98 ??_R0?AVout_of_range@std@@@8 100d3c98 libcpmt:xthrow.obj + 0003:00014cb8 ??_R0?AVbad_function_call@std@@@8 100d3cb8 libcpmt:xthrow.obj + 0003:00014ce0 ??_R0?AVios_base@std@@@8 100d3ce0 logging.cpp.obj + 0003:00014cfc ??_R0?AV?$_Iosb@H@std@@@8 100d3cfc logging.cpp.obj + 0003:00014d18 ??_R0?AV?$basic_ios@DU?$char_traits@D@std@@@std@@@8 100d3d18 logging.cpp.obj + 0003:00014d50 ??_R0?AV?$basic_streambuf@DU?$char_traits@D@std@@@std@@@8 100d3d50 logging.cpp.obj + 0003:00014d8c ??_R0?AV?$basic_ostream@DU?$char_traits@D@std@@@std@@@8 100d3d8c logging.cpp.obj + 0003:00014dc8 ??_R0?AV?$basic_filebuf@DU?$char_traits@D@std@@@std@@@8 100d3dc8 logging.cpp.obj + 0003:00014e04 ??_R0?AV?$basic_ofstream@DU?$char_traits@D@std@@@std@@@8 100d3e04 logging.cpp.obj + 0003:00014e40 ??_R0?AVerror_category@std@@@8 100d3e40 logging.cpp.obj + 0003:00014e64 ??_R0?AV_Iostream_error_category2@std@@@8 100d3e64 logging.cpp.obj + 0003:00014e90 ??_R0?AV_Facet_base@std@@@8 100d3e90 logging.cpp.obj + 0003:00014eb0 ??_R0?AVfacet@locale@std@@@8 100d3eb0 logging.cpp.obj + 0003:00014ed0 ??_R0?AU_Crt_new_delete@std@@@8 100d3ed0 logging.cpp.obj + 0003:00014ef4 ??_R0?AVcodecvt_base@std@@@8 100d3ef4 logging.cpp.obj + 0003:00014f14 ??_R0?AUctype_base@std@@@8 100d3f14 logging.cpp.obj + 0003:00014f34 ??_R0?AV?$ctype@D@std@@@8 100d3f34 logging.cpp.obj + 0003:00014f50 ??_R0?AV?$codecvt@DDU_Mbstatet@@@std@@@8 100d3f50 logging.cpp.obj + 0003:00014f7c ??_R0?AV?$basic_istream@DU?$char_traits@D@std@@@std@@@8 100d3f7c main.cpp.obj + 0003:00014fb8 ??_R0?AV?$basic_iostream@DU?$char_traits@D@std@@@std@@@8 100d3fb8 main.cpp.obj + 0003:00014ff8 ??_R0?AV?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@8 100d3ff8 main.cpp.obj + 0003:00015048 ??_R0?AV?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@8 100d4048 main.cpp.obj + 0003:000150a0 ??_R0?AV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@8 100d40a0 main.cpp.obj + 0003:000150f0 ??_R0?AV_Ref_count_base@std@@@8 100d40f0 main.cpp.obj + 0003:00015114 ??_R0?AVerror_info_base@exception_detail@boost@@@8 100d4114 main.cpp.obj + 0003:0001514c ??_R0?AUerror_info_container@exception_detail@boost@@@8 100d414c main.cpp.obj + 0003:00015188 ??_R0?AVsp_counted_base@detail@boost@@@8 100d4188 main.cpp.obj + 0003:000151b4 ??_R0?AVerror_info_container_impl@exception_detail@boost@@@8 100d41b4 main.cpp.obj + 0003:000151f8 ??_R0?AV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@8 100d41f8 main.cpp.obj + 0003:0001524c ??_R0?AVPatchDetourBase@hadesmem@@@8 100d424c main.cpp.obj + 0003:00015274 ??_R0?AVCDataStore@Nampower@@@8 100d4274 main.cpp.obj + 0003:00015298 ??_R0?AV?$PatchDetour@P6IXXZPAX@hadesmem@@@8 100d4298 main.cpp.obj + 0003:000152c8 ??_R0?AV?$PatchDetour@P6GXXZPAX@hadesmem@@@8 100d42c8 main.cpp.obj + 0003:000152f8 ??_R0?AV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@8 100d42f8 main.cpp.obj + 0003:0001532c ??_R0?AV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@8 100d432c main.cpp.obj + 0003:00015360 ??_R0?AV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@8 100d4360 main.cpp.obj + 0003:00015394 ??_R0?AV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@8 100d4394 main.cpp.obj + 0003:000153c8 ??_R0?AV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@8 100d43c8 main.cpp.obj + 0003:00015410 ??_R0?AV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@8 100d4410 main.cpp.obj + 0003:00015458 ??_R0?AV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@8 100d4458 main.cpp.obj + 0003:000154a8 ??_R0?AV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@8 100d44a8 main.cpp.obj + 0003:000154f4 ??_R0?AV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@8 100d44f4 main.cpp.obj + 0003:00015528 ??_R0?AV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100d4528 main.cpp.obj + 0003:00015578 ??_R0?AV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@8 100d4578 main.cpp.obj + 0003:000155ac ??_R0?AV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@8 100d45ac main.cpp.obj + 0003:000155e0 ??_R0?AV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@8 100d45e0 main.cpp.obj + 0003:0001562c ??_R0?AV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@8 100d462c main.cpp.obj + 0003:00015660 ??_R0?AV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@8 100d4660 main.cpp.obj + 0003:00015698 ??_R0?AV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100d4698 main.cpp.obj + 0003:000156e8 ??_R0?AV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100d46e8 main.cpp.obj + 0003:00015738 ??_R0?AV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@8 100d4738 main.cpp.obj + 0003:00015784 ??_R0?AV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@8 100d4784 main.cpp.obj + 0003:000157b8 ??_R0?AV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@8 100d47b8 main.cpp.obj + 0003:000157f0 ??_R0?AV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@8 100d47f0 main.cpp.obj + 0003:00015828 ??_R0?AV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@8 100d4828 main.cpp.obj + 0003:0001585c ??_R0?AV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@8 100d485c main.cpp.obj + 0003:00015890 ??_R0?AV?$PatchDetour@P6IXI@ZPAX@hadesmem@@@8 100d4890 main.cpp.obj + 0003:000158c0 ??_R0?AV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@8 100d48c0 main.cpp.obj + 0003:000158f8 ??_R0?AV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@8 100d48f8 main.cpp.obj + 0003:0001593c ??_R0?AV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@8 100d493c main.cpp.obj + 0003:00015970 ??_R0?AV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@8 100d4970 main.cpp.obj + 0003:000159a4 ??_R0?AV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@8 100d49a4 main.cpp.obj + 0003:000159dc ??_R0?AV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@8 100d49dc main.cpp.obj + 0003:00015a10 ??_R0?AV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@8 100d4a10 main.cpp.obj + 0003:00015a50 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100d4a50 main.cpp.obj + 0003:00015a94 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@@std@@@8 100d4a94 main.cpp.obj + 0003:00015ad4 ??_R0?AV?$numpunct@D@std@@@8 100d4ad4 main.cpp.obj + 0003:00015af8 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@std@@@8 100d4af8 main.cpp.obj + 0003:00015b40 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100d4b40 main.cpp.obj + 0003:00015b88 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXII@std@@@8 100d4b88 main.cpp.obj + 0003:00015bd0 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KI@std@@@8 100d4bd0 main.cpp.obj + 0003:00015c18 ??_R0?AV?$_Func_base@_KPAVPatchDetourBase@hadesmem@@PBD@std@@@8 100d4c18 main.cpp.obj + 0003:00015c60 ??_R0?AV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@std@@@8 100d4c60 main.cpp.obj + 0003:00015cb8 ??_R0?AV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAIPAIPAI@std@@@8 100d4cb8 main.cpp.obj + 0003:00015d00 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@I@std@@@8 100d4d00 main.cpp.obj + 0003:00015d40 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@EH@std@@@8 100d4d40 main.cpp.obj + 0003:00015d80 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_K@std@@@8 100d4d80 main.cpp.obj + 0003:00015dc0 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXHE@std@@@8 100d4dc0 main.cpp.obj + 0003:00015e08 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAIPAXII@std@@@8 100d4e08 main.cpp.obj + 0003:00015e50 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IHH@std@@@8 100d4e50 main.cpp.obj + 0003:00015e98 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXPAVCDataStore@Nampower@@@std@@@8 100d4e98 main.cpp.obj + 0003:00015ef8 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@std@@@8 100d4ef8 main.cpp.obj + 0003:00015f58 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@std@@@8 100d4f58 main.cpp.obj + 0003:00015fb8 ??_R0?AV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIPAIIM@std@@@8 100d4fb8 main.cpp.obj + 0003:00016000 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXHH@std@@@8 100d5000 main.cpp.obj + 0003:00016048 ??_R0?AV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@std@@@8 100d5048 main.cpp.obj + 0003:000160a8 ??_R0?AV?$_Func_base@HPAVPatchDetourBase@hadesmem@@_K@std@@@8 100d50a8 main.cpp.obj + 0003:000160e8 ??_R0?AV?$_Func_base@IPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100d50e8 main.cpp.obj + 0003:00016130 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PA_KPA_KIPAVCDataStore@Nampower@@@std@@@8 100d5130 main.cpp.obj + 0003:00016190 ??_R0?AV?$_Func_base@PAHPAVPatchDetourBase@hadesmem@@PAI@std@@@8 100d5190 main.cpp.obj + 0003:000161d8 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@std@@@8 100d51d8 main.cpp.obj + 0003:00016238 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@_N_NW4SpellCastResult@game@@@std@@@8 100d5238 main.cpp.obj + 0003:00016298 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@std@@@8 100d5298 main.cpp.obj + 0003:000162f0 ??_R0?AV?$_Func_base@_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@std@@@8 100d52f0 main.cpp.obj + 0003:00016348 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@IH_K@std@@@8 100d5348 main.cpp.obj + 0003:00016390 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@PAXPAXI@std@@@8 100d5390 main.cpp.obj + 0003:000163d8 ??_R0?AV?$_Func_base@XPAVPatchDetourBase@hadesmem@@HI@std@@@8 100d53d8 main.cpp.obj + 0003:00016418 ??_R0?AV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@8 100d5418 main.cpp.obj + 0003:00016470 ??_R0?AV?$_Ref_count_obj2@UImpl@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@@std@@@8 100d5470 main.cpp.obj + 0003:000164d8 ??_R0?AV?$_Ref_count_obj2@UImpl@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@@std@@@8 100d54d8 main.cpp.obj + 0003:00016538 ??_R0?AV?$sp_counted_impl_p@Verror_info_base@exception_detail@boost@@@detail@boost@@@8 100d5538 main.cpp.obj + 0003:00016598 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@@ZXPAV12@@std@@@8 100d5598 main.cpp.obj + 0003:000165f0 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAI@ZHPAV12@PAI@std@@@8 100d55f0 main.cpp.obj + 0003:00016650 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IH_K@ZXPAV12@IH_K@std@@@8 100d5650 main.cpp.obj + 0003:000166b0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IHH@ZXPAV12@IHH@std@@@8 100d56b0 main.cpp.obj + 0003:00016710 ??_R0?AV?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z_NPAV12@PAIIPAU34@_K@std@@@8 100d5710 main.cpp.obj + 0003:00016790 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@ZXPAV12@PAU34@D@std@@@8 100d5790 main.cpp.obj + 0003:00016800 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@ZXPAV12@_N_NW434@@std@@@8 100d5800 main.cpp.obj + 0003:00016878 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@ZHPAV12@PAIPAV34@@std@@@8 100d5878 main.cpp.obj + 0003:000168f0 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@ZHPAV12@IIIPAV34@@std@@@8 100d58f0 main.cpp.obj + 0003:00016968 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@ZXPAV12@IW434@HH_N@std@@@8 100d5968 main.cpp.obj + 0003:000169e8 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@ZXPAV12@PA_KPA_KIPAV34@@std@@@8 100d59e8 main.cpp.obj + 0003:00016a68 ??_R0?AV?$_Func_impl_no_alloc@P6A_KPAVPatchDetourBase@hadesmem@@PBD@Z_KPAV12@PBD@std@@@8 100d5a68 main.cpp.obj + 0003:00016ac8 ??_R0?AV?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI@ZIPAV12@PAI@std@@@8 100d5ac8 main.cpp.obj + 0003:00016b28 ??_R0?AV?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z_NPAV12@PAIPAIIM@std@@@8 100d5b28 main.cpp.obj + 0003:00016b90 ??_R0?AV?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@ZIPAV12@PAU34@@std@@@8 100d5b90 main.cpp.obj + 0003:00016c08 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAXHH@ZXPAV12@PAXHH@std@@@8 100d5c08 main.cpp.obj + 0003:00016c68 ??_R0?AV?$_Func_impl_no_alloc@P6AHPAVPatchDetourBase@hadesmem@@_K@ZHPAV12@_K@std@@@8 100d5c68 main.cpp.obj + 0003:00016cc0 ??_R0?AV?$_Func_impl_no_alloc@P6APAHPAVPatchDetourBase@hadesmem@@PAI@ZPAHPAV12@PAI@std@@@8 100d5cc0 main.cpp.obj + 0003:00016d20 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@I@ZXPAV12@I@std@@@8 100d5d20 main.cpp.obj + 0003:00016d78 ??_R0?AV?$_Func_impl_no_alloc@P6AIPAVPatchDetourBase@hadesmem@@PAI11@ZIPAV12@PAIPAIPAI@std@@@8 100d5d78 main.cpp.obj + 0003:00016de0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@ZXPAV12@PAIPAXII@std@@@8 100d5de0 main.cpp.obj + 0003:00016e48 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@ZXPAV12@PAIPAXHE@std@@@8 100d5e48 main.cpp.obj + 0003:00016eb0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@_K@ZXPAV12@_K@std@@@8 100d5eb0 main.cpp.obj + 0003:00016f08 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@EH@ZXPAV12@EH@std@@@8 100d5f08 main.cpp.obj + 0003:00016f60 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@ZXPAV12@PAXPAXPAV34@@std@@@8 100d5f60 main.cpp.obj + 0003:00016fe0 ??_R0?AV?$_Func_impl_no_alloc@P6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z_NPAV12@PAU3@H@std@@@8 100d5fe0 main.cpp.obj + 0003:00017050 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KI@ZXPAV12@PA_KI@std@@@8 100d6050 main.cpp.obj + 0003:000170b0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1II@ZXPAV12@PAXPAXII@std@@@8 100d60b0 main.cpp.obj + 0003:00017118 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAI@ZXPAV12@PAI@std@@@8 100d6118 main.cpp.obj + 0003:00017178 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@ZXPAV12@PA_KPBDHHH@std@@@8 100d6178 main.cpp.obj + 0003:000171e0 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@HI@ZXPAV12@HI@std@@@8 100d61e0 main.cpp.obj + 0003:00017238 ??_R0?AV?$_Func_impl_no_alloc@P6AXPAVPatchDetourBase@hadesmem@@PAX1I@ZXPAV12@PAXPAXI@std@@@8 100d6238 main.cpp.obj + 0003:00017298 ??_R0?AV?$sp_counted_impl_p@V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@@8 100d6298 main.cpp.obj + 0003:00017318 ??_R0?AV?$sp_counted_impl_p@V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@detail@boost@@@8 100d6318 main.cpp.obj + 0003:00017398 ??_R0?AV?$sp_counted_impl_p@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@detail@boost@@@8 100d6398 main.cpp.obj + 0003:00017438 ??_R0?AV?$sp_counted_impl_p@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@detail@boost@@@8 100d6438 main.cpp.obj + 0003:000174a0 ??_R0?AV?$basic_ifstream@DU?$char_traits@D@std@@@std@@@8 100d64a0 file_scripts.cpp.obj + 0003:000174dc ??_R0?AVDNameNode@@@8 100d64dc libvcruntime:undname.obj + 0003:000174f4 ??_R0?AVcharNode@@@8 100d64f4 libvcruntime:undname.obj + 0003:0001750c ??_R0?AVpcharNode@@@8 100d650c libvcruntime:undname.obj + 0003:00017524 ??_R0?AVpDNameNode@@@8 100d6524 libvcruntime:undname.obj + 0003:00017540 ??_R0?AVDNameStatusNode@@@8 100d6540 libvcruntime:undname.obj + 0003:00017560 ??_R0?AVpairNode@@@8 100d6560 libvcruntime:undname.obj + 0003:00017578 ??_R0?AV_Locimp@locale@std@@@8 100d6578 libcpmt:locale0.obj + 0003:0001759c ??_R0?AVtype_info@@@8 100d659c LIBCMT:std_type_info_static.obj + 0003:000175b8 ?gStartTime@Nampower@@3IA 100d65b8 logging.cpp.obj + 0003:000175bc ?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A 100d65bc logging.cpp.obj + 0003:000175c0 ?_Stinit@?1??_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@23@@Z@4U_Mbstatet@@A 100d65c0 logging.cpp.obj + 0003:000175c8 ?_Psave@?$_Facetptr@V?$ctype@D@std@@@std@@2PBVfacet@locale@2@B 100d65c8 logging.cpp.obj + 0003:000175cc ?_Psave@?$_Facetptr@V?$codecvt@DDU_Mbstatet@@@std@@@std@@2PBVfacet@locale@2@B 100d65cc logging.cpp.obj + 0003:000175d0 ?gLastErrorTimeMs@Nampower@@3IA 100d65d0 main.cpp.obj + 0003:000175d4 ?gLastBufferIncreaseTimeMs@Nampower@@3IA 100d65d4 main.cpp.obj + 0003:000175d8 ?gLastBufferDecreaseTimeMs@Nampower@@3IA 100d65d8 main.cpp.obj + 0003:000175dc ?gBufferTimeMs@Nampower@@3IA 100d65dc main.cpp.obj + 0003:000175e0 ?gDisenchantItemId@Nampower@@3IA 100d65e0 main.cpp.obj + 0003:000175e4 ?gDisenchantQuality@Nampower@@3IA 100d65e4 main.cpp.obj + 0003:000175e8 ?gDisenchantIncludeSoulbound@Nampower@@3_NA 100d65e8 main.cpp.obj + 0003:000175e9 ?gForceQueueCast@Nampower@@3_NA 100d65e9 main.cpp.obj + 0003:000175ea ?gNoQueueCast@Nampower@@3_NA 100d65ea main.cpp.obj + 0003:000175eb ?gQueuesProcessed@Nampower@@3_NA 100d65eb main.cpp.obj + 0003:000175ec ?gNextDisenchantTimeMs@Nampower@@3IA 100d65ec main.cpp.obj + 0003:000175f0 ?gRunningAverageLatencyMs@Nampower@@3IA 100d65f0 main.cpp.obj + 0003:000175f4 ?gLastServerSpellDelayMs@Nampower@@3IA 100d65f4 main.cpp.obj + 0003:000175f8 ?castSpellDetour@Nampower@@3PAVPatchDetourBase@hadesmem@@A 100d65f8 main.cpp.obj + 0003:000175fc ?gLastCastData@Nampower@@3ULastCastData@@A 100d65fc main.cpp.obj + 0003:00017618 ?gCastData@Nampower@@3UCastData@@A 100d6618 main.cpp.obj + 0003:00017670 ?gLastNormalCastParams@Nampower@@3UCastSpellParams@@A 100d6670 main.cpp.obj + 0003:000176a8 ?gLastOnSwingCastParams@Nampower@@3UCastSpellParams@@A 100d66a8 main.cpp.obj + 0003:000176e0 ?lastCastUsedServerDelay@Nampower@@3_NA 100d66e0 main.cpp.obj + 0003:000176e4 ?loadFlag@Nampower@@3Uonce_flag@std@@A 100d66e4 main.cpp.obj + 0003:000176e8 ?initHooksFlag@Nampower@@3Uonce_flag@std@@A 100d66e8 main.cpp.obj + 0003:000176ec ?gNonGcdCastQueue@Nampower@@3VCastQueue@1@A 100d66ec main.cpp.obj + 0003:00017708 ?gCastHistory@Nampower@@3VCastQueue@1@A 100d6708 main.cpp.obj + 0003:00017724 ?gSysMsgInitDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXXZPAX@hadesmem@@@std@@@std@@A 100d6724 main.cpp.obj + 0003:00017728 ?gLoadScriptFunctionsDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@A 100d6728 main.cpp.obj + 0003:0001772c ?gCreateEventsDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@A 100d672c main.cpp.obj + 0003:00017730 ?gSetEventCountDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@A 100d6730 main.cpp.obj + 0003:00017734 ?gSetCVarDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@A 100d6734 main.cpp.obj + 0003:00017738 ?gCGSpellBook_CastSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@A 100d6738 main.cpp.obj + 0003:0001773c ?gCastDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@A 100d673c main.cpp.obj + 0003:00017740 ?gSendCastDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@A 100d6740 main.cpp.obj + 0003:00017744 ?gCancelSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d6744 main.cpp.obj + 0003:00017748 ?gSignalEventDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXW4Events@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXW4Events@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d6748 main.cpp.obj + 0003:0001774c ?gSpellFailedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@A 100d674c main.cpp.obj + 0003:00017750 ?gSpell_C_GetSpellModifiersDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPBUSpellRec@game@@PAHW4SpellModOp@2@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPBUSpellRec@game@@PAHW4SpellModOp@2@@ZPAX@hadesmem@@@std@@@std@@A 100d6750 main.cpp.obj + 0003:00017754 ?gSpell_C_GetSpellRadiusDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IMXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IMXZPAX@hadesmem@@@std@@@std@@A 100d6754 main.cpp.obj + 0003:00017758 ?gCastbarPatch@Nampower@@3V?$unique_ptr@VPatchRaw@hadesmem@@U?$default_delete@VPatchRaw@hadesmem@@@std@@@std@@A 100d6758 main.cpp.obj + 0003:0001775c ?gIEndSceneDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@A 100d675c main.cpp.obj + 0003:00017760 ?gSpell_C_GetAutoRepeatingSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6AHXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6AHXZPAX@hadesmem@@@std@@@std@@A 100d6760 main.cpp.obj + 0003:00017764 ?gSpell_C_CooldownEventTriggeredDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIPA_KHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIPA_KHH@ZPAX@hadesmem@@@std@@@std@@A 100d6764 main.cpp.obj + 0003:00017768 ?gSpellGoDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d6768 main.cpp.obj + 0003:0001776c ?gSpellTargetUnitDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d676c main.cpp.obj + 0003:00017770 ?gSpellStopCastingDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d6770 main.cpp.obj + 0003:00017774 ?gOnSpriteRightClickDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@A 100d6774 main.cpp.obj + 0003:00017778 ?gSpell_C_HandleSpriteClickDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAUCSpriteClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUCSpriteClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d6778 main.cpp.obj + 0003:0001777c ?gSpell_C_HandleTerrainClickDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@A 100d677c main.cpp.obj + 0003:00017780 ?gCGWorldFrame_OnLayerTrackTerrainDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@A 100d6780 main.cpp.obj + 0003:00017784 ?gSpell_C_TargetSpellDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@A 100d6784 main.cpp.obj + 0003:00017788 ?gSpellCooldownDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d6788 main.cpp.obj + 0003:0001778c ?gSpellDelayedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d678c main.cpp.obj + 0003:00017790 ?gCastResultHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d6790 main.cpp.obj + 0003:00017794 ?gSpellFailedOtherHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d6794 main.cpp.obj + 0003:00017798 ?gSpellChannelStartHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d6798 main.cpp.obj + 0003:0001779c ?gSpellChannelUpdateHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d679c main.cpp.obj + 0003:000177a0 ?gPlaySpellVisualHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67a0 main.cpp.obj + 0003:000177a4 ?gSpellHealingLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67a4 main.cpp.obj + 0003:000177a8 ?gSpellEnergizeLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67a8 main.cpp.obj + 0003:000177ac ?gProcResistHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67ac main.cpp.obj + 0003:000177b0 ?gSpellLogMissHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67b0 main.cpp.obj + 0003:000177b4 ?gSpellOrDamageImmuneHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67b4 main.cpp.obj + 0003:000177b8 ?gSpellStartHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67b8 main.cpp.obj + 0003:000177bc ?gPeriodicAuraLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67bc main.cpp.obj + 0003:000177c0 ?gSpellNonMeleeDmgLogHandlerDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67c0 main.cpp.obj + 0003:000177c4 ?gCGPlayer_C_OnAttackIconPressedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IHPAIPAX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAIPAX_K@ZPAX@hadesmem@@@std@@@std@@A 100d67c4 main.cpp.obj + 0003:000177c8 ?gAttackRoundInfo_ReadPacketDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@A 100d67c8 main.cpp.obj + 0003:000177cc ?gCGActionBar_UseActionDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@A 100d67cc main.cpp.obj + 0003:000177d0 ?gCGUnit_C_OnAuraRemovedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@A 100d67d0 main.cpp.obj + 0003:000177d4 ?gCGUnit_C_OnAuraAddedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@A 100d67d4 main.cpp.obj + 0003:000177d8 ?gCGUnit_C_OnAuraStacksChangedDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@A 100d67d8 main.cpp.obj + 0003:000177dc ?gUnitCombatLogUnitDeadDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@A 100d67dc main.cpp.obj + 0003:000177e0 ?gCGBuffBar_UpdateDurationDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@A 100d67e0 main.cpp.obj + 0003:000177e4 ?gInvalidFunctionPtrCheckDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@A 100d67e4 main.cpp.obj + 0003:000177e8 ?gGetSpellSlotFromLuaDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@A 100d67e8 main.cpp.obj + 0003:000177ec ?gCSimpleFrame_GetNameDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d67ec main.cpp.obj + 0003:000177f0 ?gCSimpleTop_OnKeyDownDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@A 100d67f0 main.cpp.obj + 0003:000177f4 ?gCSimpleTop_OnKeyUpDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@A 100d67f4 main.cpp.obj + 0003:000177f8 ?gGetGUIDFromNameDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@A 100d67f8 main.cpp.obj + 0003:000177fc ?gCastSpellByNameDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@A 100d67fc main.cpp.obj + 0003:00017800 ?gSendUnitSignalDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@A 100d6800 main.cpp.obj + 0003:00017804 ?gCGPetInfo_SetPetDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@A 100d6804 main.cpp.obj + 0003:00017808 ?gTogglePetSlotAutocastDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@A 100d6808 main.cpp.obj + 0003:0001780c ?gCGPetInfo_GetPetSpellActionDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@A 100d680c main.cpp.obj + 0003:00017810 ?gCGGameUI_ShowCombatFeedbackDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@A 100d6810 main.cpp.obj + 0003:00017814 ?gGlueLoadScriptFunctionsDetour@Nampower@@3V?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@A 100d6814 main.cpp.obj + 0003:00017818 ?ep@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4V32@A 100d6818 main.cpp.obj + 0003:00017820 ?ep@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4V32@A 100d6820 main.cpp.obj + 0003:00017828 ?e@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B 100d6828 main.cpp.obj + 0003:00017830 ?e@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B 100d6830 main.cpp.obj + 0003:00017838 ?id@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100d6838 main.cpp.obj + 0003:0001783c ?id@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100d683c main.cpp.obj + 0003:00017840 ?id@?$numpunct@D@std@@2V0locale@2@A 100d6840 main.cpp.obj + 0003:00017844 ?id@?$numpunct@_W@std@@2V0locale@2@A 100d6844 main.cpp.obj + 0003:00017848 ?id@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100d6848 main.cpp.obj + 0003:0001784c ?_Psave@?$_Facetptr@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@2PBVfacet@locale@2@B 100d684c main.cpp.obj + 0003:00017850 ?_Psave@?$_Facetptr@V?$numpunct@D@std@@@std@@2PBVfacet@locale@2@B 100d6850 main.cpp.obj + 0003:00017854 ?$TSS0@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4HA 100d6854 main.cpp.obj + 0003:00017858 ?$TSS0@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@2@XZ@4HA 100d6858 main.cpp.obj + 0003:0001785c ?_Psave@?$_Facetptr@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@2PBVfacet@locale@2@B 100d685c main.cpp.obj + 0003:00017860 ?id@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100d6860 main.cpp.obj + 0003:00017864 ?id@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100d6864 main.cpp.obj + 0003:000178b0 ?lastCastResultTimeMs@Nampower@@3IA 100d68b0 spellevents.cpp.obj + 0003:00017bd8 ?gScriptQueued@Nampower@@3_NA 100d6bd8 misc_scripts.cpp.obj + 0003:00017bdc ?queuedScript@Nampower@@3PADA 100d6bdc misc_scripts.cpp.obj + 0003:00018a28 ?equippedTrinketDataCache@Nampower@@3V?$array@UCachedTrinketData@Nampower@@$0BD@@std@@A 100d7a28 items.cpp.obj + 0003:00018a78 ?bagTrinketDataCache@Nampower@@3V?$array@V?$array@UCachedTrinketData@Nampower@@$0EA@@std@@$0N@@std@@A 100d7a78 items.cpp.obj + 0003:00019778 ?bagItemDataCache@Nampower@@3V?$array@V?$array@UCachedItemData@Nampower@@$0EA@@std@@$0N@@std@@A 100d8778 items.cpp.obj + 0003:00021978 ?equippedItemDataCache@Nampower@@3V?$array@UCachedItemData@Nampower@@$0BD@@std@@A 100e0978 items.cpp.obj + 0003:00021cd4 ?itemStatsArrayFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100e0cd4 dbc_fields.cpp.obj + 0003:00021cf4 ?itemStatsFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100e0cf4 dbc_fields.cpp.obj + 0003:00021d14 ?spellRecFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100e0d14 dbc_fields.cpp.obj + 0003:00021d34 ?spellRecArrayFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100e0d34 dbc_fields.cpp.obj + 0003:00021d58 ?unitFieldsArrayFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100e0d58 unit_fields.cpp.obj + 0003:00021d78 ?unitFieldsFieldMap@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100e0d78 unit_fields.cpp.obj + 0003:00021da0 ?gAuraExpirationTime@Nampower@@3PAIA 100e0da0 auras.cpp.obj + 0003:00021e6c ?gPendingToggleAutocastSlot@Nampower@@3IA 100e0e6c pet.cpp.obj + 0003:00021e70 ?__WinRTOutOfMemoryExceptionCallback@@3P6GPAXXZA 100e0e70 libvcruntime:ehhelpers.obj + 0003:00021e74 ___pPurecall 100e0e74 libvcruntime:purevirt_data.obj + 0003:00021ea0 ?pArgList@UnDecorator@@0PAVReplicator@@A 100e0ea0 libvcruntime:undname.obj + 0003:00021ea4 ?pZNameList@UnDecorator@@0PAVReplicator@@A 100e0ea4 libvcruntime:undname.obj + 0003:00021ea8 ?pTemplateArgList@UnDecorator@@0PAVReplicator@@A 100e0ea8 libvcruntime:undname.obj + 0003:00021eac ?gName@UnDecorator@@0PBDB 100e0eac libvcruntime:undname.obj + 0003:00021eb0 ?name@UnDecorator@@0PBDB 100e0eb0 libvcruntime:undname.obj + 0003:00021eb4 ?disableFlags@UnDecorator@@0KA 100e0eb4 libvcruntime:undname.obj + 0003:00021eb8 ?fExplicitTemplateParams@UnDecorator@@0_NA 100e0eb8 libvcruntime:undname.obj + 0003:00021eb9 ?fGetTemplateArgumentList@UnDecorator@@0_NA 100e0eb9 libvcruntime:undname.obj + 0003:00021ebc ?m_pGetParameter@UnDecorator@@0P6APADJ@ZA 100e0ebc libvcruntime:undname.obj + 0003:00021ec0 ?m_CHPENameOffset@UnDecorator@@0KA 100e0ec0 libvcruntime:undname.obj + 0003:00021ec4 ?m_recursionLevel@UnDecorator@@0KA 100e0ec4 libvcruntime:undname.obj + 0003:00021f1c __nstream 100e0f1c libucrt:_file.obj + 0003:00021f20 ___piob 100e0f20 libucrt:_file.obj + 0003:00021f24 __cflush 100e0f24 libucrt:_file.obj + 0003:00021f28 ___acrt_lconv_static_null 100e0f28 libucrt:localeconv.obj + 0003:00021f2c ___acrt_lconv_static_W_null 100e0f2c libucrt:localeconv.obj + 0003:00021f30 ___acrt_locale_changed_data 100e0f30 libucrt:wsetlocale.obj + 0003:00021f34 ___acrt_current_locale_data 100e0f34 libucrt:nlsdata.obj + 0003:00022020 ___pioinfo 100e1020 libucrt:ioinit.obj + 0003:00022220 __nhandle 100e1220 libucrt:ioinit.obj + 0003:0002237c ___acrt_stdout_buffer 100e137c libucrt:_sftbuf.obj + 0003:00022380 ___acrt_stderr_buffer 100e1380 libucrt:_sftbuf.obj + 0003:000223ac ?_timezone@@3V?$dual_state_global@J@__crt_state_management@@A 100e13ac libucrt:timeset.obj + 0003:000223b0 ?_daylight@@3V?$dual_state_global@H@__crt_state_management@@A 100e13b0 libucrt:timeset.obj + 0003:000223b4 ?_dstbias@@3V?$dual_state_global@J@__crt_state_management@@A 100e13b4 libucrt:timeset.obj + 0003:00022480 __mbctype 100e1480 libucrt:mbctype.obj + 0003:00022484 __mbcasemap 100e1484 libucrt:mbctype.obj + 0003:00022488 ___acrt_current_multibyte_data 100e1488 libucrt:mbctype.obj + 0003:0002249c ___acrt_heap 100e149c libucrt:heap_handle.obj + 0003:000224a4 ___acrt_atexit_table 100e14a4 libucrt:onexit.obj + 0003:000224b0 ___acrt_at_quick_exit_table 100e14b0 libucrt:onexit.obj + 0003:000224c8 __environ_table 100e14c8 libucrt:environment_initialization.obj + 0003:000224cc __wenviron_table 100e14cc libucrt:environment_initialization.obj + 0003:000224d0 ___dcrt_initial_wide_environment 100e14d0 libucrt:environment_initialization.obj + 0003:000224d4 ___dcrt_initial_narrow_environment 100e14d4 libucrt:environment_initialization.obj + 0003:000224d8 ___fastflag 100e14d8 libucrt:fp_flags.obj + 0003:000225a8 ?_Id_cnt@id@locale@std@@0HA 100e15a8 libcpmt:locale0.obj + 0003:000225ac ?_Clocptr@_Locimp@locale@std@@0PAV123@A 100e15ac libcpmt:locale0.obj + 0003:000225b0 ?id@?$ctype@G@std@@2V0locale@2@A 100e15b0 libcpmt:locale0.obj + 0003:000225b4 ?id@?$codecvt@_WDU_Mbstatet@@@std@@2V0locale@2@A 100e15b4 libcpmt:locale0.obj + 0003:000225b8 ?id@?$codecvt@GDU_Mbstatet@@@std@@2V0locale@2@A 100e15b8 libcpmt:locale0.obj + 0003:000225bc ?id@?$ctype@_W@std@@2V0locale@2@A 100e15bc libcpmt:locale0.obj + 0003:000225c0 ?id@?$ctype@D@std@@2V0locale@2@A 100e15c0 libcpmt:locale0.obj + 0003:000225dc ?_Index@ios_base@std@@0HA 100e15dc libcpmt:ios.obj + 0003:00022620 ?_Ptr_cin@std@@3PAV?$basic_istream@DU?$char_traits@D@std@@@1@A 100e1620 libcpmt:iosptrs.obj + 0003:00022624 ?_Ptr_cout@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A 100e1624 libcpmt:iosptrs.obj + 0003:00022628 ?_Ptr_cerr@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A 100e1628 libcpmt:iosptrs.obj + 0003:0002262c ?_Ptr_clog@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A 100e162c libcpmt:iosptrs.obj + 0003:00022630 ?_Ptr_wcin@std@@3PAV?$basic_istream@_WU?$char_traits@_W@std@@@1@A 100e1630 libcpmt:iosptrs.obj + 0003:00022634 ?_Ptr_wcout@std@@3PAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@A 100e1634 libcpmt:iosptrs.obj + 0003:00022638 ?_Ptr_wcerr@std@@3PAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@A 100e1638 libcpmt:iosptrs.obj + 0003:0002263c ?_Ptr_wclog@std@@3PAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@A 100e163c libcpmt:iosptrs.obj + 0003:00022678 ?id@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100e1678 libcpmt:wlocale.obj + 0003:0002267c ?id@?$collate@_W@std@@2V0locale@2@A 100e167c libcpmt:wlocale.obj + 0003:00022680 ?id@?$messages@_W@std@@2V0locale@2@A 100e1680 libcpmt:wlocale.obj + 0003:00022684 ?id@?$money_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100e1684 libcpmt:wlocale.obj + 0003:00022688 ?id@?$money_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100e1688 libcpmt:wlocale.obj + 0003:0002268c ?id@?$moneypunct@_W$0A@@std@@2V0locale@2@A 100e168c libcpmt:wlocale.obj + 0003:00022690 ?id@?$moneypunct@_W$00@std@@2V0locale@2@A 100e1690 libcpmt:wlocale.obj + 0003:00022694 ?id@?$time_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A 100e1694 libcpmt:wlocale.obj + 0003:00022698 ?id@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100e1698 libcpmt:wlocale.obj + 0003:0002269c ?id@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100e169c libcpmt:wlocale.obj + 0003:000226a0 ?id@?$numpunct@G@std@@2V0locale@2@A 100e16a0 libcpmt:wlocale.obj + 0003:000226a4 ?id@?$collate@G@std@@2V0locale@2@A 100e16a4 libcpmt:wlocale.obj + 0003:000226a8 ?id@?$messages@G@std@@2V0locale@2@A 100e16a8 libcpmt:wlocale.obj + 0003:000226ac ?id@?$money_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100e16ac libcpmt:wlocale.obj + 0003:000226b0 ?id@?$money_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100e16b0 libcpmt:wlocale.obj + 0003:000226b4 ?id@?$moneypunct@G$0A@@std@@2V0locale@2@A 100e16b4 libcpmt:wlocale.obj + 0003:000226b8 ?id@?$moneypunct@G$00@std@@2V0locale@2@A 100e16b8 libcpmt:wlocale.obj + 0003:000226bc ?id@?$time_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100e16bc libcpmt:wlocale.obj + 0003:000226c0 ?id@?$time_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A 100e16c0 libcpmt:wlocale.obj + 0003:000226c4 ?id@?$collate@D@std@@2V0locale@2@A 100e16c4 libcpmt:xlocale.obj + 0003:000226c8 ?id@?$messages@D@std@@2V0locale@2@A 100e16c8 libcpmt:xlocale.obj + 0003:000226cc ?id@?$money_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100e16cc libcpmt:xlocale.obj + 0003:000226d0 ?id@?$money_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100e16d0 libcpmt:xlocale.obj + 0003:000226d4 ?id@?$moneypunct@D$0A@@std@@2V0locale@2@A 100e16d4 libcpmt:xlocale.obj + 0003:000226d8 ?id@?$moneypunct@D$00@std@@2V0locale@2@A 100e16d8 libcpmt:xlocale.obj + 0003:000226dc ?id@?$time_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A 100e16dc libcpmt:xlocale.obj + 0003:000226e0 ___scrt_current_native_startup_state 100e16e0 LIBCMT:utility.obj + 0003:000226e4 ___scrt_native_startup_lock 100e16e4 LIBCMT:utility.obj + 0003:00022710 ?__type_info_root_node@@3U__type_info_node@@A 100e1710 LIBCMT:tncleanup.obj + 0003:00022718 __tls_index 100e1718 LIBCMT:tlssup.obj + 0003:00022720 ___avx10_version 100e1720 LIBCMT:cpu_disp.obj + 0003:00022724 ___isa_available 100e1724 LIBCMT:cpu_disp.obj + 0003:00022728 ___favor 100e1728 LIBCMT:cpu_disp.obj + 0003:0002272c ___scrt_debugger_hook_flag 100e172c LIBCMT:utility_desktop.obj + 0003:00022a50 ?_OptionsStorage@?1??__local_stdio_scanf_options@@9@4_KA 100e1a50 LIBCMT:default_local_stdio_options.obj + 0003:00022b60 __pgmptr 100e1b60 libucrt:argv_data.obj + 0003:00022b64 ___argc 100e1b64 libucrt:argv_data.obj + 0003:00022b68 ___argv 100e1b68 libucrt:argv_data.obj + 0003:00022b6c ___wargv 100e1b6c libucrt:argv_data.obj + 0003:00022b70 __acmdln 100e1b70 libucrt:argv_data.obj + 0003:00022b74 __wcmdln 100e1b74 libucrt:argv_data.obj + 0003:00022b78 __commode 100e1b78 libucrt:ncommode.obj + 0003:00022b84 __umaskval 100e1b84 libucrt:umask.obj + 0003:00022b88 __fmode 100e1b88 libucrt:txtmode.obj + 0003:00022b8c ___use_sse2_mathfcns 100e1b8c + 0003:00022b90 __pmatherr 100e1b90 + 0003:00022b94 ___dyn_tls_init_callback 100e1b94 + 0003:00022b98 ___scrt_ucrt_dll_is_in_use 100e1b98 + 0003:00022ba0 ?_OptionsStorage@?1??__local_stdio_printf_options@@9@9 100e1ba0 - entry point at 0001:000885d2 + entry point at 0001:0008b5f2 Static symbols @@ -7890,5781 +7984,5890 @@ 0001:00000350 ??__EgCreateEventsDetour@Nampower@@YAXXZ 10001350 f main.cpp.obj 0001:00000360 ??__EgGetGUIDFromNameDetour@Nampower@@YAXXZ 10001360 f main.cpp.obj 0001:00000370 ??__EgGetSpellSlotFromLuaDetour@Nampower@@YAXXZ 10001370 f main.cpp.obj - 0001:00000380 ??__EgIEndSceneDetour@Nampower@@YAXXZ 10001380 f main.cpp.obj - 0001:00000390 ??__EgInvalidFunctionPtrCheckDetour@Nampower@@YAXXZ 10001390 f main.cpp.obj - 0001:000003a0 ??__EgLoadScriptFunctionsDetour@Nampower@@YAXXZ 100013a0 f main.cpp.obj - 0001:000003b0 ??__EgNonGcdCastQueue@Nampower@@YAXXZ 100013b0 f main.cpp.obj - 0001:000003d0 ??__EgOnSpriteRightClickDetour@Nampower@@YAXXZ 100013d0 f main.cpp.obj - 0001:000003e0 ??__EgPeriodicAuraLogHandlerDetour@Nampower@@YAXXZ 100013e0 f main.cpp.obj - 0001:000003f0 ??__EgPlaySpellVisualHandlerDetour@Nampower@@YAXXZ 100013f0 f main.cpp.obj - 0001:00000400 ??__EgProcResistHandlerDetour@Nampower@@YAXXZ 10001400 f main.cpp.obj - 0001:00000410 ??__EgSendCastDetour@Nampower@@YAXXZ 10001410 f main.cpp.obj - 0001:00000420 ??__EgSendUnitSignalDetour@Nampower@@YAXXZ 10001420 f main.cpp.obj - 0001:00000430 ??__EgSetCVarDetour@Nampower@@YAXXZ 10001430 f main.cpp.obj - 0001:00000440 ??__EgSetEventCountDetour@Nampower@@YAXXZ 10001440 f main.cpp.obj - 0001:00000450 ??__EgSignalEventDetour@Nampower@@YAXXZ 10001450 f main.cpp.obj - 0001:00000460 ??__EgSpellChannelStartHandlerDetour@Nampower@@YAXXZ 10001460 f main.cpp.obj - 0001:00000470 ??__EgSpellChannelUpdateHandlerDetour@Nampower@@YAXXZ 10001470 f main.cpp.obj - 0001:00000480 ??__EgSpellCooldownDetour@Nampower@@YAXXZ 10001480 f main.cpp.obj - 0001:00000490 ??__EgSpellDelayedDetour@Nampower@@YAXXZ 10001490 f main.cpp.obj - 0001:000004a0 ??__EgSpellEnergizeLogHandlerDetour@Nampower@@YAXXZ 100014a0 f main.cpp.obj - 0001:000004b0 ??__EgSpellFailedDetour@Nampower@@YAXXZ 100014b0 f main.cpp.obj - 0001:000004c0 ??__EgSpellFailedOtherHandlerDetour@Nampower@@YAXXZ 100014c0 f main.cpp.obj - 0001:000004d0 ??__EgSpellGoDetour@Nampower@@YAXXZ 100014d0 f main.cpp.obj - 0001:000004e0 ??__EgSpellHealingLogHandlerDetour@Nampower@@YAXXZ 100014e0 f main.cpp.obj - 0001:000004f0 ??__EgSpellLogMissHandlerDetour@Nampower@@YAXXZ 100014f0 f main.cpp.obj - 0001:00000500 ??__EgSpellNonMeleeDmgLogHandlerDetour@Nampower@@YAXXZ 10001500 f main.cpp.obj - 0001:00000510 ??__EgSpellOrDamageImmuneHandlerDetour@Nampower@@YAXXZ 10001510 f main.cpp.obj - 0001:00000520 ??__EgSpellStartHandlerDetour@Nampower@@YAXXZ 10001520 f main.cpp.obj - 0001:00000530 ??__EgSpellStopCastingDetour@Nampower@@YAXXZ 10001530 f main.cpp.obj - 0001:00000540 ??__EgSpellTargetUnitDetour@Nampower@@YAXXZ 10001540 f main.cpp.obj - 0001:00000550 ??__EgSpell_C_CooldownEventTriggeredDetour@Nampower@@YAXXZ 10001550 f main.cpp.obj - 0001:00000560 ??__EgSpell_C_GetAutoRepeatingSpellDetour@Nampower@@YAXXZ 10001560 f main.cpp.obj - 0001:00000570 ??__EgSpell_C_GetSpellModifiersDetour@Nampower@@YAXXZ 10001570 f main.cpp.obj - 0001:00000580 ??__EgSpell_C_GetSpellRadiusDetour@Nampower@@YAXXZ 10001580 f main.cpp.obj - 0001:00000590 ??__EgSpell_C_HandleSpriteClickDetour@Nampower@@YAXXZ 10001590 f main.cpp.obj - 0001:000005a0 ??__EgSpell_C_HandleTerrainClickDetour@Nampower@@YAXXZ 100015a0 f main.cpp.obj - 0001:000005b0 ??__EgSpell_C_TargetSpellDetour@Nampower@@YAXXZ 100015b0 f main.cpp.obj - 0001:000005c0 ??__EgSysMsgInitDetour@Nampower@@YAXXZ 100015c0 f main.cpp.obj - 0001:000005d0 ??__EgTogglePetSlotAutocastDetour@Nampower@@YAXXZ 100015d0 f main.cpp.obj - 0001:000005e0 ??__EgUnitCombatLogUnitDeadDetour@Nampower@@YAXXZ 100015e0 f main.cpp.obj - 0001:000005f0 ??__EunitFieldsArrayFieldRefs@Nampower@@YAXXZ 100015f0 f misc_scripts.cpp.obj - 0001:00000610 ??__EunitFieldsNestedArrayRefs@Nampower@@YAXXZ 10001610 f misc_scripts.cpp.obj - 0001:00000630 ??__EspellRecArrayFieldRefs@Nampower@@YAXXZ 10001630 f spell_scripts.cpp.obj - 0001:00000650 ??__EspellRecNestedArrayRefs@Nampower@@YAXXZ 10001650 f spell_scripts.cpp.obj - 0001:00000670 ??__EitemStatsArrayFieldRefs@Nampower@@YAXXZ 10001670 f item_scripts.cpp.obj - 0001:00000690 ??__EitemStatsNestedArrayRefs@Nampower@@YAXXZ 10001690 f item_scripts.cpp.obj - 0001:000006b0 ??__EbagItemDataCache@Nampower@@YAXXZ 100016b0 f items.cpp.obj - 0001:000006e0 ??__EequippedItemDataCache@Nampower@@YAXXZ 100016e0 f items.cpp.obj - 0001:00000740 ??__EitemNameToIdCache@Nampower@@YAXXZ 10001740 f items.cpp.obj - 0001:000007f0 ??__EitemStatsCache@Nampower@@YAXXZ 100017f0 f items.cpp.obj - 0001:000008a0 ??__EpendingItemIds@Nampower@@YAXXZ 100018a0 f items.cpp.obj - 0001:00000950 ??__EitemStatsArrayFieldMap@Nampower@@YAXXZ 10001950 f dbc_fields.cpp.obj - 0001:00000970 ??__EitemStatsFieldMap@Nampower@@YAXXZ 10001970 f dbc_fields.cpp.obj - 0001:00000990 ??__EspellRecArrayFieldMap@Nampower@@YAXXZ 10001990 f dbc_fields.cpp.obj - 0001:000009b0 ??__EspellRecFieldMap@Nampower@@YAXXZ 100019b0 f dbc_fields.cpp.obj - 0001:000009d0 ??__EunitFieldsArrayFieldMap@Nampower@@YAXXZ 100019d0 f unit_fields.cpp.obj - 0001:000009f0 ??__EunitFieldsFieldMap@Nampower@@YAXXZ 100019f0 f unit_fields.cpp.obj - 0001:00000a10 ??__EregisteredTableRefs@Nampower@@YAXXZ 10001a10 f lua_refs.cpp.obj - 0001:00000a1c ??__Einitlocks@std@@YAXXZ 10001a1c f libcpmt:xlock.obj - 0001:00000a32 ??__Eclassic_locale@std@@YAXXZ 10001a32 f libcpmt:locale0.obj - 0001:00000a3e ??__F_Fac_tidy_reg@std@@YAXXZ 10001a3e f libcpmt:locale0.obj - 0001:00000a4a ??__Einitlocks@std@@YAXXZ 10001a4a f libcpmt:iosptrs.obj - 0001:00000a60 ??__Finit_atexit@@YAXXZ 10001a60 f libcpmt:iosptrs.obj - 0001:00000c95 _ud_inp_init 10001c95 f udis86:udis86.obj - 0001:00000cd0 _inp_file_hook 10001cd0 f udis86:udis86.obj - 0001:00000ce1 _opr_cast 10001ce1 f udis86:syn-intel.obj - 0001:00000d60 _gen_operand 10001d60 f udis86:syn-intel.obj - 0001:00001188 _inp_peek 10002188 f udis86:decode.obj - 0001:000011d0 _inp_next 100021d0 f udis86:decode.obj - 0001:00001232 _inp_uint16 10002232 f udis86:decode.obj - 0001:00001254 _inp_uint32 10002254 f udis86:decode.obj - 0001:00001290 _inp_uint64 10002290 f udis86:decode.obj - 0001:0000132b _decode_prefixes 1000232b f udis86:decode.obj - 0001:00001457 _modrm 10002457 f udis86:decode.obj - 0001:00001488 _resolve_operand_size 10002488 f udis86:decode.obj - 0001:00001514 _resolve_mnemonic 10002514 f udis86:decode.obj - 0001:000015e7 _decode_a 100025e7 f udis86:decode.obj - 0001:0000162b _decode_gpr 1000262b f udis86:decode.obj - 0001:0000168e _decode_reg 1000268e f udis86:decode.obj - 0001:00001722 _decode_imm 10002722 f udis86:decode.obj - 0001:0000177e _decode_mem_disp 1000277e f udis86:decode.obj - 0001:000017de _decode_modrm_reg 100027de f udis86:decode.obj - 0001:0000181a _decode_modrm_rm 1000281a f udis86:decode.obj - 0001:00001ad0 _decode_operand 10002ad0 f udis86:decode.obj - 0001:00001d34 $LN82 10002d34 udis86:decode.obj - 0001:00001db0 $LN81 10002db0 udis86:decode.obj - 0001:00001deb _decode_operands 10002deb f udis86:decode.obj - 0001:00001e97 _clear_insn 10002e97 f udis86:decode.obj - 0001:00001eed _resolve_mode 10002eed f udis86:decode.obj - 0001:0000203e _decode_insn 1000303e f udis86:decode.obj - 0001:000020b2 _decode_3dnow 100030b2 f udis86:decode.obj - 0001:000020fe _decode_ssepfx 100030fe f udis86:decode.obj - 0001:0000217c _decode_vex 1000317c f udis86:decode.obj - 0001:00002215 _decode_ext 10003215 f udis86:decode.obj - 0001:000023c1 $LN60 100033c1 udis86:decode.obj - 0001:000023f9 _decode_opcode 100033f9 f udis86:decode.obj - 0001:00004430 _initialize_environment 10005430 f i libucrt:initialization.obj - 0001:00004430 _initialize_global_state_isolation 10005430 f i libucrt:initialization.obj - 0001:00004430 _report_memory_leaks 10005430 f i libucrt:initialization.obj - 0001:00004430 _uninitialize_c 10005430 f i libucrt:initialization.obj - 0001:00004430 _uninitialize_global_state_isolation 10005430 f i libucrt:initialization.obj - 0001:00004f70 _no_op_initialize 10005f70 f i libucrt:wsetlocale.obj - 0001:00006130 __catch$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z$0 10007130 f i main.cpp.obj - 0001:000061d0 __catch$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z$0 100071d0 f i main.cpp.obj - 0001:00006320 __catch$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$0 10007320 f i main.cpp.obj - 0001:00006470 __catch$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$0 10007470 f i main.cpp.obj - 0001:00006510 __catch$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z$0 10007510 f i main.cpp.obj - 0001:0000660a __catch$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$0 1000760a f i main.cpp.obj - 0001:00006886 __catch$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$0 10007886 f i main.cpp.obj - 0001:00006b32 __catch$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$0 10007b32 f i main.cpp.obj - 0001:00007f8a __catch$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$0 10008f8a f i main.cpp.obj - 0001:0000866a __catch$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$0 1000966a f i main.cpp.obj - 0001:00008a84 __catch$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$0 10009a84 f i main.cpp.obj - 0001:00008bb5 __catch$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$1 10009bb5 f i main.cpp.obj - 0001:00008ccb __catch$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$2 10009ccb f i main.cpp.obj - 0001:00009294 __catch$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$0 1000a294 f i main.cpp.obj - 0001:000093c5 __catch$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$1 1000a3c5 f i main.cpp.obj - 0001:000094db __catch$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$2 1000a4db f i main.cpp.obj - 0001:00009aa4 __catch$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$0 1000aaa4 f i main.cpp.obj - 0001:00009bd5 __catch$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$1 1000abd5 f i main.cpp.obj - 0001:00009ceb __catch$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$2 1000aceb f i main.cpp.obj - 0001:0000a2b4 __catch$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$0 1000b2b4 f i main.cpp.obj - 0001:0000a3e5 __catch$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$1 1000b3e5 f i main.cpp.obj - 0001:0000a4fb __catch$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$2 1000b4fb f i main.cpp.obj - 0001:0000aac4 __catch$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$0 1000bac4 f i main.cpp.obj - 0001:0000abf5 __catch$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$1 1000bbf5 f i main.cpp.obj - 0001:0000ad0b __catch$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$2 1000bd0b f i main.cpp.obj - 0001:0000b2d4 __catch$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$0 1000c2d4 f i main.cpp.obj - 0001:0000b405 __catch$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$1 1000c405 f i main.cpp.obj - 0001:0000b51b __catch$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$2 1000c51b f i main.cpp.obj - 0001:0000bae4 __catch$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$0 1000cae4 f i main.cpp.obj - 0001:0000bc15 __catch$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$1 1000cc15 f i main.cpp.obj - 0001:0000bd2b __catch$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$2 1000cd2b f i main.cpp.obj - 0001:0000c2f4 __catch$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$0 1000d2f4 f i main.cpp.obj - 0001:0000c425 __catch$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$1 1000d425 f i main.cpp.obj - 0001:0000c53b __catch$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$2 1000d53b f i main.cpp.obj - 0001:0000cb14 __catch$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$0 1000db14 f i main.cpp.obj - 0001:0000cc45 __catch$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$1 1000dc45 f i main.cpp.obj - 0001:0000cd5b __catch$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$2 1000dd5b f i main.cpp.obj - 0001:0000d324 __catch$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$0 1000e324 f i main.cpp.obj - 0001:0000d455 __catch$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$1 1000e455 f i main.cpp.obj - 0001:0000d56b __catch$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$2 1000e56b f i main.cpp.obj - 0001:0000db44 __catch$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$0 1000eb44 f i main.cpp.obj - 0001:0000dc75 __catch$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$1 1000ec75 f i main.cpp.obj - 0001:0000dd8b __catch$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$2 1000ed8b f i main.cpp.obj - 0001:0000e354 __catch$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$0 1000f354 f i main.cpp.obj - 0001:0000e485 __catch$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$1 1000f485 f i main.cpp.obj - 0001:0000e59b __catch$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$2 1000f59b f i main.cpp.obj - 0001:0000eb64 __catch$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$0 1000fb64 f i main.cpp.obj - 0001:0000ec95 __catch$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$1 1000fc95 f i main.cpp.obj - 0001:0000edab __catch$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$2 1000fdab f i main.cpp.obj - 0001:0000f374 __catch$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$0 10010374 f i main.cpp.obj - 0001:0000f4a5 __catch$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$1 100104a5 f i main.cpp.obj - 0001:0000f5bb __catch$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$2 100105bb f i main.cpp.obj - 0001:0000fb84 __catch$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$0 10010b84 f i main.cpp.obj - 0001:0000fcb5 __catch$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$1 10010cb5 f i main.cpp.obj - 0001:0000fdcb __catch$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$2 10010dcb f i main.cpp.obj - 0001:00010394 __catch$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$0 10011394 f i main.cpp.obj - 0001:000104c5 __catch$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$1 100114c5 f i main.cpp.obj - 0001:000105db __catch$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$2 100115db f i main.cpp.obj - 0001:00010ba4 __catch$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$0 10011ba4 f i main.cpp.obj - 0001:00010cd5 __catch$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$1 10011cd5 f i main.cpp.obj - 0001:00010deb __catch$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$2 10011deb f i main.cpp.obj - 0001:000113b4 __catch$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$0 100123b4 f i main.cpp.obj - 0001:000114e5 __catch$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$1 100124e5 f i main.cpp.obj - 0001:000115fb __catch$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$2 100125fb f i main.cpp.obj - 0001:00011bc4 __catch$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$0 10012bc4 f i main.cpp.obj - 0001:00011cf5 __catch$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$1 10012cf5 f i main.cpp.obj - 0001:00011e0b __catch$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$2 10012e0b f i main.cpp.obj - 0001:000123d4 __catch$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$0 100133d4 f i main.cpp.obj - 0001:00012505 __catch$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$1 10013505 f i main.cpp.obj - 0001:0001261b __catch$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$2 1001361b f i main.cpp.obj - 0001:00012be4 __catch$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$0 10013be4 f i main.cpp.obj - 0001:00012d15 __catch$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$1 10013d15 f i main.cpp.obj - 0001:00012e2b __catch$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$2 10013e2b f i main.cpp.obj - 0001:000133f4 __catch$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$0 100143f4 f i main.cpp.obj - 0001:00013525 __catch$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$1 10014525 f i main.cpp.obj - 0001:0001363b __catch$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$2 1001463b f i main.cpp.obj - 0001:00013c04 __catch$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$0 10014c04 f i main.cpp.obj - 0001:00013d35 __catch$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$1 10014d35 f i main.cpp.obj - 0001:00013e4b __catch$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$2 10014e4b f i main.cpp.obj - 0001:00014414 __catch$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$0 10015414 f i main.cpp.obj - 0001:00014545 __catch$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$1 10015545 f i main.cpp.obj - 0001:0001465b __catch$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$2 1001565b f i main.cpp.obj - 0001:00014c24 __catch$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$0 10015c24 f i main.cpp.obj - 0001:00014d55 __catch$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$1 10015d55 f i main.cpp.obj - 0001:00014e6b __catch$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$2 10015e6b f i main.cpp.obj - 0001:00015434 __catch$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$0 10016434 f i main.cpp.obj - 0001:00015565 __catch$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$1 10016565 f i main.cpp.obj - 0001:0001567b __catch$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$2 1001667b f i main.cpp.obj - 0001:00015c44 __catch$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$0 10016c44 f i main.cpp.obj - 0001:00015d75 __catch$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$1 10016d75 f i main.cpp.obj - 0001:00015e8b __catch$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$2 10016e8b f i main.cpp.obj - 0001:00016454 __catch$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$0 10017454 f i main.cpp.obj - 0001:00016585 __catch$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$1 10017585 f i main.cpp.obj - 0001:0001669b __catch$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$2 1001769b f i main.cpp.obj - 0001:00016c64 __catch$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$0 10017c64 f i main.cpp.obj - 0001:00016d95 __catch$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$1 10017d95 f i main.cpp.obj - 0001:00016eab __catch$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$2 10017eab f i main.cpp.obj - 0001:00017474 __catch$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$0 10018474 f i main.cpp.obj - 0001:000175a5 __catch$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$1 100185a5 f i main.cpp.obj - 0001:000176bb __catch$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$2 100186bb f i main.cpp.obj - 0001:00017c84 __catch$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$0 10018c84 f i main.cpp.obj - 0001:00017db5 __catch$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$1 10018db5 f i main.cpp.obj - 0001:00017ecb __catch$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$2 10018ecb f i main.cpp.obj - 0001:00018494 __catch$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$0 10019494 f i main.cpp.obj - 0001:000185c5 __catch$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$1 100195c5 f i main.cpp.obj - 0001:000186db __catch$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$2 100196db f i main.cpp.obj - 0001:00018a4b __catch$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ$0 10019a4b f i main.cpp.obj - 0001:00018a66 __catch$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ$1 10019a66 f i main.cpp.obj - 0001:00018acb __catch$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ$0 10019acb f i main.cpp.obj - 0001:00018ae6 __catch$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ$1 10019ae6 f i main.cpp.obj - 0001:0001ee13 __catch$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$0 1001fe13 f i main.cpp.obj - 0001:0001f2a5 __catch$??0SuspendedProcess@hadesmem@@QAE@KK@Z$0 100202a5 f i main.cpp.obj - 0001:00020433 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$0 10021433 f i main.cpp.obj - 0001:000205e0 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$0 100215e0 f i main.cpp.obj - 0001:000205e0 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$0 100215e0 f i main.cpp.obj - 0001:0002079d __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$0 1002179d f i main.cpp.obj - 0001:00020970 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$0 10021970 f i main.cpp.obj - 0001:00020b24 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$0 10021b24 f i main.cpp.obj - 0001:00020cd0 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$0 10021cd0 f i main.cpp.obj - 0001:00020e30 ??R@@QBE@XZ 10021e30 f main.cpp.obj - 0001:00024604 $LN455 10025604 main.cpp.obj - 0001:00024618 $LN454 10025618 main.cpp.obj - 0001:00024e74 $LN455 10025e74 main.cpp.obj - 0001:00024e88 $LN454 10025e88 main.cpp.obj - 0001:000256e4 $LN455 100266e4 main.cpp.obj - 0001:000256f8 $LN454 100266f8 main.cpp.obj - 0001:00025f54 $LN455 10026f54 main.cpp.obj - 0001:00025f68 $LN454 10026f68 main.cpp.obj - 0001:000267c4 $LN455 100277c4 main.cpp.obj - 0001:000267d8 $LN454 100277d8 main.cpp.obj - 0001:00027034 $LN455 10028034 main.cpp.obj - 0001:00027048 $LN454 10028048 main.cpp.obj - 0001:000278a4 $LN455 100288a4 main.cpp.obj - 0001:000278b8 $LN454 100288b8 main.cpp.obj - 0001:00028114 $LN455 10029114 main.cpp.obj - 0001:00028128 $LN454 10029128 main.cpp.obj - 0001:00028984 $LN455 10029984 main.cpp.obj - 0001:00028998 $LN454 10029998 main.cpp.obj - 0001:000291f4 $LN455 1002a1f4 main.cpp.obj - 0001:00029208 $LN454 1002a208 main.cpp.obj - 0001:00029a64 $LN455 1002aa64 main.cpp.obj - 0001:00029a78 $LN454 1002aa78 main.cpp.obj - 0001:0002a2e4 $LN455 1002b2e4 main.cpp.obj - 0001:0002a2f8 $LN454 1002b2f8 main.cpp.obj - 0001:0002ab54 $LN455 1002bb54 main.cpp.obj - 0001:0002ab68 $LN454 1002bb68 main.cpp.obj - 0001:0002b3c4 $LN455 1002c3c4 main.cpp.obj - 0001:0002b3d8 $LN454 1002c3d8 main.cpp.obj - 0001:0002bc34 $LN455 1002cc34 main.cpp.obj - 0001:0002bc48 $LN454 1002cc48 main.cpp.obj - 0001:0002c4a4 $LN455 1002d4a4 main.cpp.obj - 0001:0002c4b8 $LN454 1002d4b8 main.cpp.obj - 0001:0002cd14 $LN455 1002dd14 main.cpp.obj - 0001:0002cd28 $LN454 1002dd28 main.cpp.obj - 0001:0002d584 $LN455 1002e584 main.cpp.obj - 0001:0002d598 $LN454 1002e598 main.cpp.obj - 0001:0002ddf4 $LN455 1002edf4 main.cpp.obj - 0001:0002de08 $LN454 1002ee08 main.cpp.obj - 0001:0002e664 $LN455 1002f664 main.cpp.obj - 0001:0002e678 $LN454 1002f678 main.cpp.obj - 0001:0002eed4 $LN455 1002fed4 main.cpp.obj - 0001:0002eee8 $LN454 1002fee8 main.cpp.obj - 0001:0002f744 $LN455 10030744 main.cpp.obj - 0001:0002f758 $LN454 10030758 main.cpp.obj - 0001:0002ffb4 $LN455 10030fb4 main.cpp.obj - 0001:0002ffc8 $LN454 10030fc8 main.cpp.obj - 0001:00030824 $LN455 10031824 main.cpp.obj - 0001:00030838 $LN454 10031838 main.cpp.obj - 0001:00031094 $LN455 10032094 main.cpp.obj - 0001:000310a8 $LN454 100320a8 main.cpp.obj - 0001:00031904 $LN455 10032904 main.cpp.obj - 0001:00031918 $LN454 10032918 main.cpp.obj - 0001:00032174 $LN455 10033174 main.cpp.obj - 0001:00032188 $LN454 10033188 main.cpp.obj - 0001:000329e4 $LN455 100339e4 main.cpp.obj - 0001:000329f8 $LN454 100339f8 main.cpp.obj - 0001:00033254 $LN455 10034254 main.cpp.obj - 0001:00033268 $LN454 10034268 main.cpp.obj - 0001:00033ac4 $LN455 10034ac4 main.cpp.obj - 0001:00033ad8 $LN454 10034ad8 main.cpp.obj - 0001:00034334 $LN455 10035334 main.cpp.obj - 0001:00034348 $LN454 10035348 main.cpp.obj - 0001:00034ba4 $LN455 10035ba4 main.cpp.obj - 0001:00034bb8 $LN454 10035bb8 main.cpp.obj - 0001:00035424 $LN455 10036424 main.cpp.obj - 0001:00035438 $LN454 10036438 main.cpp.obj - 0001:000355d9 __catch$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$0 100365d9 f i main.cpp.obj - 0001:00035681 __catch$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$0 10036681 f i main.cpp.obj - 0001:000357de __catch$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$0 100367de f i main.cpp.obj - 0001:000358be __catch$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$0 100368be f i main.cpp.obj - 0001:00036003 __catch$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$0 10037003 f i main.cpp.obj - 0001:0003d4c9 __catch$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003e4c9 f i main.cpp.obj - 0001:0003d5a9 __catch$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$0 1003e5a9 f i main.cpp.obj - 0001:0003d689 __catch$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003e689 f i main.cpp.obj - 0001:0003d769 __catch$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$0 1003e769 f i main.cpp.obj - 0001:0003d849 __catch$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$0 1003e849 f i main.cpp.obj - 0001:0003d929 __catch$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$0 1003e929 f i main.cpp.obj - 0001:0003da09 __catch$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$0 1003ea09 f i main.cpp.obj - 0001:0003dae9 __catch$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$0 1003eae9 f i main.cpp.obj - 0001:0003dbc9 __catch$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$0 1003ebc9 f i main.cpp.obj - 0001:0003dca9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$0 1003eca9 f i main.cpp.obj - 0001:0003dd89 __catch$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$0 1003ed89 f i main.cpp.obj - 0001:0003de69 __catch$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$0 1003ee69 f i main.cpp.obj - 0001:0003df49 __catch$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$0 1003ef49 f i main.cpp.obj - 0001:0003e029 __catch$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$0 1003f029 f i main.cpp.obj - 0001:0003e109 __catch$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$0 1003f109 f i main.cpp.obj - 0001:0003e1e9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$0 1003f1e9 f i main.cpp.obj - 0001:0003e2c9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$0 1003f2c9 f i main.cpp.obj - 0001:0003e3a9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$0 1003f3a9 f i main.cpp.obj - 0001:0003e489 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$0 1003f489 f i main.cpp.obj - 0001:0003e569 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$0 1003f569 f i main.cpp.obj - 0001:0003e649 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$0 1003f649 f i main.cpp.obj - 0001:0003e729 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003f729 f i main.cpp.obj - 0001:0003e809 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$0 1003f809 f i main.cpp.obj - 0001:0003e8e9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003f8e9 f i main.cpp.obj - 0001:0003e9c9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$0 1003f9c9 f i main.cpp.obj - 0001:0003eaa9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$0 1003faa9 f i main.cpp.obj - 0001:0003eb89 __catch$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$0 1003fb89 f i main.cpp.obj - 0001:0003ec69 __catch$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$0 1003fc69 f i main.cpp.obj - 0001:0003ed49 __catch$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$0 1003fd49 f i main.cpp.obj - 0001:0003ee29 __catch$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$0 1003fe29 f i main.cpp.obj - 0001:0003ef09 __catch$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$0 1003ff09 f i main.cpp.obj - 0001:0003efe9 __catch$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$0 1003ffe9 f i main.cpp.obj - 0001:0003f0c9 __catch$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$0 100400c9 f i main.cpp.obj - 0001:0003f207 __catch$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$0 10040207 f i main.cpp.obj - 0001:0003f3e6 __catch$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$0 100403e6 f i main.cpp.obj - 0001:0003f47c __catch$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$0 1004047c f i main.cpp.obj - 0001:00040734 __catch$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$0 10041734 f i main.cpp.obj - 0001:00042ec2 __catch$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ$0 10043ec2 f i main.cpp.obj - 0001:0004593d __catch$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$0 1004693d f i main.cpp.obj - 0001:00045b27 __catch$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$0 10046b27 f i main.cpp.obj - 0001:00049989 __catch$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$0 1004a989 f i main.cpp.obj - 0001:0004b850 __catch$_Load$0 1004c850 f main.cpp.obj - 0001:0004b8ef __catch$_Load$1 1004c8ef f main.cpp.obj - 0001:0004ba50 ??$_Find_last@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@I@Z 1004ca50 f helper.cpp.obj - 0001:0004bbb0 ??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004cbb0 f helper.cpp.obj - 0001:0004bfc0 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@0@0ABV10@@Z 1004cfc0 f helper.cpp.obj - 0001:0004c020 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d020 f helper.cpp.obj - 0001:0004c060 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@QAE@XZ 1004d060 f helper.cpp.obj - 0001:0004c150 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d150 f helper.cpp.obj - 0001:0004c1b0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d1b0 f helper.cpp.obj - 0001:0004c1e0 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@@std@@QAE@XZ 1004d1e0 f helper.cpp.obj - 0001:0004c270 ??1?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@QAE@XZ 1004d270 f helper.cpp.obj - 0001:0004c300 ??1CachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@QAE@XZ 1004d300 f helper.cpp.obj - 0001:0004c350 ??R@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 1004d350 f helper.cpp.obj - 0001:0004cf50 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@2@@Z 1004df50 f helper.cpp.obj - 0001:0004d130 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004e130 f helper.cpp.obj - 0001:0004d644 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$0 1004e644 f i spellcast.cpp.obj - 0001:000514bc $LN19 100524bc spellevents.cpp.obj - 0001:000514d0 $LN18 100524d0 spellevents.cpp.obj - 0001:00052160 $LN218 10053160 spellevents.cpp.obj - 0001:00052168 $LN217 10053168 spellevents.cpp.obj - 0001:000539c8 $LN47 100549c8 spellevents.cpp.obj - 0001:000539d0 $LN46 100549d0 spellevents.cpp.obj - 0001:00054354 $LN85 10055354 item_scripts.cpp.obj - 0001:00054354 $LN85 10055354 misc_scripts.cpp.obj - 0001:00054354 $LN85 10055354 spell_scripts.cpp.obj - 0001:00054910 ??R@@QBE_KI@Z 10055910 f misc_scripts.cpp.obj - 0001:00056164 $LN53 10057164 misc_scripts.cpp.obj - 0001:00056178 $LN54 10057178 misc_scripts.cpp.obj - 0001:000564d0 $LN101 100574d0 misc_scripts.cpp.obj - 0001:00058504 $LN67 10059504 spell_scripts.cpp.obj - 0001:0005851c $LN68 1005951c spell_scripts.cpp.obj - 0001:00058a0c $LN166 10059a0c spell_scripts.cpp.obj - 0001:00058a24 $LN167 10059a24 spell_scripts.cpp.obj - 0001:00059f80 ??R@@QBE@HIPAUCGItem_C@game@@@Z 1005af80 f item_scripts.cpp.obj - 0001:0005bfdc $LN59 1005cfdc item_scripts.cpp.obj - 0001:0005bff4 $LN60 1005cff4 item_scripts.cpp.obj - 0001:0005c430 $LN160 1005d430 item_scripts.cpp.obj - 0001:0005c448 $LN161 1005d448 item_scripts.cpp.obj - 0001:0005f1b0 ?CountsAsEmptyForLua@Nampower@@YA_NPBUUnitFields@game@@I@Z 100601b0 f auras.cpp.obj - 0001:0006168c $LN46 1006268c unit.cpp.obj - 0001:000616c0 $LN45 100626c0 unit.cpp.obj - 0001:0006184c ?_FilterSetCurrentException@@YAKPAU_EXCEPTION_POINTERS@@E@Z 1006284c f libvcruntime:ehhelpers.obj - 0001:00061df0 $$000000 10062df0 libvcruntime:memcpy.obj - 0001:00061df0 $$000000 10062df0 libvcruntime:memmove.obj - 0001:00061e10 CopyUp 10062e10 libvcruntime:memcpy.obj - 0001:00061e10 CopyUp 10062e10 libvcruntime:memmove.obj - 0001:00061e34 CopyUpLargeMov 10062e34 libvcruntime:memcpy.obj - 0001:00061e34 CopyUpLargeMov 10062e34 libvcruntime:memmove.obj - 0001:00061e47 CopyUpSSE2Check 10062e47 libvcruntime:memcpy.obj - 0001:00061e47 CopyUpSSE2Check 10062e47 libvcruntime:memmove.obj - 0001:00061e60 AtomChk 10062e60 libvcruntime:memcpy.obj - 0001:00061e60 AtomChk 10062e60 libvcruntime:memmove.obj - 0001:00061e86 PalignHead4 10062e86 libvcruntime:memcpy.obj - 0001:00061e86 PalignHead4 10062e86 libvcruntime:memmove.obj - 0001:00061e99 PalignHead8 10062e99 libvcruntime:memcpy.obj - 0001:00061e99 PalignHead8 10062e99 libvcruntime:memmove.obj - 0001:00061eb0 PalignLoop 10062eb0 libvcruntime:memcpy.obj - 0001:00061eb0 PalignLoop 10062eb0 libvcruntime:memmove.obj - 0001:00061ec2 MovPalign12 10062ec2 libvcruntime:memcpy.obj - 0001:00061ec2 MovPalign12 10062ec2 libvcruntime:memmove.obj - 0001:00061ecc PalignLoop12 10062ecc libvcruntime:memcpy.obj - 0001:00061ecc PalignLoop12 10062ecc libvcruntime:memmove.obj - 0001:00061f1d MovPalign8 10062f1d libvcruntime:memcpy.obj - 0001:00061f1d MovPalign8 10062f1d libvcruntime:memmove.obj - 0001:00061f28 PalignLoop8 10062f28 libvcruntime:memcpy.obj - 0001:00061f28 PalignLoop8 10062f28 libvcruntime:memmove.obj - 0001:00061f76 MovPalign4 10062f76 libvcruntime:memcpy.obj - 0001:00061f76 MovPalign4 10062f76 libvcruntime:memmove.obj - 0001:00061f80 PalignLoop4 10062f80 libvcruntime:memcpy.obj - 0001:00061f80 PalignLoop4 10062f80 libvcruntime:memmove.obj - 0001:00061fcc PalignTail 10062fcc libvcruntime:memcpy.obj - 0001:00061fcc PalignTail 10062fcc libvcruntime:memmove.obj - 0001:00061fe4 PalignTail4 10062fe4 libvcruntime:memcpy.obj - 0001:00061fe4 PalignTail4 10062fe4 libvcruntime:memmove.obj - 0001:00061ff7 PalignTail8 10062ff7 libvcruntime:memcpy.obj - 0001:00061ff7 PalignTail8 10062ff7 libvcruntime:memmove.obj - 0001:0006200e PalignTailLE3 1006300e libvcruntime:memcpy.obj - 0001:0006200e PalignTailLE3 1006300e libvcruntime:memmove.obj - 0001:00062017 Dword_align 10063017 libvcruntime:memcpy.obj - 0001:00062017 Dword_align 10063017 libvcruntime:memmove.obj - 0001:0006201f Dword_up_align_loop 1006301f libvcruntime:memcpy.obj - 0001:0006201f Dword_up_align_loop 1006301f libvcruntime:memmove.obj - 0001:00062032 Dword_align_Ok 10063032 libvcruntime:memcpy.obj - 0001:00062032 Dword_align_Ok 10063032 libvcruntime:memmove.obj - 0001:0006204c ByteCopyUp 1006304c libvcruntime:memcpy.obj - 0001:0006204c ByteCopyUp 1006304c libvcruntime:memmove.obj - 0001:00062054 TrailingUpVec 10063054 libvcruntime:memcpy.obj - 0001:00062054 TrailingUpVec 10063054 libvcruntime:memmove.obj - 0001:00062064 TrailingUp0 10063064 libvcruntime:memcpy.obj - 0001:00062064 TrailingUp0 10063064 libvcruntime:memmove.obj - 0001:0006206c TrailingUp1 1006306c libvcruntime:memcpy.obj - 0001:0006206c TrailingUp1 1006306c libvcruntime:memmove.obj - 0001:00062078 TrailingUp2 10063078 libvcruntime:memcpy.obj - 0001:00062078 TrailingUp2 10063078 libvcruntime:memmove.obj - 0001:0006208c TrailingUp3 1006308c libvcruntime:memcpy.obj - 0001:0006208c TrailingUp3 1006308c libvcruntime:memmove.obj - 0001:000620a4 CopyDown 100630a4 libvcruntime:memcpy.obj - 0001:000620a4 CopyDown 100630a4 libvcruntime:memmove.obj - 0001:000620c9 CopyDownNotAligned 100630c9 libvcruntime:memcpy.obj - 0001:000620c9 CopyDownNotAligned 100630c9 libvcruntime:memmove.obj - 0001:000620d0 CopyDownAlignLoop 100630d0 libvcruntime:memcpy.obj - 0001:000620d0 CopyDownAlignLoop 100630d0 libvcruntime:memmove.obj - 0001:000620dd CopyDownAligned 100630dd libvcruntime:memcpy.obj - 0001:000620dd CopyDownAligned 100630dd libvcruntime:memmove.obj - 0001:00062100 TrailingDownVec 10063100 libvcruntime:memcpy.obj - 0001:00062100 TrailingDownVec 10063100 libvcruntime:memmove.obj - 0001:00062110 TrailingDown0 10063110 libvcruntime:memcpy.obj - 0001:00062110 TrailingDown0 10063110 libvcruntime:memmove.obj - 0001:00062118 TrailingDown1 10063118 libvcruntime:memcpy.obj - 0001:00062118 TrailingDown1 10063118 libvcruntime:memmove.obj - 0001:00062128 TrailingDown2 10063128 libvcruntime:memcpy.obj - 0001:00062128 TrailingDown2 10063128 libvcruntime:memmove.obj - 0001:0006213c TrailingDown3 1006313c libvcruntime:memcpy.obj - 0001:0006213c TrailingDown3 1006313c libvcruntime:memmove.obj - 0001:00062155 XmmMovLargeAlignTest 10063155 libvcruntime:memcpy.obj - 0001:00062155 XmmMovLargeAlignTest 10063155 libvcruntime:memmove.obj - 0001:0006215d XmmMovAlignLoop 1006315d libvcruntime:memcpy.obj - 0001:0006215d XmmMovAlignLoop 1006315d libvcruntime:memmove.obj - 0001:0006216c XmmMovLargeLoop 1006316c libvcruntime:memcpy.obj - 0001:0006216c XmmMovLargeLoop 1006316c libvcruntime:memmove.obj - 0001:000621dc XmmMovSmallTest 100631dc libvcruntime:memcpy.obj - 0001:000621dc XmmMovSmallTest 100631dc libvcruntime:memmove.obj - 0001:000621e1 XmmMovSmallLoop 100631e1 libvcruntime:memcpy.obj - 0001:000621e1 XmmMovSmallLoop 100631e1 libvcruntime:memmove.obj - 0001:00062204 CopyDownSmall 10063204 libvcruntime:memcpy.obj - 0001:00062204 CopyDownSmall 10063204 libvcruntime:memmove.obj - 0001:0006220c CopyDownDwordLoop 1006320c libvcruntime:memcpy.obj - 0001:0006220c CopyDownDwordLoop 1006320c libvcruntime:memmove.obj - 0001:00062221 CopyDownByteTest 10063221 libvcruntime:memcpy.obj - 0001:00062221 CopyDownByteTest 10063221 libvcruntime:memmove.obj - 0001:00062225 CopyDownByteLoop 10063225 libvcruntime:memcpy.obj - 0001:00062225 CopyDownByteLoop 10063225 libvcruntime:memmove.obj - 0001:00062234 CopyDownReturn 10063234 libvcruntime:memcpy.obj - 0001:00062234 CopyDownReturn 10063234 libvcruntime:memmove.obj - 0001:00062240 XmmCopy 10063240 libvcruntime:memcpy.obj - 0001:00062240 XmmCopy 10063240 libvcruntime:memmove.obj - 0001:0006224d XmmCopyAligned 1006324d libvcruntime:memcpy.obj - 0001:0006224d XmmCopyAligned 1006324d libvcruntime:memmove.obj - 0001:00062260 XmmCopyLargeLoop 10063260 libvcruntime:memcpy.obj - 0001:00062260 XmmCopyLargeLoop 10063260 libvcruntime:memmove.obj - 0001:000622bd XmmCopySmallTest 100632bd libvcruntime:memcpy.obj - 0001:000622bd XmmCopySmallTest 100632bd libvcruntime:memmove.obj - 0001:000622d0 XmmCopySmallLoop 100632d0 libvcruntime:memcpy.obj - 0001:000622d0 XmmCopySmallLoop 100632d0 libvcruntime:memmove.obj - 0001:000622eb CopyUpDwordMov 100632eb libvcruntime:memcpy.obj - 0001:000622eb CopyUpDwordMov 100632eb libvcruntime:memmove.obj - 0001:000622f0 CopyUpDwordTest 100632f0 libvcruntime:memcpy.obj - 0001:000622f0 CopyUpDwordTest 100632f0 libvcruntime:memmove.obj - 0001:000622f7 CopyUpDwordLoop 100632f7 libvcruntime:memcpy.obj - 0001:000622f7 CopyUpDwordLoop 100632f7 libvcruntime:memmove.obj - 0001:00062306 CopyUpByteTest 10063306 libvcruntime:memcpy.obj - 0001:00062306 CopyUpByteTest 10063306 libvcruntime:memmove.obj - 0001:0006230d CopyUpByteLoop 1006330d libvcruntime:memcpy.obj - 0001:0006230d CopyUpByteLoop 1006330d libvcruntime:memmove.obj - 0001:00062320 CopyUpReturn 10063320 libvcruntime:memcpy.obj - 0001:00062320 CopyUpReturn 10063320 libvcruntime:memmove.obj - 0001:00062330 XmmCopyUnaligned 10063330 libvcruntime:memcpy.obj - 0001:00062330 XmmCopyUnaligned 10063330 libvcruntime:memmove.obj - 0001:00062343 XmmAlignByte 10063343 libvcruntime:memcpy.obj - 0001:00062343 XmmAlignByte 10063343 libvcruntime:memmove.obj - 0001:0006234c XmmAlignDwordTest 1006334c libvcruntime:memcpy.obj - 0001:0006234c XmmAlignDwordTest 1006334c libvcruntime:memmove.obj - 0001:00062351 XmmAlignDwordLoop 10063351 libvcruntime:memcpy.obj - 0001:00062351 XmmAlignDwordLoop 10063351 libvcruntime:memmove.obj - 0001:0006235e XmmAlignAdjustCnt 1006335e libvcruntime:memcpy.obj - 0001:0006235e XmmAlignAdjustCnt 1006335e libvcruntime:memmove.obj - 0001:000623d3 ?FindMITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 100633d3 f libvcruntime:rtti.obj - 0001:000624bc ?FindSITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@1@Z 100634bc f libvcruntime:rtti.obj - 0001:000625a5 ?FindVITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 100635a5 f libvcruntime:rtti.obj - 0001:0006270d ?PMDtoOffset@@YAHPAXABUPMD@@@Z 1006370d f libvcruntime:rtti.obj - 0001:00062731 ?TypeidsEqual@@YA_NQBUTypeDescriptor@@0@Z 10063731 f libvcruntime:rtti.obj - 0001:0006294b ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@I@Z 1006394b f libvcruntime:std_type_info.obj - 0001:00062954 ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@QAX@Z 10063954 f libvcruntime:std_type_info.obj - 0001:00062a80 $$000000 10063a80 libvcruntime:memset.obj - 0001:00062ac5 XMMMov 10063ac5 libvcruntime:memset.obj - 0001:00062b00 LargeRangeBytes 10063b00 libvcruntime:memset.obj - 0001:00062b3d XmmMovSmall 10063b3d libvcruntime:memset.obj - 0001:00062b50 XmmSmallLoop 10063b50 libvcruntime:memset.obj - 0001:00062b55 MidRangeBytes 10063b55 libvcruntime:memset.obj - 0001:00062b71 XMMTrailingBytes 10063b71 libvcruntime:memset.obj - 0001:00062b85 SmallMov 10063b85 libvcruntime:memset.obj - 0001:00062b8d ByteLoop 10063b8d libvcruntime:memset.obj - 0001:00062b9b DwordTest 10063b9b libvcruntime:memset.obj - 0001:00062bab QwordTest 10063bab libvcruntime:memset.obj - 0001:00062bc0 QwordLoop 10063bc0 libvcruntime:memset.obj - 0001:00062bd3 toend 10063bd3 libvcruntime:memset.obj - 0001:00062be0 $$000000 10063be0 libvcruntime:strstr.obj - 0001:00062c23 strstr_sse_safeloop 10063c23 libvcruntime:strstr.obj - 0001:00062c4a strstr_sse_search 10063c4a libvcruntime:strstr.obj - 0001:00062c4a strstr_sse_unsafe 10063c4a libvcruntime:strstr.obj - 0001:00062c4e strstr_sse_srchloop 10063c4e libvcruntime:strstr.obj - 0001:00062c84 strstr_sse_srchchar 10063c84 libvcruntime:strstr.obj - 0001:00062c9b strstr_sse_cmploop 10063c9b libvcruntime:strstr.obj - 0001:00062cd6 strstr_sse_cmpchars 10063cd6 libvcruntime:strstr.obj - 0001:00062cdd strstr_sse_cmpunsafe 10063cdd libvcruntime:strstr.obj - 0001:00062cf4 strstr_sse_match 10063cf4 libvcruntime:strstr.obj - 0001:00062cf9 strstr_sse_not_found 10063cf9 libvcruntime:strstr.obj - 0001:00062cfb strstr_sse_exit 10063cfb libvcruntime:strstr.obj - 0001:00062cff strstr_sttni 10063cff libvcruntime:strstr.obj - 0001:00062d1b strstr_sttni_setchars 10063d1b libvcruntime:strstr.obj - 0001:00062d20 strstr_sttni_setloopchar 10063d20 libvcruntime:strstr.obj - 0001:00062d26 strstr_sttni_setloopnochar 10063d26 libvcruntime:strstr.obj - 0001:00062d3a strstr_sttni_srchnext 10063d3a libvcruntime:strstr.obj - 0001:00062d3d strstr_sttni_srch 10063d3d libvcruntime:strstr.obj - 0001:00062d41 strstr_sttni_srchloop 10063d41 libvcruntime:strstr.obj - 0001:00062d60 strstr_sttni_srchxmm 10063d60 libvcruntime:strstr.obj - 0001:00062d73 strstr_sttni_srchcheck 10063d73 libvcruntime:strstr.obj - 0001:00062d77 strstr_sttni_cmploop 10063d77 libvcruntime:strstr.obj - 0001:00062daf strstr_sttni_cmpchar 10063daf libvcruntime:strstr.obj - 0001:00062dca strstr_no_sse 10063dca libvcruntime:strstr.obj - 0001:00062ddd findnext 10063ddd libvcruntime:strstr.obj - 0001:00062df0 loop_start 10063df0 libvcruntime:strstr.obj - 0001:00062df5 in_loop 10063df5 libvcruntime:strstr.obj - 0001:00062dfd not_found 10063dfd libvcruntime:strstr.obj - 0001:00062e03 first_char_found 10063e03 libvcruntime:strstr.obj - 0001:00062e0c two_first_chars_equal 10063e0c libvcruntime:strstr.obj - 0001:00062e0f compare_loop 10063e0f libvcruntime:strstr.obj - 0001:00062e32 strchr_call 10063e32 libvcruntime:strstr.obj - 0001:00062e3e match 10063e3e libvcruntime:strstr.obj - 0001:00062e45 empty_str2 10063e45 libvcruntime:strstr.obj - 0001:00062e50 $$000000 10063e50 libvcruntime:memchr.obj - 0001:00062e6b str_misaligned 10063e6b libvcruntime:memchr.obj - 0001:00062e81 main_loop_start 10063e81 libvcruntime:memchr.obj - 0001:00062e97 return_from_main 10063e97 libvcruntime:memchr.obj - 0001:00062e98 tail_less_then_4 10063e98 libvcruntime:memchr.obj - 0001:00062e9d tail_loop 10063e9d libvcruntime:memchr.obj - 0001:00062eab retnull 10063eab libvcruntime:memchr.obj - 0001:00062ead main_loop 10063ead libvcruntime:memchr.obj - 0001:00062eb2 main_loop_entry 10063eb2 libvcruntime:memchr.obj - 0001:00062ecd char_is_found 10063ecd libvcruntime:memchr.obj - 0001:00062ee5 byte_3 10063ee5 libvcruntime:memchr.obj - 0001:00062ee6 found 10063ee6 libvcruntime:memchr.obj - 0001:00062eeb byte_2 10063eeb libvcruntime:memchr.obj - 0001:00062ef1 byte_1 10063ef1 libvcruntime:memchr.obj - 0001:00062ef7 byte_0 10063ef7 libvcruntime:memchr.obj - 0001:00063070 _ValidateLocalCookies 10064070 f libvcruntime:chandler4.obj - 0001:0006320e ??$BuildCatchObjectHelperInternal@V__FrameHandler3@@@@YAHPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 1006420e f libvcruntime:frame.obj - 0001:0006334c ??$BuildCatchObjectInternal@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 1006434c f libvcruntime:frame.obj - 0001:000633e5 ??$CatchIt@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@PBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_TryBlockMapEntry@@H1EE@Z 100643e5 f libvcruntime:frame.obj - 0001:00063465 ??$FindHandler@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@EH1@Z 10064465 f libvcruntime:frame.obj - 0001:0006380a ??$FindHandlerForForeignException@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@HH1@Z 1006480a f libvcruntime:frame.obj - 0001:00063ad9 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PBU_s_FuncInfo@@PAXHK@Z 10064ad9 f libvcruntime:frame.obj - 0001:00063ca8 ?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 10064ca8 f libvcruntime:frame.obj - 0001:00063cc8 __catch$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z$0 10064cc8 f libvcruntime:frame.obj - 0001:00063ce7 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 10064ce7 f libvcruntime:frame.obj - 0001:00063e31 ?IsInExceptionSpec@@YAEPAUEHExceptionRecord@@PBU_s_ESTypeList@@@Z 10064e31 f libvcruntime:frame.obj - 0001:00063f00 $$000000 10064f00 libvcruntime:lowhelpr.obj - 0001:00063f3f _NLG_Continue 10064f3f libvcruntime:lowhelpr.obj - 0001:00064140 ??$get_encoding@M@@YA?A_P_K@Z 10065140 f libvcruntime:undname.obj - 0001:000641a0 ??$get_encoding@N@@YA?A_P_K@Z 100651a0 f libvcruntime:undname.obj - 0001:000644d5 ??1TrackRecursion@?1??getDecoratedName@UnDecorator@@CA?AVDName@@XZ@QAE@XZ 100654d5 f libvcruntime:undname.obj - 0001:00066111 $LN197 10067111 libvcruntime:undname.obj - 0001:00066135 $LN196 10067135 libvcruntime:undname.obj - 0001:00066149 $LN198 10067149 libvcruntime:undname.obj - 0001:0006704d $LN40 1006804d libvcruntime:undname.obj - 0001:000681e4 $LN400 100691e4 libvcruntime:undname.obj - 0001:000681f0 $LN399 100691f0 libvcruntime:undname.obj - 0001:00068208 $LN402 10069208 libvcruntime:undname.obj - 0001:00068224 $LN401 10069224 libvcruntime:undname.obj - 0001:0006823c $LN404 1006923c libvcruntime:undname.obj - 0001:0006824c $LN403 1006924c libvcruntime:undname.obj - 0001:000697b8 $LN88 1006a7b8 libvcruntime:undname.obj - 0001:000697d8 $LN87 1006a7d8 libvcruntime:undname.obj - 0001:00069c5f $LN145 1006ac5f libvcruntime:undname.obj - 0001:0006a5c6 ?und_memcpy@@YAXPADPBDI@Z 1006b5c6 f libvcruntime:undname.obj - 0001:0006a5e7 ?und_strncmp@@YAIPBD0I@Z 1006b5e7 f libvcruntime:undname.obj - 0001:0006a6e0 $$000000 1006b6e0 libvcruntime:strchr.obj - 0001:0006a713 strchr_sse_loop 1006b713 libvcruntime:strchr.obj - 0001:0006a737 strchr_sse_break 1006b737 libvcruntime:strchr.obj - 0001:0006a748 strchr_no_sse2 1006b748 libvcruntime:strchr.obj - 0001:0006a760 str_misaligned 1006b760 libvcruntime:strchr.obj - 0001:0006a775 main_loop_start 1006b775 libvcruntime:strchr.obj - 0001:0006a780 main_loop 1006b780 libvcruntime:strchr.obj - 0001:0006a7bc retnull 1006b7bc libvcruntime:strchr.obj - 0001:0006a7be retnull_bx 1006b7be libvcruntime:strchr.obj - 0001:0006a7c2 found_bx 1006b7c2 libvcruntime:strchr.obj - 0001:0006a7c7 chr_is_found 1006b7c7 libvcruntime:strchr.obj - 0001:0006a7ef byte_3 1006b7ef libvcruntime:strchr.obj - 0001:0006a7f6 byte_2 1006b7f6 libvcruntime:strchr.obj - 0001:0006a7fd byte_1 1006b7fd libvcruntime:strchr.obj - 0001:0006a804 byte_0 1006b804 libvcruntime:strchr.obj - 0001:0006a80b ?try_get_function@@YAPAXW4function_id@?A0x14174aea@@QBDQBW4module_id@2@2@Z 1006b80b f libvcruntime:winapi_downlevel.obj - 0001:0006a8ab ?try_load_library_from_system_directory@@YAPAUHINSTANCE__@@QB_W@Z 1006b8ab f libvcruntime:winapi_downlevel.obj - 0001:0006aa30 $$000000 1006ba30 libvcruntime:exsup4.obj - 0001:0006aa62 _lu_top 1006ba62 libvcruntime:exsup4.obj - 0001:0006aac1 _lu_done 1006bac1 libvcruntime:exsup4.obj - 0001:0006aad0 $$000000 1006bad0 libvcruntime:exsup4.obj - 0001:0006aad0 __unwind_handler4 1006bad0 f libvcruntime:exsup4.obj - 0001:0006ab20 $$000000 1006bb20 libvcruntime:exsup4.obj - 0001:0006ab40 $$000000 1006bb40 libvcruntime:exsup4.obj - 0001:0006ab60 $$000000 1006bb60 libvcruntime:exsup4.obj - 0001:0006ab75 ReturnPoint 1006bb75 libvcruntime:exsup4.obj - 0001:0006ab80 $$000000 1006bb80 libvcruntime:exsup4.obj - 0001:0006abe0 $$000000 1006bbe0 libvcruntime:exsup.obj - 0001:0006abf0 $$000000 1006bbf0 libvcruntime:exsup.obj - 0001:0006abfb __NLG_Go 1006bbfb libvcruntime:exsup.obj - 0001:0006ac10 $$000000 1006bc10 libvcruntime:exsup.obj - 0001:0006b1a7 ?_fclose_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1006c1a7 f libucrt:fclose.obj - 0001:0006b23e ?_fclose_nolock_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1006c23e f libucrt:fclose.obj - 0001:0006b2fc ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1006c2fc f libucrt:fflush.obj - 0001:0006b388 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1006c388 f libucrt:fflush.obj - 0001:0006b434 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1006c434 f libucrt:fflush.obj - 0001:0006b494 ?common_flush_all@@YAH_N@Z 1006c494 f libucrt:fflush.obj - 0001:0006b4e1 ?common_flush_all_should_try_to_flush_stream@@YA_NV__crt_stdio_stream@@QAH@Z 1006c4e1 f libucrt:fflush.obj - 0001:0006b512 ?is_stream_flushable_or_commitable@@YA_NJ@Z 1006c512 f libucrt:fflush.obj - 0001:0006b80f ?_fputc_internal@@YAHHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1006c80f f libucrt:fputc.obj - 0001:0006bc37 _memcpy_s 1006cc37 f libucrt:cfout.obj - 0001:0006bc37 _memcpy_s 1006cc37 f libucrt:strtod.obj - 0001:0006bc37 _memcpy_s 1006cc37 f libucrt:mbctype.obj - 0001:0006bc37 _memcpy_s 1006cc37 f libucrt:fread.obj - 0001:0006bd6d ?common_fseek@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 1006cd6d f libucrt:fseek.obj - 0001:0006be17 ?common_fseek_binary_mode_read_only_fast_track_nolock@@YA_NV__crt_stdio_stream@@_JH@Z 1006ce17 f libucrt:fseek.obj - 0001:0006bef0 ?common_fseek_nolock@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 1006cef0 f libucrt:fseek.obj - 0001:0006c050 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@I@@QAEI$$QAV@@AAV@@$$QAV@@@Z 1006d050 f libucrt:fwrite.obj - 0001:0006c0ab ??R@@QBEIXZ 1006d0ab f libucrt:fwrite.obj - 0001:0006c34f ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1006d34f f libucrt:setvbuf.obj - 0001:0006c3aa ??R@@QBE@XZ 1006d3aa f libucrt:setvbuf.obj - 0001:0006c44a ?_setvbuf_internal@@YAHQAU_iobuf@@QADHIAAV__crt_cached_ptd_host@@@Z 1006d44a f libucrt:setvbuf.obj - 0001:0006c4e0 ?set_buffer@@YAHV__crt_stdio_stream@@QADIH@Z 1006d4e0 f libucrt:setvbuf.obj - 0001:0006c985 ??$common_vsprintf@Vformat_validation_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 1006d985 f libucrt:output.obj - 0001:0006caf9 ??$common_vsprintf@Vstandard_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 1006daf9 f libucrt:output.obj - 0001:0006cc6d ??$common_vsprintf_s@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 1006dc6d f libucrt:output.obj - 0001:0006dd1e $LN140 1006ed1e libucrt:output.obj - 0001:0006dff4 $LN130 1006eff4 libucrt:output.obj - 0001:0006e500 $LN18 1006f500 libucrt:output.obj - 0001:0006e514 $LN17 1006f514 libucrt:output.obj - 0001:0006f980 ??$common_strtod_l@MD@@YAMQBDQAPADQAU__crt_locale_pointers@@@Z 10070980 f libucrt:strtod.obj - 0001:0007025c $LN32 1007125c libucrt:strtod.obj - 0001:00072ba0 $$000000 10073ba0 libucrt:strcspn.obj - 0001:00072bf0 $$000000 10073bf0 libucrt:strncmp.obj - 0001:00072c68 ??$common_localtime_s@_J@@YAHQAUtm@@QB_J@Z 10073c68 f libucrt:localtime.obj - 0001:000734e0 $$000000 100744e0 libucrt:sqrt_sse2_precise.obj - 0001:000735e0 $$000000 100745e0 libucrt:ceil_pentium4.obj - 0001:00073abe ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10074abe f libucrt:per_thread_data.obj - 0001:00073b10 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10074b10 f libucrt:per_thread_data.obj - 0001:00073b7b ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10074b7b f libucrt:per_thread_data.obj - 0001:00073bd0 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10074bd0 f libucrt:per_thread_data.obj - 0001:00073c2a ?construct_ptd@@YAXQAU__acrt_ptd@@QAPAU__crt_locale_data@@@Z 10074c2a f libucrt:per_thread_data.obj - 0001:00073cc3 ?destroy_fls@@YGXPAX@Z 10074cc3 f libucrt:per_thread_data.obj - 0001:00073ce4 ?destroy_ptd@@YAXQAU__acrt_ptd@@@Z 10074ce4 f libucrt:per_thread_data.obj - 0001:00073db1 ?replace_current_thread_locale_nolock@@YAXQAU__acrt_ptd@@QAU__crt_locale_data@@@Z 10074db1 f libucrt:per_thread_data.obj - 0001:00074113 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10075113 f libucrt:wsetlocale.obj - 0001:00074160 ??$?RV@@AAV@@AAV@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@AAV@@@Z 10075160 f libucrt:wsetlocale.obj - 0001:000741a5 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100751a5 f libucrt:wsetlocale.obj - 0001:0007428d ??R@@QBE@XZ 1007528d f libucrt:wsetlocale.obj - 0001:000742f7 ??R@@QBE@XZ 100752f7 f libucrt:wsetlocale.obj - 0001:000746ad __copytlocinfo_nolock 100756ad f libucrt:wsetlocale.obj - 0001:000746dc __expandlocale 100756dc f libucrt:wsetlocale.obj - 0001:00074b66 __wsetlocale_get_all 10075b66 f libucrt:wsetlocale.obj - 0001:00074d01 __wsetlocale_nolock 10075d01 f libucrt:wsetlocale.obj - 0001:00074ff4 __wsetlocale_set_cat 10075ff4 f libucrt:wsetlocale.obj - 0001:000753b4 _get_default_code_page 100763b4 f libucrt:wsetlocale.obj - 0001:000753e3 _parse_bcp47 100763e3 f libucrt:wsetlocale.obj - 0001:000755bd _parse_bcp47_code_page 100765bd f libucrt:wsetlocale.obj - 0001:000755fc _parse_bcp47_language 100765fc f libucrt:wsetlocale.obj - 0001:0007566e _parse_bcp47_region 1007666e f libucrt:wsetlocale.obj - 0001:0007572c _parse_bcp47_script 1007672c f libucrt:wsetlocale.obj - 0001:0007579c _string_is_alpha 1007679c f libucrt:wsetlocale.obj - 0001:00075872 ?@@@CG@PA_W@Z 10076872 f libucrt:winapi_thunks.obj - 0001:0007587f ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1007687f f libucrt:winapi_thunks.obj - 0001:0007591a ??R@@QBE@PA_W@Z 1007691a f libucrt:winapi_thunks.obj - 0001:0007594d ?try_get_AreFileApisANSI@@YAP6GHXZXZ 1007694d f libucrt:winapi_thunks.obj - 0001:00075967 ?try_get_CompareStringEx@@YAP6GHPB_WK0H0HPAU_nlsversioninfo@@PAXJ@ZXZ 10076967 f libucrt:winapi_thunks.obj - 0001:00075981 ?try_get_EnumSystemLocalesEx@@YAP6GHP6GHPA_WKJ@ZKJPAX@ZXZ 10076981 f libucrt:winapi_thunks.obj - 0001:0007599b ?try_get_GetDateFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH0@ZXZ 1007699b f libucrt:winapi_thunks.obj - 0001:000759b5 ?try_get_GetLocaleInfoEx@@YAP6GHPB_WKPA_WH@ZXZ 100769b5 f libucrt:winapi_thunks.obj - 0001:000759cf ?try_get_GetTimeFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH@ZXZ 100769cf f libucrt:winapi_thunks.obj - 0001:000759e9 ?try_get_GetUserDefaultLocaleName@@YAP6GHPA_WH@ZXZ 100769e9 f libucrt:winapi_thunks.obj - 0001:00075a03 ?try_get_IsValidLocaleName@@YAP6GHPB_W@ZXZ 10076a03 f libucrt:winapi_thunks.obj - 0001:00075a1d ?try_get_LCIDToLocaleName@@YAP6GHKPA_WHK@ZXZ 10076a1d f libucrt:winapi_thunks.obj - 0001:00075a37 ?try_get_LCMapStringEx@@YAP6GHPB_WK0HPA_WHPAU_nlsversioninfo@@PAXJ@ZXZ 10076a37 f libucrt:winapi_thunks.obj - 0001:00075a51 ?try_get_LocaleNameToLCID@@YAP6GKPB_WK@ZXZ 10076a51 f libucrt:winapi_thunks.obj - 0001:00075a6b ?try_get_first_available_module@@YAPAUHINSTANCE__@@QBW4module_id@?A0x391cf84c@@0@Z 10076a6b f libucrt:winapi_thunks.obj - 0001:00075b36 ?try_get_function@@YAPAXW4function_id@?A0x391cf84c@@QBDQBW4module_id@2@2@Z 10076b36 f libucrt:winapi_thunks.obj - 0001:000761a8 ?initialize_inherited_file_handles_nolock@@YAXXZ 100771a8 f libucrt:ioinit.obj - 0001:0007625e ?initialize_stdio_handles_nolock@@YAXXZ 1007725e f libucrt:ioinit.obj - 0001:000763c1 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100773c1 f libucrt:close.obj - 0001:00076669 ?find_or_allocate_unused_stream_nolock@@YA?AV__crt_stdio_stream@@XZ 10077669 f libucrt:stream.obj - 0001:000767e2 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100777e2 f libucrt:commit.obj - 0001:00076901 ?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 10077901 f libucrt:write.obj - 0001:00076cc8 ?write_double_translated_unicode_nolock@@YA?AUwrite_result@?A0x17268360@@QBDI@Z 10077cc8 f libucrt:write.obj - 0001:00076d30 ?write_requires_double_translation_nolock@@YA_NHAAV__crt_cached_ptd_host@@@Z 10077d30 f libucrt:write.obj - 0001:00076dad ?write_text_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 10077dad f libucrt:write.obj - 0001:00076e88 ?write_text_utf16le_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 10077e88 f libucrt:write.obj - 0001:00076f71 ?write_text_utf8_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 10077f71 f libucrt:write.obj - 0001:00077407 ??$common_refill_and_read_nolock@D@@YAHV__crt_stdio_stream@@@Z 10078407 f libucrt:_filbuf.obj - 0001:000775a1 ??$common_ftell@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 100785a1 f libucrt:ftell.obj - 0001:00077630 ??$common_ftell_nolock@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 10078630 f libucrt:ftell.obj - 0001:000777d1 ?common_ftell_read_mode_nolock@@YA_JV__crt_stdio_stream@@_J1AAV__crt_cached_ptd_host@@@Z 100787d1 f libucrt:ftell.obj - 0001:0007799c ?common_ftell_translated_utf8_nolock@@YA_JV__crt_stdio_stream@@_JAAV__crt_cached_ptd_host@@@Z 1007899c f libucrt:ftell.obj - 0001:00077b47 ?count_newline_bytes@@YA_JQBD0W4__crt_lowio_text_mode@@@Z 10078b47 f libucrt:ftell.obj - 0001:00077bd9 ??$common_flush_and_write_nolock@D@@YAHHV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 10078bd9 f libucrt:_flsbuf.obj - 0001:00077ccf ??$write_buffer_nolock@D@@YA_NDV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 10078ccf f libucrt:_flsbuf.obj - 0001:00077da1 ?stream_is_at_end_of_file_nolock@@YA_NV__crt_stdio_stream@@@Z 10078da1 f libucrt:_flsbuf.obj - 0001:00077e31 ??$translate_text_mode_nolock@D@@YAHHQADI@Z 10078e31 f libucrt:read.obj - 0001:00077f7e ??$translate_text_mode_nolock@_W@@YAHHQA_WI@Z 10078f7e f libucrt:read.obj - 0001:00078138 ?translate_ansi_or_utf8_nolock@@YAHHQADIQA_WI@Z 10079138 f libucrt:read.obj - 0001:0007828f ?translate_utf16_from_console_nolock@@YAHHQA_WI@Z 1007928f f libucrt:read.obj - 0001:000787b1 ??$common_lseek@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 100797b1 f libucrt:lseek.obj - 0001:000788d6 ??$common_lseek_nolock@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 100798d6 f libucrt:lseek.obj - 0001:00078be6 ?filter_mbtowcs_flags@@YAKIK@Z 10079be6 f libucrt:multibytetowidechar.obj - 0001:000790c5 ?fe_to_nearest@@YA_NQBN_KF@Z 1007a0c5 f libucrt:cvt.obj - 0001:00079168 ?fp_format_a@@YAHQBNPADIQADIH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007a168 f libucrt:cvt.obj - 0001:00079495 ?fp_format_e@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007a495 f libucrt:cvt.obj - 0001:00079539 ?fp_format_e_internal@@YAHQADIH_NIQAU_strflt@@1AAV__crt_cached_ptd_host@@@Z 1007a539 f libucrt:cvt.obj - 0001:0007968c ?fp_format_f@@YAHQBNQADI1IHW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007a68c f libucrt:cvt.obj - 0001:00079722 ?fp_format_f_internal@@YAHQADIHQAU_strflt@@_NAAV__crt_cached_ptd_host@@@Z 1007a722 f libucrt:cvt.obj - 0001:00079810 ?fp_format_g@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007a810 f libucrt:cvt.obj - 0001:000798df ?fp_format_nan_or_infinity@@YAHW4__acrt_fp_class@@_NPADI1@Z 1007a8df f libucrt:cvt.obj - 0001:00079974 ?shift_bytes@@YAXQADI0H@Z 1007a974 f libucrt:cvt.obj - 0001:000799a8 ?should_round_up@@YA_NQBN_KFW4__acrt_rounding_mode@@@Z 1007a9a8 f libucrt:cvt.obj - 0001:0007a85b ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1007b85b f libucrt:exit.obj - 0001:0007a8c3 ??R@@QBE@XZ 1007b8c3 f libucrt:exit.obj - 0001:0007a9ab ?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 1007b9ab f libucrt:exit.obj - 0001:0007aa42 ?exit_or_terminate_process@@YAXI@Z 1007ba42 f libucrt:exit.obj - 0001:0007aa73 ?is_managed_app@@YA_NXZ 1007ba73 f libucrt:exit.obj - 0001:0007aab5 ?should_call_terminate_process@@YA_NXZ 1007bab5 f libucrt:exit.obj - 0001:0007aace ?try_cor_exit_process@@YAXI@Z 1007bace f libucrt:exit.obj - 0001:0007ab8b ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@P6AXH@Z@@QAEP6AXH@Z$$QAV@@AAV@@$$QAV@@@Z 1007bb8b f libucrt:signal.obj - 0001:0007abf3 ?get_global_action_nolock@@YAPAP6AXH@ZH@Z 1007bbf3 f libucrt:signal.obj - 0001:0007ac35 ?siglookup@@YAPAU__crt_signal_action_t@@HQAU1@@Z 1007bc35 f libucrt:signal.obj - 0001:0007b14d ??$common_gmtime_s@_J@@YAHQAUtm@@QB_J@Z 1007c14d f libucrt:gmtime.obj - 0001:0007b297 ?compute_year@@YAHAA_JAA_N@Z 1007c297 f libucrt:gmtime.obj - 0001:0007b35b ?_isindst_nolock@@YAHQAUtm@@@Z 1007c35b f libucrt:tzset.obj - 0001:0007b575 ?cvtdate@@YAXW4transition_type@?A0x7639d0b4@@W4date_type@2@HHHHHHHHH@Z 1007c575 f libucrt:tzset.obj - 0001:0007b6b8 ?get_tz_environment_variable@@YAPA_WAAY0BAA@_W@Z 1007c6b8 f libucrt:tzset.obj - 0001:0007b72f ?tzset_env_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1007c72f f libucrt:tzset.obj - 0001:0007b776 ?tzset_from_environment_nolock@@YAXPA_W@Z 1007c776 f libucrt:tzset.obj - 0001:0007ba08 ?tzset_from_system_nolock@@YAXXZ 1007ca08 f libucrt:tzset.obj - 0001:0007bb62 ?tzset_nolock@@YAXXZ 1007cb62 f libucrt:tzset.obj - 0001:0007bbd8 ?tzset_os_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1007cbd8 f libucrt:tzset.obj - 0001:0007bccb ?filter_wcstomb_flags@@YAKIK@Z 1007cccb f libucrt:widechartomultibyte.obj - 0001:0007bdd0 ?compute_iso_week@@YAHHHH@Z 1007cdd0 f libucrt:wcsftime.obj - 0001:0007be19 ?compute_iso_week_internal@@YAHHHH@Z 1007ce19 f libucrt:wcsftime.obj - 0001:0007beae ?compute_iso_year@@YAHHHH@Z 1007ceae f libucrt:wcsftime.obj - 0001:0007bed9 ?expand_time@@YA_NPAU__crt_locale_pointers@@_WPBUtm@@PAPA_WPAIPBU__crt_lc_time_data@@_N@Z 1007ced9 f libucrt:wcsftime.obj - 0001:0007c88d $LN191 1007d88d libucrt:wcsftime.obj - 0001:0007c8ad ?store_number@@YAXHHQAPA_WQAI_W@Z 1007d8ad f libucrt:wcsftime.obj - 0001:0007c941 ?store_number_without_lead_zeroes@@YAXHQAPA_WQAI@Z 1007d941 f libucrt:wcsftime.obj - 0001:0007c9bb ?store_string@@YAXPB_WQAPA_WQAI@Z 1007d9bb f libucrt:wcsftime.obj - 0001:0007c9ee ?store_winword@@YA_NQAU__crt_locale_pointers@@HQBUtm@@QAPA_WQAIQBU__crt_lc_time_data@@@Z 1007d9ee f libucrt:wcsftime.obj - 0001:0007d716 ?__acrt_LCMapStringA_stat@@YAHPAU__crt_locale_pointers@@PB_WKPBDHPADHHH@Z 1007e716 f libucrt:lcmapstringa.obj - 0001:0007db50 $$000000 1007eb50 libucrt:sqrt.obj - 0001:0007dc30 $$000000 1007ec30 libucrt:_strnicm.obj - 0001:0007e02b ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1007f02b f libucrt:mbctype.obj - 0001:0007e078 ??R@@QBE@XZ 1007f078 f libucrt:mbctype.obj - 0001:0007e0fb ?CPtoLocaleName@@YAPB_WH@Z 1007f0fb f libucrt:mbctype.obj - 0001:0007e139 ?getSystemCP@@YAHH@Z 1007f139 f libucrt:mbctype.obj - 0001:0007e1aa ?setSBCS@@YAXPAU__crt_multibyte_data@@@Z 1007f1aa f libucrt:mbctype.obj - 0001:0007e20d ?setSBUpLow@@YAXPAU__crt_multibyte_data@@@Z 1007f20d f libucrt:mbctype.obj - 0001:0007e3b2 ?setmbcp_internal@@YAHH_NQAU__acrt_ptd@@QAPAU__crt_multibyte_data@@@Z 1007f3b2 f libucrt:mbctype.obj - 0001:0007e507 ?update_thread_multibyte_data_internal@@YAPAU__crt_multibyte_data@@QAU__acrt_ptd@@QAPAU1@@Z 1007f507 f libucrt:mbctype.obj - 0001:0007f520 ?free_crt_array_internal@@YAXQAPBXI@Z 10080520 f libucrt:inittime.obj - 0001:0007f545 ?initialize_lc_time@@YA_NQAU__crt_lc_time_data@@QAU__crt_locale_data@@@Z 10080545 f libucrt:inittime.obj - 0001:0007f9f3 ??$common_tcsncat_s@_W@@YAHQA_WIQB_WI@Z 100809f3 f libucrt:wcsncat_s.obj - 0001:0007fae6 ??$common_tcsncpy_s@_W@@YAHQA_WIQB_WI@Z 10080ae6 f libucrt:wcsncpy_s.obj - 0001:0007fd67 _GetLocaleNameFromDefault 10080d67 f libucrt:get_qualified_locale.obj - 0001:0007fdee _GetLocaleNameFromLangCountry 10080dee f libucrt:get_qualified_locale.obj - 0001:0007fe87 _GetLocaleNameFromLanguage 10080e87 f libucrt:get_qualified_locale.obj - 0001:0007fee0 _GetPrimaryLen 10080ee0 f libucrt:get_qualified_locale.obj - 0001:0007ff14 _LangCountryEnumProcEx@12 10080f14 f libucrt:get_qualified_locale.obj - 0001:000801f5 _LanguageEnumProcEx@12 100811f5 f libucrt:get_qualified_locale.obj - 0001:000802b4 _ProcessCodePage 100812b4 f libucrt:get_qualified_locale.obj - 0001:000803a4 _TestDefaultCountry 100813a4 f libucrt:get_qualified_locale.obj - 0001:000803f1 _TranslateName 100813f1 f libucrt:get_qualified_locale.obj - 0001:00080663 _CountryEnumProc@4 10081663 f libucrt:getqloc_downlevel.obj - 0001:0008070a _GetLcidFromCountry 1008170a f libucrt:getqloc_downlevel.obj - 0001:00080755 _GetLcidFromLangCountry 10081755 f libucrt:getqloc_downlevel.obj - 0001:000807f0 _GetLcidFromLanguage 100817f0 f libucrt:getqloc_downlevel.obj - 0001:0008084f _GetPrimaryLen 1008184f f libucrt:getqloc_downlevel.obj - 0001:0008087b _LangCountryEnumProc@4 1008187b f libucrt:getqloc_downlevel.obj - 0001:00080ace _LanguageEnumProc@4 10081ace f libucrt:getqloc_downlevel.obj - 0001:00080ba3 _LcidFromHexString 10081ba3 f libucrt:getqloc_downlevel.obj - 0001:00080bf7 _ProcessCodePage 10081bf7 f libucrt:getqloc_downlevel.obj - 0001:00080cd8 _TestDefaultCountry 10081cd8 f libucrt:getqloc_downlevel.obj - 0001:00080cfd _TestDefaultLanguage 10081cfd f libucrt:getqloc_downlevel.obj - 0001:00080d72 _TranslateName 10081d72 f libucrt:getqloc_downlevel.obj - 0001:00081077 ?GetTableIndexFromLocaleName@@YAHPB_W@Z 10082077 f libucrt:lcidtoname_downlevel.obj - 0001:00081647 ??R@@QBEIPBD@Z 10082647 f libucrt:mbrtowc.obj - 0001:000817f0 ?check_trailing@@YA_NPBDW4__acrt_has_trailing_digits@@@Z 100827f0 f libucrt:_fptostr.obj - 0001:00081813 ?should_round_up@@YA_NQBD0HW4__acrt_has_trailing_digits@@W4__acrt_rounding_mode@@@Z 10082813 f libucrt:_fptostr.obj - 0001:000830ee ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100840ee f libucrt:onexit.obj - 0001:00083149 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 10084149 f libucrt:onexit.obj - 0001:000831a4 ??R@@QBE@XZ 100841a4 f libucrt:onexit.obj - 0001:000832a6 ??R@@QBE@XZ 100842a6 f libucrt:onexit.obj - 0001:0008346e ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_sse_control@@@Z 1008446e f libucrt:_fenvutils.obj - 0001:0008351e ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_x87_control@@@Z 1008451e f libucrt:_fenvutils.obj - 0001:000835cb ?to_machine_sse_control@@YA?AW4__acrt_fenv_machine_sse_control@@W4__acrt_fenv_abstract_control@@@Z 100845cb f libucrt:_fenvutils.obj - 0001:00083681 ?to_machine_x87_control@@YA?AW4__acrt_fenv_machine_x87_control@@W4__acrt_fenv_abstract_control@@@Z 10084681 f libucrt:_fenvutils.obj - 0001:000839fa ??$common_getenv_nolock@_W@@YAPA_WQB_W@Z 100849fa f libucrt:getenv.obj - 0001:00083a7e ??$common_getenv_s@_W@@YAHQAIQA_WIQB_W@Z 10084a7e f libucrt:getenv.obj - 0001:00083add ??$common_getenv_s_nolock@_W@@YAHQAIQA_WIQB_W@Z 10084add f libucrt:getenv.obj - 0001:00083d30 $$000000 10084d30 libucrt:common.obj - 0001:00083ec0 $$000000 10084ec0 libucrt:sqrt_impl.obj - 0001:00083f85 ?initialize_multibyte@@YAHXZ 10084f85 f libucrt:multibyte_initializer.obj - 0001:00083f94 ?InternalGetLocaleInfoA@@YAHQAU__crt_locale_pointers@@QB_WKQADH@Z 10084f94 f libucrt:getlocaleinfoa.obj - 0001:00084223 ??$common_xtox@K_W@@YAHKQA_WII_N@Z 10085223 f libucrt:xtoa.obj - 0001:000842df ??$common_xtox_s@K_W@@YAHKQA_WII_N@Z 100852df f libucrt:xtoa.obj - 0001:000846a9 ?__dcrt_lowio_initialize_console_output@@YAXXZ 100856a9 f libucrt:initcon.obj - 0001:00084870 $$000000 10085870 libucrt:log10_impl.obj - 0001:00084b50 ??$common_get_or_create_environment_nolock@_W@@YAPAPA_WXZ 10085b50 f libucrt:environment_initialization.obj - 0001:00084b7c ??$common_initialize_environment_nolock@D@@YAHXZ 10085b7c f libucrt:environment_initialization.obj - 0001:00084bd6 ??$common_initialize_environment_nolock@_W@@YAHXZ 10085bd6 f libucrt:environment_initialization.obj - 0001:00084c2b ??$create_environment@D@@YAQAPADQAD@Z 10085c2b f libucrt:environment_initialization.obj - 0001:00084d0d ??$create_environment@_W@@YAQAPA_WQA_W@Z 10085d0d f libucrt:environment_initialization.obj - 0001:00084e2b ??$free_environment@D@@YAXQAPAD@Z 10085e2b f libucrt:environment_initialization.obj - 0001:00084e2b ??$free_environment@_W@@YAXQAPA_W@Z 10085e2b f libucrt:environment_initialization.obj - 0001:00084e5a ??$initialize_environment_by_cloning_nolock@_W@@YAHXZ 10085e5a f libucrt:environment_initialization.obj - 0001:00084edb ??$uninitialize_environment_internal@D@@YAXAAPAPAD@Z 10085edb f libucrt:environment_initialization.obj - 0001:00084ef6 ??$uninitialize_environment_internal@_W@@YAXAAPAPA_W@Z 10085ef6 f libucrt:environment_initialization.obj - 0001:00085040 $$000000 10086040 libucrt:genexcep.obj - 0001:000850a0 $$000000 100860a0 libucrt:87disp.obj - 0001:000852f4 ??$common_tcsncpy_s@D@@YAHQADIQBDI@Z 100862f4 f libucrt:strncpy_s.obj - 0001:000853b6 ___hw_cw_sse2 100863b6 f libucrt:ieee87.obj - 0001:0008583c __hw_cw 1008683c f libucrt:ieee87.obj - 0001:000858e0 $$000000 100868e0 libucrt:log10_pentium4.obj - 0001:00085b70 $$000000 10086b70 libucrt:87tran.obj - 0001:00085e77 ?find_end_of_double_null_terminated_sequence@@YAPB_WQB_W@Z 10086e77 f libucrt:get_environment_from_os.obj - 0001:00085f9c ??$common_set_variable_in_environment_nolock@_W@@YAHQA_WH@Z 10086f9c f libucrt:setenv.obj - 0001:00086227 ??$copy_environment@_W@@YAPAPA_WQAPA_W@Z 10087227 f libucrt:setenv.obj - 0001:000862e5 ??$ensure_current_environment_is_not_initial_environment_nolock@_W@@YAXXZ 100872e5 f libucrt:setenv.obj - 0001:000862ff ??$find_in_environment_nolock@_W@@YAHQB_WI@Z 100872ff f libucrt:setenv.obj - 0001:00086643 ?_mbstowcs_internal@@YAHPAIPA_WIPBDIAAV__crt_cached_ptd_host@@@Z 10087643 f libucrt:mbstowcs.obj - 0001:0008671f ?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 1008771f f libucrt:mbstowcs.obj - 0001:00086fcb _tidy_global 10087fcb f libcpmt:locale0.obj - 0001:000874aa ??$_Xfiopen@D@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z 100884aa f libcpmt:fiopen.obj - 0001:0008754a ?swfun@std@@YAXAAVios_base@1@_J@Z 1008854a f libcpmt:iomanip.obj - 0001:00087800 ?initialize_pointers@@YAHXZ 10088800 f libcpmt:winapisupp.obj - 0001:000878dd ?find_pe_section@@YAPAU_IMAGE_SECTION_HEADER@@QAEI@Z 100888dd f LIBCMT:utility.obj - 0001:00087c40 $$000000 10088c40 LIBCMT:llshl.obj - 0001:00087c50 MORE32 10088c50 LIBCMT:llshl.obj - 0001:00087c5a RETZERO 10088c5a LIBCMT:llshl.obj - 0001:00087c60 $$000000 10088c60 LIBCMT:ullshr.obj - 0001:00087c70 MORE32 10088c70 LIBCMT:ullshr.obj - 0001:00087c7a RETZERO 10088c7a LIBCMT:ullshr.obj - 0001:00087d60 $$000000 10088d60 LIBCMT:lldiv.obj - 0001:00087d81 L1 10088d81 LIBCMT:lldiv.obj - 0001:00087d9d L2 10088d9d LIBCMT:lldiv.obj - 0001:00087db9 L3 10088db9 LIBCMT:lldiv.obj - 0001:00087dc7 L5 10088dc7 LIBCMT:lldiv.obj - 0001:00087df5 L6 10088df5 LIBCMT:lldiv.obj - 0001:00087df6 L7 10088df6 LIBCMT:lldiv.obj - 0001:00087dfa L4 10088dfa LIBCMT:lldiv.obj - 0001:00087e04 L8 10088e04 LIBCMT:lldiv.obj - 0001:00087e10 $$000000 10088e10 LIBCMT:lldvrm.obj - 0001:00087e34 L1 10088e34 LIBCMT:lldvrm.obj - 0001:00087e50 L2 10088e50 LIBCMT:lldvrm.obj - 0001:00087e7c L3 10088e7c LIBCMT:lldvrm.obj - 0001:00087e8a L5 10088e8a LIBCMT:lldvrm.obj - 0001:00087eb8 L6 10088eb8 LIBCMT:lldvrm.obj - 0001:00087ec1 L7 10088ec1 LIBCMT:lldvrm.obj - 0001:00087ec3 L4 10088ec3 LIBCMT:lldvrm.obj - 0001:00087ed5 L9 10088ed5 LIBCMT:lldvrm.obj - 0001:00087ee9 L8 10088ee9 LIBCMT:lldvrm.obj - 0001:00087ef0 $$000000 10088ef0 LIBCMT:llmul.obj - 0001:00087f09 hard 10088f09 LIBCMT:llmul.obj - 0001:00087f30 $$000000 10088f30 LIBCMT:llrem.obj - 0001:00087f50 L1 10088f50 LIBCMT:llrem.obj - 0001:00087f6b L2 10088f6b LIBCMT:llrem.obj - 0001:00087f8a L3 10088f8a LIBCMT:llrem.obj - 0001:00087f98 L5 10088f98 LIBCMT:llrem.obj - 0001:00087fc3 L6 10088fc3 LIBCMT:llrem.obj - 0001:00087fcb L7 10088fcb LIBCMT:llrem.obj - 0001:00087fd6 L4 10088fd6 LIBCMT:llrem.obj - 0001:00087fdd L8 10088fdd LIBCMT:llrem.obj - 0001:00088000 $$000000 10089000 LIBCMT:ftol3.obj - 0001:0008801f _ftol3_default 1008901f LIBCMT:ftol3.obj - 0001:00088033 _ftol3_notsafe 10089033 LIBCMT:ftol3.obj - 0001:00088053 _ftol3_mincheck 10089053 LIBCMT:ftol3.obj - 0001:00088059 _ftol3_NaN 10089059 LIBCMT:ftol3.obj - 0001:00088061 _ftol3_retmin 10089061 LIBCMT:ftol3.obj - 0001:00088070 $$000000 10089070 LIBCMT:ftol3.obj - 0001:0008808e _dtoul3_default 1008908e LIBCMT:ftol3.obj - 0001:000880b9 _dtoul3_notsafe 100890b9 LIBCMT:ftol3.obj - 0001:000880e2 _dtoul3_exact 100890e2 LIBCMT:ftol3.obj - 0001:000880e9 _dtoul3_large 100890e9 LIBCMT:ftol3.obj - 0001:000880f4 _dtoul3_neg 100890f4 LIBCMT:ftol3.obj - 0001:00088105 _dtoul3_NaN 10089105 LIBCMT:ftol3.obj - 0001:00088120 $$000000 10089120 LIBCMT:ftol3.obj - 0001:0008813e _dtoul3l_notsafe 1008913e LIBCMT:ftol3.obj - 0001:00088150 $$000000 10089150 LIBCMT:ftol3.obj - 0001:0008816e _dtol3_default 1008916e LIBCMT:ftol3.obj - 0001:00088198 _dtol3_getbits 10089198 LIBCMT:ftol3.obj - 0001:000881c1 _dtol3_trunc 100891c1 LIBCMT:ftol3.obj - 0001:000881c8 _dtol3_lshift 100891c8 LIBCMT:ftol3.obj - 0001:000881ce _dtol3_notsafe 100891ce LIBCMT:ftol3.obj - 0001:000881e7 _dtol3_large 100891e7 LIBCMT:ftol3.obj - 0001:000881ef _dtol3_NaN 100891ef LIBCMT:ftol3.obj - 0001:000881f7 _dtol3_retmin 100891f7 LIBCMT:ftol3.obj - 0001:00088200 $$000000 10089200 LIBCMT:ftol3.obj - 0001:0008821a _ultod3_default 1008921a LIBCMT:ftol3.obj - 0001:00088248 _ultod3_uint32 10089248 LIBCMT:ftol3.obj - 0001:00088250 $$000000 10089250 LIBCMT:ftol3.obj - 0001:0008826a _ltod3_default 1008926a LIBCMT:ftol3.obj - 0001:00088291 _ltod3_lt33 10089291 LIBCMT:ftol3.obj - 0001:00088292 ?dllmain_crt_dispatch@@YGHQAUHINSTANCE__@@KQAX@Z 10089292 f LIBCMT:dll_dllmain.obj - 0001:000882e5 ?dllmain_crt_process_attach@@YAHQAUHINSTANCE__@@QAX@Z 100892e5 f LIBCMT:dll_dllmain.obj - 0001:000883ec ?dllmain_crt_process_detach@@YAH_N@Z 100893ec f LIBCMT:dll_dllmain.obj - 0001:0008849c ?dllmain_dispatch@@YAHQAUHINSTANCE__@@KQAX@Z 1008949c f LIBCMT:dll_dllmain.obj - 0001:000885a7 ?dllmain_raw@@YGHQAUHINSTANCE__@@KQAX@Z 100895a7 f LIBCMT:dll_dllmain.obj - 0001:00088600 $$000000 10089600 LIBCMT:sehprolg4.obj - 0001:00088b40 $$000000 10089b40 LIBCMT:ulldvrm.obj - 0001:00088b71 L1 10089b71 LIBCMT:ulldvrm.obj - 0001:00088b7f L3 10089b7f LIBCMT:ulldvrm.obj - 0001:00088bad L4 10089bad LIBCMT:ulldvrm.obj - 0001:00088bb6 L5 10089bb6 LIBCMT:ulldvrm.obj - 0001:00088bb8 L2 10089bb8 LIBCMT:ulldvrm.obj - 0001:00088d00 $$000000 10089d00 LIBCMT:ulldiv.obj - 0001:00088d22 L1 10089d22 LIBCMT:ulldiv.obj - 0001:00088d30 L3 10089d30 LIBCMT:ulldiv.obj - 0001:00088d5e L4 10089d5e LIBCMT:ulldiv.obj - 0001:00088d5f L5 10089d5f LIBCMT:ulldiv.obj - 0001:00088d63 L2 10089d63 LIBCMT:ulldiv.obj - 0001:00088d70 $$000000 10089d70 LIBCMT:ullrem.obj - 0001:00088d91 L1 10089d91 LIBCMT:ullrem.obj - 0001:00088d9f L3 10089d9f LIBCMT:ullrem.obj - 0001:00088dca L4 10089dca LIBCMT:ullrem.obj - 0001:00088dd2 L5 10089dd2 LIBCMT:ullrem.obj - 0001:00088de1 L2 10089de1 LIBCMT:ullrem.obj - 0001:00088ff0 $$000000 10089ff0 LIBCMT:chkstk.obj - 0001:00089004 cs10 1008a004 LIBCMT:chkstk.obj - 0001:00089012 cs20 1008a012 LIBCMT:chkstk.obj - 0001:00089020 $$000000 1008a020 LIBCMT:alloca16.obj - 0001:00089036 alloca_8 1008a036 LIBCMT:alloca16.obj - 0001:00089050 $$000000 1008a050 LIBCMT:ftol2.obj - 0001:00089060 $$000000 1008a060 LIBCMT:ftol2.obj - 0001:00089071 L3B 1008a071 LIBCMT:ftol2.obj - 0001:000890b4 L3F 1008a0b4 LIBCMT:ftol2.obj - 0001:000890bc L40 1008a0bc LIBCMT:ftol2.obj - 0001:000890cf L41 1008a0cf LIBCMT:ftol2.obj - 0001:00089105 ___get_entropy 1008a105 f LIBCMT:gs_support.obj - 0001:0008a82c $LN1250 1008b82c libvcruntime:memcmp.obj - 0001:0008a8b0 $$000000 1008b8b0 libvcruntime:strrchr.obj - 0001:0008a8ed strrchr_sse_loop 1008b8ed libvcruntime:strrchr.obj - 0001:0008a91d strrchr_sse_break 1008b91d libvcruntime:strrchr.obj - 0001:0008a93d strrchr_sttni 1008b93d libvcruntime:strrchr.obj - 0001:0008a94f strrchr_sttni_chars 1008b94f libvcruntime:strrchr.obj - 0001:0008a964 strrchr_sttni_aligned 1008b964 libvcruntime:strrchr.obj - 0001:0008a968 strrchr_sttni_xmm 1008b968 libvcruntime:strrchr.obj - 0001:0008a97b exit 1008b97b libvcruntime:strrchr.obj - 0001:0008a97e strrchr_zero 1008b97e libvcruntime:strrchr.obj - 0001:0008a9a3 strchr_zero_loop 1008b9a3 libvcruntime:strrchr.obj - 0001:0008a9b7 strchr_zero_result 1008b9b7 libvcruntime:strrchr.obj - 0001:0008a9be strrchr_no_sse 1008b9be libvcruntime:strrchr.obj - 0001:0008a9e1 returndi 1008b9e1 libvcruntime:strrchr.obj - 0001:0008a9e3 toend 1008b9e3 libvcruntime:strrchr.obj - 0001:0008aaed ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@PAD@@QAEPAD$$QAV@@AAV@@$$QAV@@@Z 1008baed f libucrt:setlocale.obj - 0001:0008ab48 ??R@@QBEPADXZ 1008bb48 f libucrt:setlocale.obj - 0001:0008aca7 _call_wsetlocale 1008bca7 f libucrt:setlocale.obj - 0001:0008add9 ??$common_fsopen@D@@YAPAU_iobuf@@QBD0H@Z 1008bdd9 f libucrt:fopen.obj - 0001:0008ae9b ??$common_configure_argv@D@@YAHW4_crt_argv_mode@@@Z 1008be9b f libucrt:argv_parsing.obj - 0001:0008afd8 ??$parse_command_line@D@@YAXPADPAPAD0PAI2@Z 1008bfd8 f libucrt:argv_parsing.obj - 0001:0008b1a6 _initialize_global_variables 1008c1a6 f libucrt:initialization.obj - 0001:0008b1b3 _initialize_c 1008c1b3 f libucrt:initialization.obj - 0001:0008b1cd _uninitialize_environment 1008c1cd f libucrt:initialization.obj - 0001:0008b1d5 _initialize_pointers 1008c1d5 f libucrt:initialization.obj - 0001:0008b203 _uninitialize_vcruntime 1008c203 f libucrt:initialization.obj - 0001:0008b20c _uninitialize_allocated_memory 1008c20c f libucrt:initialization.obj - 0001:0008b223 _uninitialize_allocated_io_buffers 1008c223 f libucrt:initialization.obj - 0001:0008b273 ??R@@QBE@AAPAU__crt_multibyte_data@@@Z 1008c273 f libucrt:initialization.obj - 0001:0008b308 ?_wcstombs_internal@@YAHPAIPADIPB_WIAAV__crt_cached_ptd_host@@@Z 1008c308 f libucrt:wcstombs.obj - 0001:0008b3dd ?_wcstombs_l_helper@@YAIPADPB_WIAAV__crt_cached_ptd_host@@@Z 1008c3dd f libucrt:wcstombs.obj - 0001:0008b8ec ??$common_openfile@D@@YAPAU_iobuf@@QBD0HV__crt_stdio_stream@@@Z 1008c8ec f libucrt:openfile.obj - 0001:0008ba8e ?@@@CAHPBX0@Z 1008ca8e f libucrt:argv_wildcards.obj - 0001:0008bb6c ??$common_expand_argv_wildcards@D@@YAHQAPADQAPAPAD@Z 1008cb6c f libucrt:argv_wildcards.obj - 0001:0008bce9 ??$copy_and_add_argument_to_buffer@D@@YAHQBD0IAAV?$argument_list@D@?A0x5f5c8891@@@Z 1008cce9 f libucrt:argv_wildcards.obj - 0001:0008bd9a ??$expand_argument_wildcards@D@@YAHQAD0AAV?$argument_list@D@?A0x5f5c8891@@@Z 1008cd9a f libucrt:argv_wildcards.obj - 0001:0008c01f ??1?$argument_list@D@?A0x5f5c8891@@QAE@XZ 1008d01f f libucrt:argv_wildcards.obj - 0001:0008c080 ?expand_if_necessary@?$argument_list@D@?A0x5f5c8891@@AAEHXZ 1008d080 f libucrt:argv_wildcards.obj - 0001:0008c1b3 ?x_ismbbtype_l@@YAHPAU__crt_locale_pointers@@IHH@Z 1008d1b3 f libucrt:ismbbyte.obj - 0001:0008c3dc ??$common_sopen_dispatch@D@@YAHQBDHHHQAHH@Z 1008d3dc f libucrt:open.obj - 0001:0008c4b7 ?configure_text_mode@@YAHHUfile_options@?A0xa9d50aae@@HAAW4__crt_lowio_text_mode@@@Z 1008d4b7 f libucrt:open.obj - 0001:0008c70d ?create_file@@YAPAXQB_WQAU_SECURITY_ATTRIBUTES@@Ufile_options@?A0xa9d50aae@@@Z 1008d70d f libucrt:open.obj - 0001:0008c732 ?decode_open_create_flags@@YAKH@Z 1008d732 f libucrt:open.obj - 0001:0008c7a2 ?decode_options@@YA?AUfile_options@?A0xa9d50aae@@HHH@Z 1008d7a2 f libucrt:open.obj - 0001:0008c91c ?truncate_ctrl_z_if_present@@YAHH@Z 1008d91c f libucrt:open.obj - 0001:0008d270 $$000000 1008e270 libucrt:strpbrk.obj - 0001:0008d7b0 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$0 1008e7b0 f logging.cpp.obj - 0001:0008d7b0 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 1008e7b0 f main.cpp.obj - 0001:0008d7b8 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$2 1008e7b8 f logging.cpp.obj - 0001:0008d7b8 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 1008e7b8 f main.cpp.obj - 0001:0008d7c7 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$1 1008e7c7 f logging.cpp.obj - 0001:0008d7c7 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 1008e7c7 f main.cpp.obj - 0001:0008d7d4 __ehhandler$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 1008e7d4 f logging.cpp.obj - 0001:0008d7d4 __ehhandler$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 1008e7d4 f main.cpp.obj - 0001:0008d800 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$0 1008e800 f logging.cpp.obj - 0001:0008d808 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$2 1008e808 f logging.cpp.obj - 0001:0008d817 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$1 1008e817 f logging.cpp.obj - 0001:0008d824 __ehhandler$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 1008e824 f logging.cpp.obj - 0001:0008d850 __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$0 1008e850 f logging.cpp.obj - 0001:0008d86c __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$2 1008e86c f logging.cpp.obj - 0001:0008d879 __ehhandler$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 1008e879 f logging.cpp.obj - 0001:0008d8a0 __ehhandler$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 1008e8a0 f logging.cpp.obj - 0001:0008d8c0 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$0 1008e8c0 f logging.cpp.obj - 0001:0008d8c8 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$1 1008e8c8 f logging.cpp.obj - 0001:0008d8d3 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$2 1008e8d3 f logging.cpp.obj - 0001:0008d8de __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$3 1008e8de f logging.cpp.obj - 0001:0008d8e9 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$4 1008e8e9 f logging.cpp.obj - 0001:0008d8f4 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$5 1008e8f4 f logging.cpp.obj - 0001:0008d8ff __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$6 1008e8ff f logging.cpp.obj - 0001:0008d90f __ehhandler$??0_Locinfo@std@@QAE@PBD@Z 1008e90f f logging.cpp.obj - 0001:0008d930 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$5 1008e930 f logging.cpp.obj - 0001:0008d938 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$6 1008e938 f logging.cpp.obj - 0001:0008d945 __ehhandler$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1008e945 f logging.cpp.obj - 0001:0008d970 __unwindfunclet$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z$1 1008e970 f logging.cpp.obj - 0001:0008d970 __unwindfunclet$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z$0 1008e970 f main.cpp.obj - 0001:0008d970 __unwindfunclet$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z$0 1008e970 f spellcast.cpp.obj - 0001:0008d97d __ehhandler$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 1008e97d f logging.cpp.obj - 0001:0008d97d __ehhandler$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 1008e97d f main.cpp.obj - 0001:0008d97d __ehhandler$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 1008e97d f spellcast.cpp.obj - 0001:0008d9b0 __ehhandler$??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 1008e9b0 f logging.cpp.obj - 0001:0008d9b0 __ehhandler$?try_cor_exit_process@@YAXI@Z 1008e9b0 f libucrt:exit.obj - 0001:0008d9b0 __ehhandler$?_Tidy@ios_base@std@@AAEXXZ 1008e9b0 f libcpmt:ios.obj - 0001:0008d9d0 __ehhandler$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 1008e9d0 f logging.cpp.obj - 0001:0008d9f0 __ehhandler$??1_Locinfo@std@@QAE@XZ 1008e9f0 f logging.cpp.obj - 0001:0008d9f0 __ehhandler$??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 1008e9f0 f main.cpp.obj - 0001:0008d9f0 __ehhandler$??1_Init_atexit@@QAE@XZ 1008e9f0 f libcpmt:iosptrs.obj - 0001:0008d9f0 __ehhandler$___crtGetSystemTimePreciseAsFileTime 1008e9f0 f libcpmt:winapisupp.obj - 0001:0008da10 __ehhandler$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 1008ea10 f logging.cpp.obj - 0001:0008da10 __ehhandler$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 1008ea10 f main.cpp.obj - 0001:0008da10 __ehhandler$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 1008ea10 f main.cpp.obj - 0001:0008da10 __ehhandler$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 1008ea10 f main.cpp.obj - 0001:0008da10 __ehhandler$??_GError@hadesmem@@UAEPAXI@Z 1008ea10 f main.cpp.obj - 0001:0008da30 __ehhandler$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 1008ea30 f logging.cpp.obj - 0001:0008da30 __ehhandler$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 1008ea30 f logging.cpp.obj - 0001:0008da30 __ehhandler$??_Gios_base@std@@UAEPAXI@Z 1008ea30 f logging.cpp.obj - 0001:0008da30 __ehhandler$??1bad_alloc_@exception_detail@boost@@UAE@XZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??1bad_exception_@exception_detail@boost@@UAE@XZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??1exception@boost@@MAE@XZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_DError@hadesmem@@QAEXXZ 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_GCDataStore@Nampower@@UAEPAXI@Z 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 1008ea30 f main.cpp.obj - 0001:0008da30 __ehhandler$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 1008ea30 f main.cpp.obj - 0001:0008da50 __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$0 1008ea50 f logging.cpp.obj - 0001:0008da6b __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$1 1008ea6b f logging.cpp.obj - 0001:0008da7a __ehhandler$??__EdebugLogFile@Nampower@@YAXXZ 1008ea7a f logging.cpp.obj - 0001:0008daa0 __ehhandler$??__FdebugLogFile@Nampower@@YAXXZ 1008eaa0 f logging.cpp.obj - 0001:0008dac0 __unwindfunclet$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z$1 1008eac0 f logging.cpp.obj - 0001:0008dacd __ehhandler$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 1008eacd f logging.cpp.obj - 0001:0008daf0 __unwindfunclet$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ$0 1008eaf0 f logging.cpp.obj - 0001:0008daf0 __unwindfunclet$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 1008eaf0 f spellevents.cpp.obj - 0001:0008dafd __ehhandler$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 1008eafd f logging.cpp.obj - 0001:0008dafd __ehhandler$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 1008eafd f spellevents.cpp.obj - 0001:0008db30 __ehhandler$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 1008eb30 f main.cpp.obj - 0001:0008db50 __ehhandler$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 1008eb50 f main.cpp.obj - 0001:0008db70 __unwindfunclet$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z$0 1008eb70 f main.cpp.obj - 0001:0008db70 __unwindfunclet$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z$0 1008eb70 f main.cpp.obj - 0001:0008db80 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 1008eb80 f main.cpp.obj - 0001:0008db80 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 1008eb80 f main.cpp.obj - 0001:0008dba0 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 1008eba0 f main.cpp.obj - 0001:0008dbc0 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 1008ebc0 f main.cpp.obj - 0001:0008dbe0 __ehhandler$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 1008ebe0 f main.cpp.obj - 0001:0008dc00 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$2 1008ec00 f main.cpp.obj - 0001:0008dc08 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$3 1008ec08 f main.cpp.obj - 0001:0008dc15 __ehhandler$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 1008ec15 f main.cpp.obj - 0001:0008dc40 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$2 1008ec40 f main.cpp.obj - 0001:0008dc4d __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 1008ec4d f main.cpp.obj - 0001:0008dc70 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$2 1008ec70 f main.cpp.obj - 0001:0008dc7d __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 1008ec7d f main.cpp.obj - 0001:0008dca0 __unwindfunclet$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z$2 1008eca0 f main.cpp.obj - 0001:0008dcad __ehhandler$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 1008ecad f main.cpp.obj - 0001:0008dcd0 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$1 1008ecd0 f main.cpp.obj - 0001:0008dcd8 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$2 1008ecd8 f main.cpp.obj - 0001:0008dce0 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$3 1008ece0 f main.cpp.obj - 0001:0008dce8 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$4 1008ece8 f main.cpp.obj - 0001:0008dcf8 __ehhandler$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 1008ecf8 f main.cpp.obj - 0001:0008dd30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$0 1008ed30 f main.cpp.obj - 0001:0008dd30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$0 1008ed30 f main.cpp.obj - 0001:0008dd30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$0 1008ed30 f main.cpp.obj - 0001:0008dd38 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$1 1008ed38 f main.cpp.obj - 0001:0008dd38 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$1 1008ed38 f main.cpp.obj - 0001:0008dd38 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$1 1008ed38 f main.cpp.obj - 0001:0008dd40 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$2 1008ed40 f main.cpp.obj - 0001:0008dd40 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$2 1008ed40 f main.cpp.obj - 0001:0008dd40 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$2 1008ed40 f main.cpp.obj - 0001:0008dd4d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 1008ed4d f main.cpp.obj - 0001:0008dd4d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 1008ed4d f main.cpp.obj - 0001:0008dd4d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 1008ed4d f main.cpp.obj - 0001:0008dd80 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$0 1008ed80 f main.cpp.obj - 0001:0008dd88 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$1 1008ed88 f main.cpp.obj - 0001:0008dd90 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$2 1008ed90 f main.cpp.obj - 0001:0008dd9d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 1008ed9d f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$0 1008edd0 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$1 1008edd8 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$1 1008edd8 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$1 1008edd8 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$1 1008edd8 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$1 1008edd8 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$1 1008edd8 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$1 1008edd8 f main.cpp.obj - 0001:0008ddd8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$1 1008edd8 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$2 1008ede0 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$2 1008ede0 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$2 1008ede0 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$2 1008ede0 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$2 1008ede0 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$2 1008ede0 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$2 1008ede0 f main.cpp.obj - 0001:0008dde0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$2 1008ede0 f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 1008eded f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 1008eded f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 1008eded f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 1008eded f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 1008eded f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 1008eded f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 1008eded f main.cpp.obj - 0001:0008dded __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 1008eded f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de20 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z$0 1008ee20 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de28 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z$1 1008ee28 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de30 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z$2 1008ee30 f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de3d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 1008ee3d f main.cpp.obj - 0001:0008de70 __unwindfunclet$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$2 1008ee70 f main.cpp.obj - 0001:0008de7d __ehhandler$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 1008ee7d f main.cpp.obj - 0001:0008dea0 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$0 1008eea0 f main.cpp.obj - 0001:0008dea8 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$1 1008eea8 f main.cpp.obj - 0001:0008deb0 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$2 1008eeb0 f main.cpp.obj - 0001:0008deb8 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$3 1008eeb8 f main.cpp.obj - 0001:0008dec5 __ehhandler$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 1008eec5 f main.cpp.obj - 0001:0008def0 __unwindfunclet$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$2 1008eef0 f main.cpp.obj - 0001:0008defd __ehhandler$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 1008eefd f main.cpp.obj - 0001:0008df20 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$4 1008ef20 f main.cpp.obj - 0001:0008df28 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$21 1008ef28 f main.cpp.obj - 0001:0008df3a __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$22 1008ef3a f main.cpp.obj - 0001:0008df5c __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$6 1008ef5c f main.cpp.obj - 0001:0008df7e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$7 1008ef7e f main.cpp.obj - 0001:0008df86 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$8 1008ef86 f main.cpp.obj - 0001:0008df8e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$10 1008ef8e f main.cpp.obj - 0001:0008df96 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$11 1008ef96 f main.cpp.obj - 0001:0008df9e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$12 1008ef9e f main.cpp.obj - 0001:0008dfa6 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$13 1008efa6 f main.cpp.obj - 0001:0008dfae __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$14 1008efae f main.cpp.obj - 0001:0008dfb6 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$15 1008efb6 f main.cpp.obj - 0001:0008dfbe __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$16 1008efbe f main.cpp.obj - 0001:0008dfc9 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$17 1008efc9 f main.cpp.obj - 0001:0008dfd4 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$9 1008efd4 f main.cpp.obj - 0001:0008dfe1 __ehhandler$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 1008efe1 f main.cpp.obj - 0001:0008e010 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$4 1008f010 f main.cpp.obj - 0001:0008e018 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$21 1008f018 f main.cpp.obj - 0001:0008e02a __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$22 1008f02a f main.cpp.obj - 0001:0008e04c __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$6 1008f04c f main.cpp.obj - 0001:0008e06e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$7 1008f06e f main.cpp.obj - 0001:0008e076 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$8 1008f076 f main.cpp.obj - 0001:0008e07e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$10 1008f07e f main.cpp.obj - 0001:0008e086 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$11 1008f086 f main.cpp.obj - 0001:0008e08e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$12 1008f08e f main.cpp.obj - 0001:0008e096 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$13 1008f096 f main.cpp.obj - 0001:0008e09e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$14 1008f09e f main.cpp.obj - 0001:0008e0a6 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$15 1008f0a6 f main.cpp.obj - 0001:0008e0ae __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$16 1008f0ae f main.cpp.obj - 0001:0008e0b9 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$17 1008f0b9 f main.cpp.obj - 0001:0008e0c4 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$9 1008f0c4 f main.cpp.obj - 0001:0008e0d1 __ehhandler$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 1008f0d1 f main.cpp.obj - 0001:0008e100 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$4 1008f100 f main.cpp.obj - 0001:0008e108 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$21 1008f108 f main.cpp.obj - 0001:0008e11a __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$22 1008f11a f main.cpp.obj - 0001:0008e13c __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$6 1008f13c f main.cpp.obj - 0001:0008e15e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$7 1008f15e f main.cpp.obj - 0001:0008e166 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$8 1008f166 f main.cpp.obj - 0001:0008e16e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$10 1008f16e f main.cpp.obj - 0001:0008e176 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$11 1008f176 f main.cpp.obj - 0001:0008e17e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$12 1008f17e f main.cpp.obj - 0001:0008e186 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$13 1008f186 f main.cpp.obj - 0001:0008e18e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$14 1008f18e f main.cpp.obj - 0001:0008e196 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$15 1008f196 f main.cpp.obj - 0001:0008e19e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$16 1008f19e f main.cpp.obj - 0001:0008e1a9 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$17 1008f1a9 f main.cpp.obj - 0001:0008e1b4 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$9 1008f1b4 f main.cpp.obj - 0001:0008e1c1 __ehhandler$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 1008f1c1 f main.cpp.obj - 0001:0008e1f0 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$4 1008f1f0 f main.cpp.obj - 0001:0008e1f8 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$21 1008f1f8 f main.cpp.obj - 0001:0008e20a __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$22 1008f20a f main.cpp.obj - 0001:0008e22c __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$6 1008f22c f main.cpp.obj - 0001:0008e24e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$7 1008f24e f main.cpp.obj - 0001:0008e256 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$8 1008f256 f main.cpp.obj - 0001:0008e25e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$10 1008f25e f main.cpp.obj - 0001:0008e266 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$11 1008f266 f main.cpp.obj - 0001:0008e26e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$12 1008f26e f main.cpp.obj - 0001:0008e276 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$13 1008f276 f main.cpp.obj - 0001:0008e27e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$14 1008f27e f main.cpp.obj - 0001:0008e286 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$15 1008f286 f main.cpp.obj - 0001:0008e28e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$16 1008f28e f main.cpp.obj - 0001:0008e299 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$17 1008f299 f main.cpp.obj - 0001:0008e2a4 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$9 1008f2a4 f main.cpp.obj - 0001:0008e2b1 __ehhandler$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 1008f2b1 f main.cpp.obj - 0001:0008e2e0 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$4 1008f2e0 f main.cpp.obj - 0001:0008e2e8 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$21 1008f2e8 f main.cpp.obj - 0001:0008e2fa __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$22 1008f2fa f main.cpp.obj - 0001:0008e31c __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$6 1008f31c f main.cpp.obj - 0001:0008e33e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$7 1008f33e f main.cpp.obj - 0001:0008e346 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$8 1008f346 f main.cpp.obj - 0001:0008e34e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$10 1008f34e f main.cpp.obj - 0001:0008e356 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$11 1008f356 f main.cpp.obj - 0001:0008e35e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$12 1008f35e f main.cpp.obj - 0001:0008e366 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$13 1008f366 f main.cpp.obj - 0001:0008e36e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$14 1008f36e f main.cpp.obj - 0001:0008e376 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$15 1008f376 f main.cpp.obj - 0001:0008e37e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$16 1008f37e f main.cpp.obj - 0001:0008e389 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$17 1008f389 f main.cpp.obj - 0001:0008e394 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$9 1008f394 f main.cpp.obj - 0001:0008e3a1 __ehhandler$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 1008f3a1 f main.cpp.obj - 0001:0008e3d0 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$4 1008f3d0 f main.cpp.obj - 0001:0008e3d8 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$21 1008f3d8 f main.cpp.obj - 0001:0008e3ea __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$22 1008f3ea f main.cpp.obj - 0001:0008e40c __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$6 1008f40c f main.cpp.obj - 0001:0008e42e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$7 1008f42e f main.cpp.obj - 0001:0008e436 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$8 1008f436 f main.cpp.obj - 0001:0008e43e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$10 1008f43e f main.cpp.obj - 0001:0008e446 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$11 1008f446 f main.cpp.obj - 0001:0008e44e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$12 1008f44e f main.cpp.obj - 0001:0008e456 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$13 1008f456 f main.cpp.obj - 0001:0008e45e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$14 1008f45e f main.cpp.obj - 0001:0008e466 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$15 1008f466 f main.cpp.obj - 0001:0008e46e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$16 1008f46e f main.cpp.obj - 0001:0008e479 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$17 1008f479 f main.cpp.obj - 0001:0008e484 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$9 1008f484 f main.cpp.obj - 0001:0008e491 __ehhandler$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 1008f491 f main.cpp.obj - 0001:0008e4c0 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$4 1008f4c0 f main.cpp.obj - 0001:0008e4c8 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$21 1008f4c8 f main.cpp.obj - 0001:0008e4da __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$22 1008f4da f main.cpp.obj - 0001:0008e4fc __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$6 1008f4fc f main.cpp.obj - 0001:0008e51e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$7 1008f51e f main.cpp.obj - 0001:0008e526 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$8 1008f526 f main.cpp.obj - 0001:0008e52e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$10 1008f52e f main.cpp.obj - 0001:0008e536 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$11 1008f536 f main.cpp.obj - 0001:0008e53e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$12 1008f53e f main.cpp.obj - 0001:0008e546 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$13 1008f546 f main.cpp.obj - 0001:0008e54e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$14 1008f54e f main.cpp.obj - 0001:0008e556 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$15 1008f556 f main.cpp.obj - 0001:0008e55e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$16 1008f55e f main.cpp.obj - 0001:0008e569 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$17 1008f569 f main.cpp.obj - 0001:0008e574 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$9 1008f574 f main.cpp.obj - 0001:0008e581 __ehhandler$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 1008f581 f main.cpp.obj - 0001:0008e5b0 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$4 1008f5b0 f main.cpp.obj - 0001:0008e5b8 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$21 1008f5b8 f main.cpp.obj - 0001:0008e5ca __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$22 1008f5ca f main.cpp.obj - 0001:0008e5ec __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$6 1008f5ec f main.cpp.obj - 0001:0008e60e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$7 1008f60e f main.cpp.obj - 0001:0008e616 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$8 1008f616 f main.cpp.obj - 0001:0008e61e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$10 1008f61e f main.cpp.obj - 0001:0008e626 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$11 1008f626 f main.cpp.obj - 0001:0008e62e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$12 1008f62e f main.cpp.obj - 0001:0008e636 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$13 1008f636 f main.cpp.obj - 0001:0008e63e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$14 1008f63e f main.cpp.obj - 0001:0008e646 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$15 1008f646 f main.cpp.obj - 0001:0008e64e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$16 1008f64e f main.cpp.obj - 0001:0008e659 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$17 1008f659 f main.cpp.obj - 0001:0008e664 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$9 1008f664 f main.cpp.obj - 0001:0008e671 __ehhandler$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 1008f671 f main.cpp.obj - 0001:0008e6a0 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$4 1008f6a0 f main.cpp.obj - 0001:0008e6a8 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$21 1008f6a8 f main.cpp.obj - 0001:0008e6ba __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$22 1008f6ba f main.cpp.obj - 0001:0008e6dc __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$6 1008f6dc f main.cpp.obj - 0001:0008e6fe __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$7 1008f6fe f main.cpp.obj - 0001:0008e706 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$8 1008f706 f main.cpp.obj - 0001:0008e70e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$10 1008f70e f main.cpp.obj - 0001:0008e716 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$11 1008f716 f main.cpp.obj - 0001:0008e71e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$12 1008f71e f main.cpp.obj - 0001:0008e726 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$13 1008f726 f main.cpp.obj - 0001:0008e72e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$14 1008f72e f main.cpp.obj - 0001:0008e736 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$15 1008f736 f main.cpp.obj - 0001:0008e73e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$16 1008f73e f main.cpp.obj - 0001:0008e749 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$17 1008f749 f main.cpp.obj - 0001:0008e754 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$9 1008f754 f main.cpp.obj - 0001:0008e761 __ehhandler$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 1008f761 f main.cpp.obj - 0001:0008e790 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$4 1008f790 f main.cpp.obj - 0001:0008e798 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$21 1008f798 f main.cpp.obj - 0001:0008e7aa __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$22 1008f7aa f main.cpp.obj - 0001:0008e7cc __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$6 1008f7cc f main.cpp.obj - 0001:0008e7ee __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$7 1008f7ee f main.cpp.obj - 0001:0008e7f6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$8 1008f7f6 f main.cpp.obj - 0001:0008e7fe __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$10 1008f7fe f main.cpp.obj - 0001:0008e806 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$11 1008f806 f main.cpp.obj - 0001:0008e80e __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$12 1008f80e f main.cpp.obj - 0001:0008e816 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$13 1008f816 f main.cpp.obj - 0001:0008e81e __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$14 1008f81e f main.cpp.obj - 0001:0008e826 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$15 1008f826 f main.cpp.obj - 0001:0008e82e __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$16 1008f82e f main.cpp.obj - 0001:0008e839 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$17 1008f839 f main.cpp.obj - 0001:0008e844 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$9 1008f844 f main.cpp.obj - 0001:0008e851 __ehhandler$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 1008f851 f main.cpp.obj - 0001:0008e880 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$4 1008f880 f main.cpp.obj - 0001:0008e888 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$21 1008f888 f main.cpp.obj - 0001:0008e89a __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$22 1008f89a f main.cpp.obj - 0001:0008e8bc __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$6 1008f8bc f main.cpp.obj - 0001:0008e8de __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$7 1008f8de f main.cpp.obj - 0001:0008e8e6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$8 1008f8e6 f main.cpp.obj - 0001:0008e8ee __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$10 1008f8ee f main.cpp.obj - 0001:0008e8f6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$11 1008f8f6 f main.cpp.obj - 0001:0008e8fe __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$12 1008f8fe f main.cpp.obj - 0001:0008e906 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$13 1008f906 f main.cpp.obj - 0001:0008e90e __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$14 1008f90e f main.cpp.obj - 0001:0008e916 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$15 1008f916 f main.cpp.obj - 0001:0008e91e __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$16 1008f91e f main.cpp.obj - 0001:0008e929 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$17 1008f929 f main.cpp.obj - 0001:0008e934 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$9 1008f934 f main.cpp.obj - 0001:0008e941 __ehhandler$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 1008f941 f main.cpp.obj - 0001:0008e970 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$4 1008f970 f main.cpp.obj - 0001:0008e978 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$21 1008f978 f main.cpp.obj - 0001:0008e98a __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$22 1008f98a f main.cpp.obj - 0001:0008e9ac __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$6 1008f9ac f main.cpp.obj - 0001:0008e9ce __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$7 1008f9ce f main.cpp.obj - 0001:0008e9d6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$8 1008f9d6 f main.cpp.obj - 0001:0008e9de __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$10 1008f9de f main.cpp.obj - 0001:0008e9e6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$11 1008f9e6 f main.cpp.obj - 0001:0008e9ee __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$12 1008f9ee f main.cpp.obj - 0001:0008e9f6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$13 1008f9f6 f main.cpp.obj - 0001:0008e9fe __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$14 1008f9fe f main.cpp.obj - 0001:0008ea06 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$15 1008fa06 f main.cpp.obj - 0001:0008ea0e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$16 1008fa0e f main.cpp.obj - 0001:0008ea19 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$17 1008fa19 f main.cpp.obj - 0001:0008ea24 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$9 1008fa24 f main.cpp.obj - 0001:0008ea31 __ehhandler$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 1008fa31 f main.cpp.obj - 0001:0008ea60 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$4 1008fa60 f main.cpp.obj - 0001:0008ea68 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$21 1008fa68 f main.cpp.obj - 0001:0008ea7a __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$22 1008fa7a f main.cpp.obj - 0001:0008ea9c __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$6 1008fa9c f main.cpp.obj - 0001:0008eabe __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$7 1008fabe f main.cpp.obj - 0001:0008eac6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$8 1008fac6 f main.cpp.obj - 0001:0008eace __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$10 1008face f main.cpp.obj - 0001:0008ead6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$11 1008fad6 f main.cpp.obj - 0001:0008eade __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$12 1008fade f main.cpp.obj - 0001:0008eae6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$13 1008fae6 f main.cpp.obj - 0001:0008eaee __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$14 1008faee f main.cpp.obj - 0001:0008eaf6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$15 1008faf6 f main.cpp.obj - 0001:0008eafe __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$16 1008fafe f main.cpp.obj - 0001:0008eb09 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$17 1008fb09 f main.cpp.obj - 0001:0008eb14 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$9 1008fb14 f main.cpp.obj - 0001:0008eb21 __ehhandler$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 1008fb21 f main.cpp.obj - 0001:0008eb50 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$4 1008fb50 f main.cpp.obj - 0001:0008eb58 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$21 1008fb58 f main.cpp.obj - 0001:0008eb6a __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$22 1008fb6a f main.cpp.obj - 0001:0008eb8c __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$6 1008fb8c f main.cpp.obj - 0001:0008ebae __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$7 1008fbae f main.cpp.obj - 0001:0008ebb6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$8 1008fbb6 f main.cpp.obj - 0001:0008ebbe __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$10 1008fbbe f main.cpp.obj - 0001:0008ebc6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$11 1008fbc6 f main.cpp.obj - 0001:0008ebce __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$12 1008fbce f main.cpp.obj - 0001:0008ebd6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$13 1008fbd6 f main.cpp.obj - 0001:0008ebde __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$14 1008fbde f main.cpp.obj - 0001:0008ebe6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$15 1008fbe6 f main.cpp.obj - 0001:0008ebee __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$16 1008fbee f main.cpp.obj - 0001:0008ebf9 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$17 1008fbf9 f main.cpp.obj - 0001:0008ec04 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$9 1008fc04 f main.cpp.obj - 0001:0008ec11 __ehhandler$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 1008fc11 f main.cpp.obj - 0001:0008ec40 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$4 1008fc40 f main.cpp.obj - 0001:0008ec48 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$21 1008fc48 f main.cpp.obj - 0001:0008ec5a __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$22 1008fc5a f main.cpp.obj - 0001:0008ec7c __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$6 1008fc7c f main.cpp.obj - 0001:0008ec9e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$7 1008fc9e f main.cpp.obj - 0001:0008eca6 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$8 1008fca6 f main.cpp.obj - 0001:0008ecae __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$10 1008fcae f main.cpp.obj - 0001:0008ecb6 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$11 1008fcb6 f main.cpp.obj - 0001:0008ecbe __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$12 1008fcbe f main.cpp.obj - 0001:0008ecc6 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$13 1008fcc6 f main.cpp.obj - 0001:0008ecce __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$14 1008fcce f main.cpp.obj - 0001:0008ecd6 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$15 1008fcd6 f main.cpp.obj - 0001:0008ecde __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$16 1008fcde f main.cpp.obj - 0001:0008ece9 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$17 1008fce9 f main.cpp.obj - 0001:0008ecf4 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$9 1008fcf4 f main.cpp.obj - 0001:0008ed01 __ehhandler$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 1008fd01 f main.cpp.obj - 0001:0008ed30 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$4 1008fd30 f main.cpp.obj - 0001:0008ed38 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$21 1008fd38 f main.cpp.obj - 0001:0008ed4a __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$22 1008fd4a f main.cpp.obj - 0001:0008ed6c __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$6 1008fd6c f main.cpp.obj - 0001:0008ed8e __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$7 1008fd8e f main.cpp.obj - 0001:0008ed96 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$8 1008fd96 f main.cpp.obj - 0001:0008ed9e __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$10 1008fd9e f main.cpp.obj - 0001:0008eda6 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$11 1008fda6 f main.cpp.obj - 0001:0008edae __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$12 1008fdae f main.cpp.obj - 0001:0008edb6 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$13 1008fdb6 f main.cpp.obj - 0001:0008edbe __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$14 1008fdbe f main.cpp.obj - 0001:0008edc6 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$15 1008fdc6 f main.cpp.obj - 0001:0008edce __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$16 1008fdce f main.cpp.obj - 0001:0008edd9 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$17 1008fdd9 f main.cpp.obj - 0001:0008ede4 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$9 1008fde4 f main.cpp.obj - 0001:0008edf1 __ehhandler$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 1008fdf1 f main.cpp.obj - 0001:0008ee20 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$4 1008fe20 f main.cpp.obj - 0001:0008ee28 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$21 1008fe28 f main.cpp.obj - 0001:0008ee3a __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$22 1008fe3a f main.cpp.obj - 0001:0008ee5c __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$6 1008fe5c f main.cpp.obj - 0001:0008ee7e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$7 1008fe7e f main.cpp.obj - 0001:0008ee86 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$8 1008fe86 f main.cpp.obj - 0001:0008ee8e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$10 1008fe8e f main.cpp.obj - 0001:0008ee96 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$11 1008fe96 f main.cpp.obj - 0001:0008ee9e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$12 1008fe9e f main.cpp.obj - 0001:0008eea6 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$13 1008fea6 f main.cpp.obj - 0001:0008eeae __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$14 1008feae f main.cpp.obj - 0001:0008eeb6 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$15 1008feb6 f main.cpp.obj - 0001:0008eebe __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$16 1008febe f main.cpp.obj - 0001:0008eec9 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$17 1008fec9 f main.cpp.obj - 0001:0008eed4 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$9 1008fed4 f main.cpp.obj - 0001:0008eee1 __ehhandler$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 1008fee1 f main.cpp.obj - 0001:0008ef10 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$4 1008ff10 f main.cpp.obj - 0001:0008ef18 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$21 1008ff18 f main.cpp.obj - 0001:0008ef2a __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$22 1008ff2a f main.cpp.obj - 0001:0008ef4c __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$6 1008ff4c f main.cpp.obj - 0001:0008ef6e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$7 1008ff6e f main.cpp.obj - 0001:0008ef76 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$8 1008ff76 f main.cpp.obj - 0001:0008ef7e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$10 1008ff7e f main.cpp.obj - 0001:0008ef86 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$11 1008ff86 f main.cpp.obj - 0001:0008ef8e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$12 1008ff8e f main.cpp.obj - 0001:0008ef96 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$13 1008ff96 f main.cpp.obj - 0001:0008ef9e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$14 1008ff9e f main.cpp.obj - 0001:0008efa6 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$15 1008ffa6 f main.cpp.obj - 0001:0008efae __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$16 1008ffae f main.cpp.obj - 0001:0008efb9 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$17 1008ffb9 f main.cpp.obj - 0001:0008efc4 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$9 1008ffc4 f main.cpp.obj - 0001:0008efd1 __ehhandler$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 1008ffd1 f main.cpp.obj - 0001:0008f000 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$4 10090000 f main.cpp.obj - 0001:0008f008 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$21 10090008 f main.cpp.obj - 0001:0008f01a __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$22 1009001a f main.cpp.obj - 0001:0008f03c __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$6 1009003c f main.cpp.obj - 0001:0008f05e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$7 1009005e f main.cpp.obj - 0001:0008f066 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$8 10090066 f main.cpp.obj - 0001:0008f06e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$10 1009006e f main.cpp.obj - 0001:0008f076 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$11 10090076 f main.cpp.obj - 0001:0008f07e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$12 1009007e f main.cpp.obj - 0001:0008f086 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$13 10090086 f main.cpp.obj - 0001:0008f08e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$14 1009008e f main.cpp.obj - 0001:0008f096 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$15 10090096 f main.cpp.obj - 0001:0008f09e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$16 1009009e f main.cpp.obj - 0001:0008f0a9 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$17 100900a9 f main.cpp.obj - 0001:0008f0b4 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$9 100900b4 f main.cpp.obj - 0001:0008f0c1 __ehhandler$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100900c1 f main.cpp.obj - 0001:0008f0f0 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$4 100900f0 f main.cpp.obj - 0001:0008f0f8 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$21 100900f8 f main.cpp.obj - 0001:0008f10a __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$22 1009010a f main.cpp.obj - 0001:0008f12c __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$6 1009012c f main.cpp.obj - 0001:0008f14e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$7 1009014e f main.cpp.obj - 0001:0008f156 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$8 10090156 f main.cpp.obj - 0001:0008f15e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$10 1009015e f main.cpp.obj - 0001:0008f166 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$11 10090166 f main.cpp.obj - 0001:0008f16e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$12 1009016e f main.cpp.obj - 0001:0008f176 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$13 10090176 f main.cpp.obj - 0001:0008f17e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$14 1009017e f main.cpp.obj - 0001:0008f186 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$15 10090186 f main.cpp.obj - 0001:0008f18e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$16 1009018e f main.cpp.obj - 0001:0008f199 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$17 10090199 f main.cpp.obj - 0001:0008f1a4 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$9 100901a4 f main.cpp.obj - 0001:0008f1b1 __ehhandler$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100901b1 f main.cpp.obj - 0001:0008f1e0 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$4 100901e0 f main.cpp.obj - 0001:0008f1e8 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$21 100901e8 f main.cpp.obj - 0001:0008f1fa __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$22 100901fa f main.cpp.obj - 0001:0008f21c __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$6 1009021c f main.cpp.obj - 0001:0008f23e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$7 1009023e f main.cpp.obj - 0001:0008f246 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$8 10090246 f main.cpp.obj - 0001:0008f24e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$10 1009024e f main.cpp.obj - 0001:0008f256 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$11 10090256 f main.cpp.obj - 0001:0008f25e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$12 1009025e f main.cpp.obj - 0001:0008f266 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$13 10090266 f main.cpp.obj - 0001:0008f26e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$14 1009026e f main.cpp.obj - 0001:0008f276 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$15 10090276 f main.cpp.obj - 0001:0008f27e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$16 1009027e f main.cpp.obj - 0001:0008f289 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$17 10090289 f main.cpp.obj - 0001:0008f294 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$9 10090294 f main.cpp.obj - 0001:0008f2a1 __ehhandler$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 100902a1 f main.cpp.obj - 0001:0008f2d0 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$4 100902d0 f main.cpp.obj - 0001:0008f2d8 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$21 100902d8 f main.cpp.obj - 0001:0008f2ea __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$22 100902ea f main.cpp.obj - 0001:0008f30c __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$6 1009030c f main.cpp.obj - 0001:0008f32e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$7 1009032e f main.cpp.obj - 0001:0008f336 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$8 10090336 f main.cpp.obj - 0001:0008f33e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$10 1009033e f main.cpp.obj - 0001:0008f346 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$11 10090346 f main.cpp.obj - 0001:0008f34e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$12 1009034e f main.cpp.obj - 0001:0008f356 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$13 10090356 f main.cpp.obj - 0001:0008f35e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$14 1009035e f main.cpp.obj - 0001:0008f366 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$15 10090366 f main.cpp.obj - 0001:0008f36e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$16 1009036e f main.cpp.obj - 0001:0008f379 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$17 10090379 f main.cpp.obj - 0001:0008f384 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$9 10090384 f main.cpp.obj - 0001:0008f391 __ehhandler$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 10090391 f main.cpp.obj - 0001:0008f3c0 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$4 100903c0 f main.cpp.obj - 0001:0008f3c8 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$21 100903c8 f main.cpp.obj - 0001:0008f3da __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$22 100903da f main.cpp.obj - 0001:0008f3fc __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$6 100903fc f main.cpp.obj - 0001:0008f41e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$7 1009041e f main.cpp.obj - 0001:0008f426 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$8 10090426 f main.cpp.obj - 0001:0008f42e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$10 1009042e f main.cpp.obj - 0001:0008f436 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$11 10090436 f main.cpp.obj - 0001:0008f43e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$12 1009043e f main.cpp.obj - 0001:0008f446 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$13 10090446 f main.cpp.obj - 0001:0008f44e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$14 1009044e f main.cpp.obj - 0001:0008f456 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$15 10090456 f main.cpp.obj - 0001:0008f45e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$16 1009045e f main.cpp.obj - 0001:0008f469 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$17 10090469 f main.cpp.obj - 0001:0008f474 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$9 10090474 f main.cpp.obj - 0001:0008f481 __ehhandler$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 10090481 f main.cpp.obj - 0001:0008f4b0 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$4 100904b0 f main.cpp.obj - 0001:0008f4b8 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$21 100904b8 f main.cpp.obj - 0001:0008f4ca __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$22 100904ca f main.cpp.obj - 0001:0008f4ec __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$6 100904ec f main.cpp.obj - 0001:0008f50e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$7 1009050e f main.cpp.obj - 0001:0008f516 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$8 10090516 f main.cpp.obj - 0001:0008f51e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$10 1009051e f main.cpp.obj - 0001:0008f526 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$11 10090526 f main.cpp.obj - 0001:0008f52e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$12 1009052e f main.cpp.obj - 0001:0008f536 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$13 10090536 f main.cpp.obj - 0001:0008f53e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$14 1009053e f main.cpp.obj - 0001:0008f546 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$15 10090546 f main.cpp.obj - 0001:0008f54e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$16 1009054e f main.cpp.obj - 0001:0008f559 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$17 10090559 f main.cpp.obj - 0001:0008f564 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$9 10090564 f main.cpp.obj - 0001:0008f571 __ehhandler$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 10090571 f main.cpp.obj - 0001:0008f5a0 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$4 100905a0 f main.cpp.obj - 0001:0008f5a8 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$21 100905a8 f main.cpp.obj - 0001:0008f5ba __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$22 100905ba f main.cpp.obj - 0001:0008f5dc __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$6 100905dc f main.cpp.obj - 0001:0008f5fe __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$7 100905fe f main.cpp.obj - 0001:0008f606 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$8 10090606 f main.cpp.obj - 0001:0008f60e __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$10 1009060e f main.cpp.obj - 0001:0008f616 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$11 10090616 f main.cpp.obj - 0001:0008f61e __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$12 1009061e f main.cpp.obj - 0001:0008f626 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$13 10090626 f main.cpp.obj - 0001:0008f62e __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$14 1009062e f main.cpp.obj - 0001:0008f636 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$15 10090636 f main.cpp.obj - 0001:0008f63e __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$16 1009063e f main.cpp.obj - 0001:0008f649 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$17 10090649 f main.cpp.obj - 0001:0008f654 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$9 10090654 f main.cpp.obj - 0001:0008f661 __ehhandler$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 10090661 f main.cpp.obj - 0001:0008f690 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$4 10090690 f main.cpp.obj - 0001:0008f698 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$21 10090698 f main.cpp.obj - 0001:0008f6aa __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$22 100906aa f main.cpp.obj - 0001:0008f6cc __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$6 100906cc f main.cpp.obj - 0001:0008f6ee __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$7 100906ee f main.cpp.obj - 0001:0008f6f6 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$8 100906f6 f main.cpp.obj - 0001:0008f6fe __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$10 100906fe f main.cpp.obj - 0001:0008f706 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$11 10090706 f main.cpp.obj - 0001:0008f70e __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$12 1009070e f main.cpp.obj - 0001:0008f716 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$13 10090716 f main.cpp.obj - 0001:0008f71e __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$14 1009071e f main.cpp.obj - 0001:0008f726 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$15 10090726 f main.cpp.obj - 0001:0008f72e __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$16 1009072e f main.cpp.obj - 0001:0008f739 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$17 10090739 f main.cpp.obj - 0001:0008f744 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$9 10090744 f main.cpp.obj - 0001:0008f751 __ehhandler$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 10090751 f main.cpp.obj - 0001:0008f780 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$4 10090780 f main.cpp.obj - 0001:0008f788 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$21 10090788 f main.cpp.obj - 0001:0008f79a __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$22 1009079a f main.cpp.obj - 0001:0008f7bc __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$6 100907bc f main.cpp.obj - 0001:0008f7de __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$7 100907de f main.cpp.obj - 0001:0008f7e6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$8 100907e6 f main.cpp.obj - 0001:0008f7ee __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$10 100907ee f main.cpp.obj - 0001:0008f7f6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$11 100907f6 f main.cpp.obj - 0001:0008f7fe __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$12 100907fe f main.cpp.obj - 0001:0008f806 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$13 10090806 f main.cpp.obj - 0001:0008f80e __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$14 1009080e f main.cpp.obj - 0001:0008f816 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$15 10090816 f main.cpp.obj - 0001:0008f81e __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$16 1009081e f main.cpp.obj - 0001:0008f829 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$17 10090829 f main.cpp.obj - 0001:0008f834 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$9 10090834 f main.cpp.obj - 0001:0008f841 __ehhandler$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 10090841 f main.cpp.obj - 0001:0008f870 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$4 10090870 f main.cpp.obj - 0001:0008f878 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$21 10090878 f main.cpp.obj - 0001:0008f88a __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$22 1009088a f main.cpp.obj - 0001:0008f8ac __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$6 100908ac f main.cpp.obj - 0001:0008f8ce __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$7 100908ce f main.cpp.obj - 0001:0008f8d6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$8 100908d6 f main.cpp.obj - 0001:0008f8de __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$10 100908de f main.cpp.obj - 0001:0008f8e6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$11 100908e6 f main.cpp.obj - 0001:0008f8ee __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$12 100908ee f main.cpp.obj - 0001:0008f8f6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$13 100908f6 f main.cpp.obj - 0001:0008f8fe __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$14 100908fe f main.cpp.obj - 0001:0008f906 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$15 10090906 f main.cpp.obj - 0001:0008f90e __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$16 1009090e f main.cpp.obj - 0001:0008f919 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$17 10090919 f main.cpp.obj - 0001:0008f924 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$9 10090924 f main.cpp.obj - 0001:0008f931 __ehhandler$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 10090931 f main.cpp.obj - 0001:0008f960 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$4 10090960 f main.cpp.obj - 0001:0008f968 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$21 10090968 f main.cpp.obj - 0001:0008f97a __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$22 1009097a f main.cpp.obj - 0001:0008f99c __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$6 1009099c f main.cpp.obj - 0001:0008f9be __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$7 100909be f main.cpp.obj - 0001:0008f9c6 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$8 100909c6 f main.cpp.obj - 0001:0008f9ce __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$10 100909ce f main.cpp.obj - 0001:0008f9d6 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$11 100909d6 f main.cpp.obj - 0001:0008f9de __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$12 100909de f main.cpp.obj - 0001:0008f9e6 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$13 100909e6 f main.cpp.obj - 0001:0008f9ee __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$14 100909ee f main.cpp.obj - 0001:0008f9f6 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$15 100909f6 f main.cpp.obj - 0001:0008f9fe __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$16 100909fe f main.cpp.obj - 0001:0008fa09 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$17 10090a09 f main.cpp.obj - 0001:0008fa14 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$9 10090a14 f main.cpp.obj - 0001:0008fa21 __ehhandler$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 10090a21 f main.cpp.obj - 0001:0008fa50 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$4 10090a50 f main.cpp.obj - 0001:0008fa58 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$21 10090a58 f main.cpp.obj - 0001:0008fa6a __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$22 10090a6a f main.cpp.obj - 0001:0008fa8c __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$6 10090a8c f main.cpp.obj - 0001:0008faae __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$7 10090aae f main.cpp.obj - 0001:0008fab6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$8 10090ab6 f main.cpp.obj - 0001:0008fabe __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$10 10090abe f main.cpp.obj - 0001:0008fac6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$11 10090ac6 f main.cpp.obj - 0001:0008face __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$12 10090ace f main.cpp.obj - 0001:0008fad6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$13 10090ad6 f main.cpp.obj - 0001:0008fade __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$14 10090ade f main.cpp.obj - 0001:0008fae6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$15 10090ae6 f main.cpp.obj - 0001:0008faee __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$16 10090aee f main.cpp.obj - 0001:0008faf9 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$17 10090af9 f main.cpp.obj - 0001:0008fb04 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$9 10090b04 f main.cpp.obj - 0001:0008fb11 __ehhandler$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 10090b11 f main.cpp.obj - 0001:0008fb40 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$4 10090b40 f main.cpp.obj - 0001:0008fb48 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$21 10090b48 f main.cpp.obj - 0001:0008fb5a __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$22 10090b5a f main.cpp.obj - 0001:0008fb7c __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$6 10090b7c f main.cpp.obj - 0001:0008fb9e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$7 10090b9e f main.cpp.obj - 0001:0008fba6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$8 10090ba6 f main.cpp.obj - 0001:0008fbae __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$10 10090bae f main.cpp.obj - 0001:0008fbb6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$11 10090bb6 f main.cpp.obj - 0001:0008fbbe __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$12 10090bbe f main.cpp.obj - 0001:0008fbc6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$13 10090bc6 f main.cpp.obj - 0001:0008fbce __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$14 10090bce f main.cpp.obj - 0001:0008fbd6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$15 10090bd6 f main.cpp.obj - 0001:0008fbde __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$16 10090bde f main.cpp.obj - 0001:0008fbe9 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$17 10090be9 f main.cpp.obj - 0001:0008fbf4 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$9 10090bf4 f main.cpp.obj - 0001:0008fc01 __ehhandler$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 10090c01 f main.cpp.obj - 0001:0008fc30 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$4 10090c30 f main.cpp.obj - 0001:0008fc38 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$21 10090c38 f main.cpp.obj - 0001:0008fc4a __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$22 10090c4a f main.cpp.obj - 0001:0008fc6c __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$6 10090c6c f main.cpp.obj - 0001:0008fc8e __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$7 10090c8e f main.cpp.obj - 0001:0008fc96 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$8 10090c96 f main.cpp.obj - 0001:0008fc9e __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$10 10090c9e f main.cpp.obj - 0001:0008fca6 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$11 10090ca6 f main.cpp.obj - 0001:0008fcae __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$12 10090cae f main.cpp.obj - 0001:0008fcb6 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$13 10090cb6 f main.cpp.obj - 0001:0008fcbe __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$14 10090cbe f main.cpp.obj - 0001:0008fcc6 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$15 10090cc6 f main.cpp.obj - 0001:0008fcce __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$16 10090cce f main.cpp.obj - 0001:0008fcd9 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$17 10090cd9 f main.cpp.obj - 0001:0008fce4 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$9 10090ce4 f main.cpp.obj - 0001:0008fcf1 __ehhandler$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 10090cf1 f main.cpp.obj - 0001:0008fd20 __ehhandler$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 10090d20 f main.cpp.obj - 0001:0008fd40 __ehhandler$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 10090d40 f main.cpp.obj - 0001:0008fd60 __unwindfunclet$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z$0 10090d60 f main.cpp.obj - 0001:0008fd6d __ehhandler$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 10090d6d f main.cpp.obj - 0001:0008fd90 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10090d90 f main.cpp.obj - 0001:0008fd98 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10090d98 f main.cpp.obj - 0001:0008fdb1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10090db1 f main.cpp.obj - 0001:0008fdb9 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10090db9 f main.cpp.obj - 0001:0008fdc1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10090dc1 f main.cpp.obj - 0001:0008fdc9 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10090dc9 f main.cpp.obj - 0001:0008fdd1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10090dd1 f main.cpp.obj - 0001:0008fddd __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10090ddd f main.cpp.obj - 0001:0008fdec __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10090dec f main.cpp.obj - 0001:0008fdf9 __ehhandler$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10090df9 f main.cpp.obj - 0001:0008fe20 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10090e20 f main.cpp.obj - 0001:0008fe28 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10090e28 f main.cpp.obj - 0001:0008fe41 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10090e41 f main.cpp.obj - 0001:0008fe49 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10090e49 f main.cpp.obj - 0001:0008fe51 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10090e51 f main.cpp.obj - 0001:0008fe59 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10090e59 f main.cpp.obj - 0001:0008fe61 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10090e61 f main.cpp.obj - 0001:0008fe6d __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10090e6d f main.cpp.obj - 0001:0008fe7c __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10090e7c f main.cpp.obj - 0001:0008fe89 __ehhandler$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10090e89 f main.cpp.obj - 0001:0008feb0 __unwindfunclet$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z$0 10090eb0 f main.cpp.obj - 0001:0008fec4 __ehhandler$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 10090ec4 f main.cpp.obj - 0001:0008fef0 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$0 10090ef0 f main.cpp.obj - 0001:0008fef8 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$1 10090ef8 f main.cpp.obj - 0001:0008ff07 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$2 10090f07 f main.cpp.obj - 0001:0008ff14 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10090f14 f main.cpp.obj - 0001:0008ff40 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$0 10090f40 f main.cpp.obj - 0001:0008ff48 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$1 10090f48 f main.cpp.obj - 0001:0008ff57 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$2 10090f57 f main.cpp.obj - 0001:0008ff64 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 10090f64 f main.cpp.obj - 0001:0008ff90 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$0 10090f90 f main.cpp.obj - 0001:0008ff9b __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$1 10090f9b f main.cpp.obj - 0001:0008ffa3 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$2 10090fa3 f main.cpp.obj - 0001:0008ffab __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$3 10090fab f main.cpp.obj - 0001:0008ffb3 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$4 10090fb3 f main.cpp.obj - 0001:0008ffc0 __ehhandler$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 10090fc0 f main.cpp.obj - 0001:0008fff0 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$10 10090ff0 f main.cpp.obj - 0001:00090012 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$9 10091012 f main.cpp.obj - 0001:0009001d __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$0 1009101d f main.cpp.obj - 0001:00090028 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$1 10091028 f main.cpp.obj - 0001:00090030 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$2 10091030 f main.cpp.obj - 0001:00090038 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$3 10091038 f main.cpp.obj - 0001:00090040 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$4 10091040 f main.cpp.obj - 0001:0009004d __ehhandler$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 1009104d f main.cpp.obj - 0001:00090080 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$4 10091080 f main.cpp.obj - 0001:00090099 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$3 10091099 f main.cpp.obj - 0001:000900a9 __ehhandler$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 100910a9 f main.cpp.obj - 0001:000900d0 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$0 100910d0 f main.cpp.obj - 0001:000900d8 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$1 100910d8 f main.cpp.obj - 0001:000900e5 __ehhandler$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 100910e5 f main.cpp.obj - 0001:00090110 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 10091110 f main.cpp.obj - 0001:00090118 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 10091118 f main.cpp.obj - 0001:00090127 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 10091127 f main.cpp.obj - 0001:00090134 __ehhandler$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 10091134 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:00090160 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$0 10091160 f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:0009016b __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$13 1009116b f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:00090173 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$1 10091173 f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:0009017e __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$2 1009117e f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090189 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$3 10091189 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:00090194 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$4 10091194 f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:0009019f __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$5 1009119f f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901aa __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$7 100911aa f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901b5 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$8 100911b5 f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901bd __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$9 100911bd f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901c5 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$10 100911c5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:000901d5 __ehhandler$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 100911d5 f main.cpp.obj - 0001:00090200 __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$0 10091200 f main.cpp.obj - 0001:0009021c __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$1 1009121c f main.cpp.obj - 0001:0009022c __ehhandler$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 1009122c f main.cpp.obj - 0001:00090250 __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$0 10091250 f main.cpp.obj - 0001:0009026c __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$1 1009126c f main.cpp.obj - 0001:0009027c __ehhandler$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 1009127c f main.cpp.obj - 0001:000902a0 __unwindfunclet$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 100912a0 f main.cpp.obj - 0001:000902a0 __unwindfunclet$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 100912a0 f main.cpp.obj - 0001:000902c1 __ehhandler$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100912c1 f main.cpp.obj - 0001:000902c1 __ehhandler$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100912c1 f main.cpp.obj - 0001:000902e0 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$0 100912e0 f main.cpp.obj - 0001:000902fc __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$1 100912fc f main.cpp.obj - 0001:00090318 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$2 10091318 f main.cpp.obj - 0001:00090325 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 10091325 f main.cpp.obj - 0001:00090350 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$0 10091350 f main.cpp.obj - 0001:0009036c __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$1 1009136c f main.cpp.obj - 0001:00090388 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$2 10091388 f main.cpp.obj - 0001:00090395 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 10091395 f main.cpp.obj - 0001:000903c0 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$0 100913c0 f main.cpp.obj - 0001:000903c0 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$0 100913c0 f main.cpp.obj - 0001:000903c0 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$0 100913c0 f main.cpp.obj - 0001:000903c0 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$0 100913c0 f main.cpp.obj - 0001:000903c8 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$1 100913c8 f main.cpp.obj - 0001:000903c8 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$1 100913c8 f main.cpp.obj - 0001:000903c8 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$1 100913c8 f main.cpp.obj - 0001:000903c8 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$1 100913c8 f main.cpp.obj - 0001:000903d0 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$2 100913d0 f main.cpp.obj - 0001:000903d0 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$2 100913d0 f main.cpp.obj - 0001:000903d0 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$2 100913d0 f main.cpp.obj - 0001:000903d0 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$2 100913d0 f main.cpp.obj - 0001:000903d8 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$3 100913d8 f main.cpp.obj - 0001:000903d8 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$3 100913d8 f main.cpp.obj - 0001:000903d8 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$3 100913d8 f main.cpp.obj - 0001:000903d8 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$3 100913d8 f main.cpp.obj - 0001:000903e5 __ehhandler$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 100913e5 f main.cpp.obj - 0001:000903e5 __ehhandler$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 100913e5 f main.cpp.obj - 0001:000903e5 __ehhandler$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 100913e5 f main.cpp.obj - 0001:000903e5 __ehhandler$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 100913e5 f main.cpp.obj - 0001:00090410 __unwindfunclet$??0Error@hadesmem@@QAE@ABV01@@Z$0 10091410 f main.cpp.obj - 0001:00090431 __ehhandler$??0Error@hadesmem@@QAE@ABV01@@Z 10091431 f main.cpp.obj - 0001:00090450 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$0 10091450 f main.cpp.obj - 0001:00090458 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$3 10091458 f main.cpp.obj - 0001:00090460 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$4 10091460 f main.cpp.obj - 0001:00090468 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$5 10091468 f main.cpp.obj - 0001:00090470 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$6 10091470 f main.cpp.obj - 0001:0009047b __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$8 1009147b f main.cpp.obj - 0001:00090483 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$9 10091483 f main.cpp.obj - 0001:0009048b __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$10 1009148b f main.cpp.obj - 0001:0009049b __ehhandler$??0Process@hadesmem@@QAE@K@Z 1009149b f main.cpp.obj - 0001:000904d0 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$2 100914d0 f main.cpp.obj - 0001:000904d8 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$3 100914d8 f main.cpp.obj - 0001:000904e0 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$4 100914e0 f main.cpp.obj - 0001:000904ed __ehhandler$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100914ed f main.cpp.obj - 0001:00090520 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$2 10091520 f main.cpp.obj - 0001:0009052b __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$3 1009152b f main.cpp.obj - 0001:00090533 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$4 10091533 f main.cpp.obj - 0001:0009053e __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$5 1009153e f main.cpp.obj - 0001:00090549 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$15 10091549 f main.cpp.obj - 0001:00090554 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$6 10091554 f main.cpp.obj - 0001:0009055f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$42 1009155f f main.cpp.obj - 0001:00090567 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$7 10091567 f main.cpp.obj - 0001:0009056f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$30 1009156f f main.cpp.obj - 0001:00090577 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$31 10091577 f main.cpp.obj - 0001:00090582 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$32 10091582 f main.cpp.obj - 0001:0009058a __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$33 1009158a f main.cpp.obj - 0001:00090595 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$35 10091595 f main.cpp.obj - 0001:0009059d __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$36 1009159d f main.cpp.obj - 0001:000905a8 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$37 100915a8 f main.cpp.obj - 0001:000905b0 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$38 100915b0 f main.cpp.obj - 0001:000905bb __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$39 100915bb f main.cpp.obj - 0001:000905c3 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$40 100915c3 f main.cpp.obj - 0001:000905cb __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$41 100915cb f main.cpp.obj - 0001:000905d6 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$8 100915d6 f main.cpp.obj - 0001:000905de __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$9 100915de f main.cpp.obj - 0001:000905e6 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$10 100915e6 f main.cpp.obj - 0001:000905f6 __ehhandler$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100915f6 f main.cpp.obj - 0001:00090620 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$3 10091620 f main.cpp.obj - 0001:00090620 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$0 10091620 f main.cpp.obj - 0001:00090620 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$0 10091620 f main.cpp.obj - 0001:00090620 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 10091620 f main.cpp.obj - 0001:00090620 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 10091620 f main.cpp.obj - 0001:00090628 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$4 10091628 f main.cpp.obj - 0001:00090628 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$1 10091628 f main.cpp.obj - 0001:00090628 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$1 10091628 f main.cpp.obj - 0001:00090628 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 10091628 f main.cpp.obj - 0001:00090628 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$1 10091628 f main.cpp.obj - 0001:00090630 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$5 10091630 f main.cpp.obj - 0001:00090630 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$2 10091630 f main.cpp.obj - 0001:00090630 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$2 10091630 f main.cpp.obj - 0001:00090630 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10091630 f main.cpp.obj - 0001:00090630 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 10091630 f main.cpp.obj - 0001:00090638 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$6 10091638 f main.cpp.obj - 0001:00090638 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$3 10091638 f main.cpp.obj - 0001:00090638 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$3 10091638 f main.cpp.obj - 0001:00090638 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10091638 f main.cpp.obj - 0001:00090638 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 10091638 f main.cpp.obj - 0001:00090645 __ehhandler$??0Thread@hadesmem@@QAE@K@Z 10091645 f main.cpp.obj - 0001:00090645 __ehhandler$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 10091645 f main.cpp.obj - 0001:00090645 __ehhandler$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 10091645 f main.cpp.obj - 0001:00090645 __ehhandler$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10091645 f main.cpp.obj - 0001:00090645 __ehhandler$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10091645 f main.cpp.obj - 0001:00090670 __unwindfunclet$??0error_info_container_impl@exception_detail@boost@@QAE@XZ$0 10091670 f main.cpp.obj - 0001:0009067d __ehhandler$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 1009167d f main.cpp.obj - 0001:000906a0 __unwindfunclet$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z$0 100916a0 f main.cpp.obj - 0001:000906ad __ehhandler$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 100916ad f main.cpp.obj - 0001:000906d0 __ehhandler$??1CDataStore@Nampower@@UAE@XZ 100916d0 f main.cpp.obj - 0001:000906d0 __ehhandler$??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100916d0 f main.cpp.obj - 0001:000906f0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$2 100916f0 f main.cpp.obj - 0001:000906f8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$3 100916f8 f main.cpp.obj - 0001:00090705 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 10091705 f main.cpp.obj - 0001:00090730 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$2 10091730 f main.cpp.obj - 0001:00090730 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$2 10091730 f main.cpp.obj - 0001:00090738 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$3 10091738 f main.cpp.obj - 0001:00090738 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$3 10091738 f main.cpp.obj - 0001:00090745 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 10091745 f main.cpp.obj - 0001:00090745 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 10091745 f main.cpp.obj - 0001:00090770 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$2 10091770 f main.cpp.obj - 0001:00090778 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$3 10091778 f main.cpp.obj - 0001:00090785 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 10091785 f main.cpp.obj - 0001:000907b0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$2 100917b0 f main.cpp.obj - 0001:000907b8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$3 100917b8 f main.cpp.obj - 0001:000907c5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100917c5 f main.cpp.obj - 0001:000907f0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$2 100917f0 f main.cpp.obj - 0001:000907f8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$3 100917f8 f main.cpp.obj - 0001:00090805 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 10091805 f main.cpp.obj - 0001:00090830 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$2 10091830 f main.cpp.obj - 0001:00090838 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$3 10091838 f main.cpp.obj - 0001:00090845 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 10091845 f main.cpp.obj - 0001:00090870 __unwindfunclet$??R@@QBE@XZ$0 10091870 f main.cpp.obj - 0001:00090878 __unwindfunclet$??R@@QBE@XZ$2 10091878 f main.cpp.obj - 0001:00090887 __unwindfunclet$??R@@QBE@XZ$3 10091887 f main.cpp.obj - 0001:000908a5 __ehhandler$??R@@QBE@XZ 100918a5 f main.cpp.obj - 0001:000908d0 __unwindfunclet$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 100918d0 f main.cpp.obj - 0001:000908d0 __unwindfunclet$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 100918d0 f main.cpp.obj - 0001:000908dd __ehhandler$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100918dd f main.cpp.obj - 0001:000908dd __ehhandler$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100918dd f main.cpp.obj - 0001:00090910 __unwindfunclet$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z$2 10091910 f main.cpp.obj - 0001:00090924 __ehhandler$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 10091924 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:00090950 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$12 10091950 f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:0009095b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$1 1009195b f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:00090966 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$14 10091966 f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:0009096e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$3 1009196e f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:00090976 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$4 10091976 f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:0009097e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$5 1009197e f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090989 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$7 10091989 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090991 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$8 10091991 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:00090999 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$9 10091999 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909a9 __ehhandler$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100919a9 f main.cpp.obj - 0001:000909e0 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 100919e0 f main.cpp.obj - 0001:000909ed __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100919ed f main.cpp.obj - 0001:00090a20 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 10091a20 f main.cpp.obj - 0001:00090a28 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$3 10091a28 f main.cpp.obj - 0001:00090a30 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$4 10091a30 f main.cpp.obj - 0001:00090a38 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$5 10091a38 f main.cpp.obj - 0001:00090a40 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$6 10091a40 f main.cpp.obj - 0001:00090a50 __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 10091a50 f main.cpp.obj - 0001:00090a80 __unwindfunclet$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$2 10091a80 f main.cpp.obj - 0001:00090a8d __ehhandler$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 10091a8d f main.cpp.obj - 0001:00090ac0 __unwindfunclet$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$2 10091ac0 f main.cpp.obj - 0001:00090acd __ehhandler$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 10091acd f main.cpp.obj - 0001:00090b00 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$0 10091b00 f main.cpp.obj - 0001:00090b19 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$1 10091b19 f main.cpp.obj - 0001:00090b21 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$2 10091b21 f main.cpp.obj - 0001:00090b29 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$3 10091b29 f main.cpp.obj - 0001:00090b31 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$4 10091b31 f main.cpp.obj - 0001:00090b3e __ehhandler$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 10091b3e f main.cpp.obj - 0001:00090b70 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$0 10091b70 f main.cpp.obj - 0001:00090b78 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$1 10091b78 f main.cpp.obj - 0001:00090b80 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$2 10091b80 f main.cpp.obj - 0001:00090b88 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$3 10091b88 f main.cpp.obj - 0001:00090b95 __ehhandler$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 10091b95 f main.cpp.obj - 0001:00090bc0 __unwindfunclet$?DoesItemMatch@Nampower@@YA_NIIPBD@Z$0 10091bc0 f items.cpp.obj - 0001:00090bc0 __unwindfunclet$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z$0 10091bc0 f main.cpp.obj - 0001:00090bc0 __unwindfunclet$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z$0 10091bc0 f pet.cpp.obj - 0001:00090bc0 __unwindfunclet$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z$0 10091bc0 f spell_scripts.cpp.obj - 0001:00090bc0 __unwindfunclet$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z$0 10091bc0 f spellcast.cpp.obj - 0001:00090bcd __ehhandler$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 10091bcd f items.cpp.obj - 0001:00090bcd __ehhandler$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 10091bcd f main.cpp.obj - 0001:00090bcd __ehhandler$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 10091bcd f pet.cpp.obj - 0001:00090bcd __ehhandler$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 10091bcd f spell_scripts.cpp.obj - 0001:00090bcd __ehhandler$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 10091bcd f spellcast.cpp.obj - 0001:00090c00 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$2 10091c00 f main.cpp.obj - 0001:00090c08 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$3 10091c08 f main.cpp.obj - 0001:00090c10 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$4 10091c10 f main.cpp.obj - 0001:00090c18 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$5 10091c18 f main.cpp.obj - 0001:00090c20 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$6 10091c20 f main.cpp.obj - 0001:00090c30 __ehhandler$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 10091c30 f main.cpp.obj - 0001:00090c60 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$2 10091c60 f main.cpp.obj - 0001:00090c79 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$3 10091c79 f main.cpp.obj - 0001:00090c84 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$0 10091c84 f main.cpp.obj - 0001:00090c94 __ehhandler$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 10091c94 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ$0 10091cc0 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cc8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ$1 10091cc8 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cd0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ$2 10091cd0 f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090cdd __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 10091cdd f main.cpp.obj - 0001:00090d10 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$0 10091d10 f main.cpp.obj - 0001:00090d18 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$1 10091d18 f main.cpp.obj - 0001:00090d20 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$2 10091d20 f main.cpp.obj - 0001:00090d2b __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$3 10091d2b f main.cpp.obj - 0001:00090d33 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$4 10091d33 f main.cpp.obj - 0001:00090d3b __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$5 10091d3b f main.cpp.obj - 0001:00090d43 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$6 10091d43 f main.cpp.obj - 0001:00090d53 __ehhandler$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 10091d53 f main.cpp.obj - 0001:00090d80 __unwindfunclet$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 10091d80 f main.cpp.obj - 0001:00090d90 __ehhandler$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 10091d90 f main.cpp.obj - 0001:00090dc0 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 10091dc0 f main.cpp.obj - 0001:00090dcb __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 10091dcb f main.cpp.obj - 0001:00090dd6 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10091dd6 f main.cpp.obj - 0001:00090dde __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10091dde f main.cpp.obj - 0001:00090de9 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$4 10091de9 f main.cpp.obj - 0001:00090df1 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$5 10091df1 f main.cpp.obj - 0001:00090dfc __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$6 10091dfc f main.cpp.obj - 0001:00090e04 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$7 10091e04 f main.cpp.obj - 0001:00090e0f __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$8 10091e0f f main.cpp.obj - 0001:00090e17 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$9 10091e17 f main.cpp.obj - 0001:00090e27 __ehhandler$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10091e27 f main.cpp.obj - 0001:00090e60 __unwindfunclet$?CacheItemNameToId@Nampower@@YAXPBDI@Z$0 10091e60 f items.cpp.obj - 0001:00090e60 __unwindfunclet$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z$0 10091e60 f main.cpp.obj - 0001:00090e60 __unwindfunclet$?addCustomEvent@Nampower@@YAXIPAD@Z$0 10091e60 f main.cpp.obj - 0001:00090e60 __unwindfunclet$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z$0 10091e60 f pet.cpp.obj - 0001:00090e60 __unwindfunclet$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10091e60 f spell_scripts.cpp.obj - 0001:00090e60 __unwindfunclet$?TriggerQuickcast@Nampower@@YAXXZ$0 10091e60 f spellcast.cpp.obj - 0001:00090e6d __ehhandler$?CacheItemNameToId@Nampower@@YAXPBDI@Z 10091e6d f items.cpp.obj - 0001:00090e6d __ehhandler$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 10091e6d f main.cpp.obj - 0001:00090e6d __ehhandler$?addCustomEvent@Nampower@@YAXIPAD@Z 10091e6d f main.cpp.obj - 0001:00090e6d __ehhandler$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 10091e6d f pet.cpp.obj - 0001:00090e6d __ehhandler$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10091e6d f spell_scripts.cpp.obj - 0001:00090e6d __ehhandler$?TriggerQuickcast@Nampower@@YAXXZ 10091e6d f spellcast.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ea0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$0 10091ea0 f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ead __ehhandler$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10091ead f main.cpp.obj - 0001:00090ed0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10091ed0 f main.cpp.obj - 0001:00090edd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10091edd f main.cpp.obj - 0001:00090f10 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$2 10091f10 f main.cpp.obj - 0001:00090f1d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10091f1d f main.cpp.obj - 0001:00090f50 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10091f50 f main.cpp.obj - 0001:00090f5d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10091f5d f main.cpp.obj - 0001:00090f90 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$2 10091f90 f main.cpp.obj - 0001:00090f9d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10091f9d f main.cpp.obj - 0001:00090fd0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$2 10091fd0 f main.cpp.obj - 0001:00090fdd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10091fdd f main.cpp.obj - 0001:00091010 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$2 10092010 f main.cpp.obj - 0001:0009101d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 1009201d f main.cpp.obj - 0001:00091050 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$2 10092050 f main.cpp.obj - 0001:0009105d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 1009205d f main.cpp.obj - 0001:00091090 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$2 10092090 f main.cpp.obj - 0001:0009109d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 1009209d f main.cpp.obj - 0001:000910d0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$2 100920d0 f main.cpp.obj - 0001:000910dd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100920dd f main.cpp.obj - 0001:00091110 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$2 10092110 f main.cpp.obj - 0001:0009111d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 1009211d f main.cpp.obj - 0001:00091150 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$2 10092150 f main.cpp.obj - 0001:0009115d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1009215d f main.cpp.obj - 0001:00091190 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$2 10092190 f main.cpp.obj - 0001:0009119d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 1009219d f main.cpp.obj - 0001:000911d0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$2 100921d0 f main.cpp.obj - 0001:000911dd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100921dd f main.cpp.obj - 0001:00091210 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$2 10092210 f main.cpp.obj - 0001:0009121d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1009221d f main.cpp.obj - 0001:00091250 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$2 10092250 f main.cpp.obj - 0001:0009125d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1009225d f main.cpp.obj - 0001:00091290 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$2 10092290 f main.cpp.obj - 0001:0009129d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 1009229d f main.cpp.obj - 0001:000912d0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$2 100922d0 f main.cpp.obj - 0001:000912dd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100922dd f main.cpp.obj - 0001:00091310 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$2 10092310 f main.cpp.obj - 0001:0009131d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1009231d f main.cpp.obj - 0001:00091350 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$2 10092350 f main.cpp.obj - 0001:0009135d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1009235d f main.cpp.obj - 0001:00091390 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$2 10092390 f main.cpp.obj - 0001:0009139d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1009239d f main.cpp.obj - 0001:000913d0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$2 100923d0 f main.cpp.obj - 0001:000913dd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100923dd f main.cpp.obj - 0001:00091410 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10092410 f main.cpp.obj - 0001:0009141d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1009241d f main.cpp.obj - 0001:00091450 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$2 10092450 f main.cpp.obj - 0001:0009145d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 1009245d f main.cpp.obj - 0001:00091490 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10092490 f main.cpp.obj - 0001:0009149d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1009249d f main.cpp.obj - 0001:000914d0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$2 100924d0 f main.cpp.obj - 0001:000914dd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100924dd f main.cpp.obj - 0001:00091510 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$2 10092510 f main.cpp.obj - 0001:0009151d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 1009251d f main.cpp.obj - 0001:00091550 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$2 10092550 f main.cpp.obj - 0001:0009155d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 1009255d f main.cpp.obj - 0001:00091590 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$2 10092590 f main.cpp.obj - 0001:0009159d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 1009259d f main.cpp.obj - 0001:000915d0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$2 100925d0 f main.cpp.obj - 0001:000915dd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100925dd f main.cpp.obj - 0001:00091610 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$2 10092610 f main.cpp.obj - 0001:0009161d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 1009261d f main.cpp.obj - 0001:00091650 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$2 10092650 f main.cpp.obj - 0001:0009165d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 1009265d f main.cpp.obj - 0001:00091690 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$2 10092690 f main.cpp.obj - 0001:0009169d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 1009269d f main.cpp.obj - 0001:000916d0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$2 100926d0 f main.cpp.obj - 0001:000916dd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100926dd f main.cpp.obj - 0001:00091710 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$3 10092710 f main.cpp.obj - 0001:00091718 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$2 10092718 f main.cpp.obj - 0001:00091725 __ehhandler$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 10092725 f main.cpp.obj - 0001:00091750 __unwindfunclet$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$2 10092750 f main.cpp.obj - 0001:0009175d __ehhandler$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 1009275d f main.cpp.obj - 0001:00091790 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$2 10092790 f main.cpp.obj - 0001:00091798 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$3 10092798 f main.cpp.obj - 0001:000917a0 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$4 100927a0 f main.cpp.obj - 0001:000917a8 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$5 100927a8 f main.cpp.obj - 0001:000917b0 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$6 100927b0 f main.cpp.obj - 0001:000917c0 __ehhandler$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100927c0 f main.cpp.obj - 0001:000917f0 __unwindfunclet$?SetSelectionTarget@Nampower@@YAX_K@Z$0 100927f0 f main.cpp.obj - 0001:000917fd __ehhandler$?SetSelectionTarget@Nampower@@YAX_K@Z 100927fd f main.cpp.obj - 0001:00091820 __unwindfunclet$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z$0 10092820 f main.cpp.obj - 0001:00091820 __unwindfunclet$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ$0 10092820 f main.cpp.obj - 0001:00091820 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ$0 10092820 f main.cpp.obj - 0001:0009182d __ehhandler$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 1009282d f main.cpp.obj - 0001:0009182d __ehhandler$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 1009282d f main.cpp.obj - 0001:0009182d __ehhandler$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 1009282d f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z$0 10092850 f main.cpp.obj - 0001:00091850 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z$0 10092850 f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 1009285d f main.cpp.obj - 0001:0009185d __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 1009285d f main.cpp.obj - 0001:00091880 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z$0 10092880 f main.cpp.obj - 0001:00091880 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z$0 10092880 f main.cpp.obj - 0001:00091880 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z$0 10092880 f main.cpp.obj - 0001:00091880 __unwindfunclet$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z$0 10092880 f main.cpp.obj - 0001:00091880 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z$0 10092880 f main.cpp.obj - 0001:00091880 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z$0 10092880 f main.cpp.obj - 0001:00091880 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z$0 10092880 f main.cpp.obj - 0001:0009188d __ehhandler$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 1009288d f main.cpp.obj - 0001:0009188d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 1009288d f main.cpp.obj - 0001:0009188d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 1009288d f main.cpp.obj - 0001:0009188d __ehhandler$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 1009288d f main.cpp.obj - 0001:0009188d __ehhandler$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 1009288d f main.cpp.obj - 0001:0009188d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 1009288d f main.cpp.obj - 0001:0009188d __ehhandler$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 1009288d f main.cpp.obj - 0001:000918b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z$0 100928b0 f main.cpp.obj - 0001:000918b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z$0 100928b0 f main.cpp.obj - 0001:000918bd __ehhandler$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 100928bd f main.cpp.obj - 0001:000918bd __ehhandler$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 100928bd f main.cpp.obj - 0001:000918e0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z$0 100928e0 f main.cpp.obj - 0001:000918e0 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z$0 100928e0 f main.cpp.obj - 0001:000918ed __ehhandler$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 100928ed f main.cpp.obj - 0001:000918ed __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 100928ed f main.cpp.obj - 0001:00091910 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z$0 10092910 f main.cpp.obj - 0001:0009191d __ehhandler$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 1009291d f main.cpp.obj - 0001:00091940 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$2 10092940 f main.cpp.obj - 0001:00091948 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$3 10092948 f main.cpp.obj - 0001:00091950 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$4 10092950 f main.cpp.obj - 0001:00091958 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$5 10092958 f main.cpp.obj - 0001:00091965 __ehhandler$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 10092965 f main.cpp.obj - 0001:00091990 __unwindfunclet$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 10092990 f main.cpp.obj - 0001:0009199d __ehhandler$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 1009299d f main.cpp.obj - 0001:000919c0 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$0 100929c0 f main.cpp.obj - 0001:000919c8 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$1 100929c8 f main.cpp.obj - 0001:000919d0 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$7 100929d0 f main.cpp.obj - 0001:000919d8 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$2 100929d8 f main.cpp.obj - 0001:000919e0 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$3 100929e0 f main.cpp.obj - 0001:000919e8 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$4 100929e8 f main.cpp.obj - 0001:000919f8 __ehhandler$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 100929f8 f main.cpp.obj - 0001:00091a30 __unwindfunclet$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 10092a30 f main.cpp.obj - 0001:00091a3d __ehhandler$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 10092a3d f main.cpp.obj - 0001:00091a70 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 10092a70 f main.cpp.obj - 0001:00091a7b __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 10092a7b f main.cpp.obj - 0001:00091a83 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 10092a83 f main.cpp.obj - 0001:00091a8e __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$4 10092a8e f main.cpp.obj - 0001:00091a96 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$5 10092a96 f main.cpp.obj - 0001:00091aa1 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$6 10092aa1 f main.cpp.obj - 0001:00091aa9 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$7 10092aa9 f main.cpp.obj - 0001:00091ab4 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$8 10092ab4 f main.cpp.obj - 0001:00091abc __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$9 10092abc f main.cpp.obj - 0001:00091acc __ehhandler$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10092acc f main.cpp.obj - 0001:00091b00 __unwindfunclet$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 10092b00 f main.cpp.obj - 0001:00091b0d __ehhandler$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 10092b0d f main.cpp.obj - 0001:00091b40 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$0 10092b40 f main.cpp.obj - 0001:00091b4f __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$1 10092b4f f main.cpp.obj - 0001:00091b68 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$2 10092b68 f main.cpp.obj - 0001:00091b70 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$4 10092b70 f main.cpp.obj - 0001:00091b7d __ehhandler$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 10092b7d f main.cpp.obj - 0001:00091ba0 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$0 10092ba0 f main.cpp.obj - 0001:00091ba8 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$1 10092ba8 f main.cpp.obj - 0001:00091bb0 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$2 10092bb0 f main.cpp.obj - 0001:00091bb8 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$3 10092bb8 f main.cpp.obj - 0001:00091bc5 __ehhandler$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 10092bc5 f main.cpp.obj - 0001:00091bf0 __ehhandler$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 10092bf0 f main.cpp.obj - 0001:00091c10 __ehhandler$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 10092c10 f main.cpp.obj - 0001:00091c40 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$0 10092c40 f main.cpp.obj - 0001:00091c48 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$1 10092c48 f main.cpp.obj - 0001:00091c55 __ehhandler$?checkForStopChanneling@Nampower@@YAXXZ 10092c55 f main.cpp.obj - 0001:00091c80 __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 10092c80 f main.cpp.obj - 0001:00091c8f __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 10092c8f f main.cpp.obj - 0001:00091cab __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 10092cab f main.cpp.obj - 0001:00091cb8 __ehhandler$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10092cb8 f main.cpp.obj - 0001:00091ce0 __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 10092ce0 f main.cpp.obj - 0001:00091cef __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 10092cef f main.cpp.obj - 0001:00091d0b __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 10092d0b f main.cpp.obj - 0001:00091d18 __ehhandler$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10092d18 f main.cpp.obj - 0001:00091d40 __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$0 10092d40 f main.cpp.obj - 0001:00091d4f __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$1 10092d4f f main.cpp.obj - 0001:00091d5c __ehhandler$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 10092d5c f main.cpp.obj - 0001:00091d80 __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$0 10092d80 f main.cpp.obj - 0001:00091d8f __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$1 10092d8f f main.cpp.obj - 0001:00091d9c __ehhandler$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 10092d9c f main.cpp.obj - 0001:00091dc0 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$0 10092dc0 f main.cpp.obj - 0001:00091dd9 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$1 10092dd9 f main.cpp.obj - 0001:00091de8 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$4 10092de8 f main.cpp.obj - 0001:00091df0 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$2 10092df0 f main.cpp.obj - 0001:00091df8 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$3 10092df8 f main.cpp.obj - 0001:00091e00 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$11 10092e00 f main.cpp.obj - 0001:00091e0d __ehhandler$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 10092e0d f main.cpp.obj - 0001:00091e30 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$0 10092e30 f main.cpp.obj - 0001:00091e38 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$1 10092e38 f main.cpp.obj - 0001:00091e45 __ehhandler$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 10092e45 f main.cpp.obj - 0001:00091e70 __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$0 10092e70 f main.cpp.obj - 0001:00091e7b __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$1 10092e7b f main.cpp.obj - 0001:00091e88 __ehhandler$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 10092e88 f main.cpp.obj - 0001:00091ec0 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$1 10092ec0 f main.cpp.obj - 0001:00091ecb __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$2 10092ecb f main.cpp.obj - 0001:00091ed3 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$3 10092ed3 f main.cpp.obj - 0001:00091edb __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$4 10092edb f main.cpp.obj - 0001:00091ee8 __ehhandler$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 10092ee8 f main.cpp.obj - 0001:00091f20 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z$0 10092f20 f main.cpp.obj - 0001:00091f20 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z$0 10092f20 f main.cpp.obj - 0001:00091f2d __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 10092f2d f main.cpp.obj - 0001:00091f2d __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 10092f2d f main.cpp.obj - 0001:00091f60 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$0 10092f60 f main.cpp.obj - 0001:00091f68 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$1 10092f68 f main.cpp.obj - 0001:00091f75 __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 10092f75 f main.cpp.obj - 0001:00091fa0 __unwindfunclet$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z$0 10092fa0 f main.cpp.obj - 0001:00091fad __ehhandler$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 10092fad f main.cpp.obj - 0001:00091fe0 __unwindfunclet$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$2 10092fe0 f main.cpp.obj - 0001:00091fed __ehhandler$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 10092fed f main.cpp.obj - 0001:00092010 __unwindfunclet$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$2 10093010 f main.cpp.obj - 0001:00092024 __ehhandler$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 10093024 f main.cpp.obj - 0001:00092050 __unwindfunclet$?initHooks@Nampower@@YAXXZ$0 10093050 f main.cpp.obj - 0001:00092058 __unwindfunclet$?initHooks@Nampower@@YAXXZ$1 10093058 f main.cpp.obj - 0001:00092060 __unwindfunclet$?initHooks@Nampower@@YAXXZ$51 10093060 f main.cpp.obj - 0001:0009206d __ehhandler$?initHooks@Nampower@@YAXXZ 1009306d f main.cpp.obj - 0001:000920a0 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$0 100930a0 f main.cpp.obj - 0001:000920ab __unwindfunclet$?loadConfig@Nampower@@YAXXZ$1 100930ab f main.cpp.obj - 0001:000920b6 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$2 100930b6 f main.cpp.obj - 0001:000920c1 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$3 100930c1 f main.cpp.obj - 0001:000920cc __unwindfunclet$?loadConfig@Nampower@@YAXXZ$4 100930cc f main.cpp.obj - 0001:000920d7 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$5 100930d7 f main.cpp.obj - 0001:000920e2 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$6 100930e2 f main.cpp.obj - 0001:000920ed __unwindfunclet$?loadConfig@Nampower@@YAXXZ$7 100930ed f main.cpp.obj - 0001:000920f8 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$8 100930f8 f main.cpp.obj - 0001:00092103 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$9 10093103 f main.cpp.obj - 0001:0009210e __unwindfunclet$?loadConfig@Nampower@@YAXXZ$10 1009310e f main.cpp.obj - 0001:00092119 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$11 10093119 f main.cpp.obj - 0001:00092129 __ehhandler$?loadConfig@Nampower@@YAXXZ 10093129 f main.cpp.obj - 0001:00092160 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$0 10093160 f main.cpp.obj - 0001:00092168 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$1 10093168 f main.cpp.obj - 0001:00092175 __ehhandler$?loadUserVar@Nampower@@YAXPBD@Z 10093175 f main.cpp.obj - 0001:000921a0 __unwindfunclet$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z$0 100931a0 f main.cpp.obj - 0001:000921ad __ehhandler$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 100931ad f main.cpp.obj - 0001:000921d0 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$0 100931d0 f main.cpp.obj - 0001:000921d8 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$1 100931d8 f main.cpp.obj - 0001:000921e0 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$2 100931e0 f main.cpp.obj - 0001:000921ed __ehhandler$?processQueues@Nampower@@YA_NXZ 100931ed f main.cpp.obj - 0001:00092220 __unwindfunclet$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$2 10093220 f main.cpp.obj - 0001:0009222d __ehhandler$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 1009322d f main.cpp.obj - 0001:00092250 __unwindfunclet$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z$0 10093250 f main.cpp.obj - 0001:0009225d __ehhandler$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 1009325d f main.cpp.obj - 0001:00092280 __unwindfunclet$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z$2 10093280 f main.cpp.obj - 0001:0009228d __ehhandler$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 1009328d f main.cpp.obj - 0001:000922b0 __unwindfunclet$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ$0 100932b0 f main.cpp.obj - 0001:000922ce __ehhandler$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 100932ce f main.cpp.obj - 0001:000922f0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$0 100932f0 f main.cpp.obj - 0001:000922f8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$1 100932f8 f main.cpp.obj - 0001:00092300 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$2 10093300 f main.cpp.obj - 0001:00092308 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$3 10093308 f main.cpp.obj - 0001:00092310 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$4 10093310 f main.cpp.obj - 0001:00092318 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$5 10093318 f main.cpp.obj - 0001:00092320 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$6 10093320 f main.cpp.obj - 0001:00092328 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$7 10093328 f main.cpp.obj - 0001:00092330 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$8 10093330 f main.cpp.obj - 0001:00092338 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$9 10093338 f main.cpp.obj - 0001:00092340 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$10 10093340 f main.cpp.obj - 0001:00092348 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$11 10093348 f main.cpp.obj - 0001:00092350 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$12 10093350 f main.cpp.obj - 0001:00092358 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$13 10093358 f main.cpp.obj - 0001:00092360 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$14 10093360 f main.cpp.obj - 0001:00092368 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$15 10093368 f main.cpp.obj - 0001:00092370 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$16 10093370 f main.cpp.obj - 0001:00092378 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$17 10093378 f main.cpp.obj - 0001:00092380 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$18 10093380 f main.cpp.obj - 0001:00092388 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$19 10093388 f main.cpp.obj - 0001:00092390 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$20 10093390 f main.cpp.obj - 0001:00092398 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$21 10093398 f main.cpp.obj - 0001:000923a0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$22 100933a0 f main.cpp.obj - 0001:000923a8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$23 100933a8 f main.cpp.obj - 0001:000923b0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$24 100933b0 f main.cpp.obj - 0001:000923b8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$25 100933b8 f main.cpp.obj - 0001:000923c0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$26 100933c0 f main.cpp.obj - 0001:000923c8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$27 100933c8 f main.cpp.obj - 0001:000923d0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$28 100933d0 f main.cpp.obj - 0001:000923d8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$29 100933d8 f main.cpp.obj - 0001:000923e0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$30 100933e0 f main.cpp.obj - 0001:000923e8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$31 100933e8 f main.cpp.obj - 0001:000923f0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$32 100933f0 f main.cpp.obj - 0001:000923f8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$33 100933f8 f main.cpp.obj - 0001:00092400 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$34 10093400 f main.cpp.obj - 0001:00092408 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$35 10093408 f main.cpp.obj - 0001:00092410 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$36 10093410 f main.cpp.obj - 0001:00092418 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$37 10093418 f main.cpp.obj - 0001:00092420 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$38 10093420 f main.cpp.obj - 0001:00092428 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$39 10093428 f main.cpp.obj - 0001:00092430 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$40 10093430 f main.cpp.obj - 0001:0009243d __ehhandler$?updateFromCvar@Nampower@@YAXPBD0@Z 1009343d f main.cpp.obj - 0001:00092470 __unwindfunclet$_Load$4 10093470 f main.cpp.obj - 0001:00092478 __unwindfunclet$_Load$3 10093478 f main.cpp.obj - 0001:00092485 __ehhandler$_Load 10093485 f main.cpp.obj - 0001:000924b0 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 100934b0 f helper.cpp.obj - 0001:000924b8 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 100934b8 f helper.cpp.obj - 0001:000924c5 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100934c5 f helper.cpp.obj - 0001:000924f0 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$1 100934f0 f helper.cpp.obj - 0001:000924f8 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$0 100934f8 f helper.cpp.obj - 0001:00092505 __ehhandler$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 10093505 f helper.cpp.obj - 0001:00092530 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$0 10093530 f helper.cpp.obj - 0001:0009253c __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$2 1009353c f helper.cpp.obj - 0001:00092546 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$3 10093546 f helper.cpp.obj - 0001:00092555 __ehhandler$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 10093555 f helper.cpp.obj - 0001:00092580 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$1 10093580 f helper.cpp.obj - 0001:00092588 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$3 10093588 f helper.cpp.obj - 0001:00092590 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$0 10093590 f helper.cpp.obj - 0001:0009259c __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$9 1009359c f helper.cpp.obj - 0001:000925a6 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$10 100935a6 f helper.cpp.obj - 0001:000925b5 __ehhandler$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 100935b5 f helper.cpp.obj - 0001:000925e0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$2 100935e0 f spellcast.cpp.obj - 0001:000925e8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$3 100935e8 f spellcast.cpp.obj - 0001:000925f5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100935f5 f spellcast.cpp.obj - 0001:00092620 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$0 10093620 f spellcast.cpp.obj - 0001:00092628 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$4 10093628 f spellcast.cpp.obj - 0001:00092630 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$1 10093630 f spellcast.cpp.obj - 0001:00092638 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$2 10093638 f spellcast.cpp.obj - 0001:00092640 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$3 10093640 f spellcast.cpp.obj - 0001:0009264d __ehhandler$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 1009364d f spellcast.cpp.obj - 0001:00092680 __unwindfunclet$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z$0 10093680 f spellcast.cpp.obj - 0001:00092680 __unwindfunclet$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z$0 10093680 f spellcast.cpp.obj - 0001:00092680 __unwindfunclet$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10093680 f spellevents.cpp.obj - 0001:0009268d __ehhandler$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 1009368d f spellcast.cpp.obj - 0001:0009268d __ehhandler$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 1009368d f spellcast.cpp.obj - 0001:0009268d __ehhandler$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1009368d f spellevents.cpp.obj - 0001:000926c0 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$0 100936c0 f spellcast.cpp.obj - 0001:000926c8 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$1 100936c8 f spellcast.cpp.obj - 0001:000926d5 __ehhandler$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 100936d5 f spellcast.cpp.obj - 0001:00092700 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$0 10093700 f spellcast.cpp.obj - 0001:00092708 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$1 10093708 f spellcast.cpp.obj - 0001:00092715 __ehhandler$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 10093715 f spellcast.cpp.obj - 0001:00092740 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$0 10093740 f spellcast.cpp.obj - 0001:00092748 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$1 10093748 f spellcast.cpp.obj - 0001:00092755 __ehhandler$?CastQueuedNormalSpell@Nampower@@YAXXZ 10093755 f spellcast.cpp.obj - 0001:00092780 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$0 10093780 f spellcast.cpp.obj - 0001:00092788 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$1 10093788 f spellcast.cpp.obj - 0001:00092790 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$2 10093790 f spellcast.cpp.obj - 0001:00092798 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$3 10093798 f spellcast.cpp.obj - 0001:000927a0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$4 100937a0 f spellcast.cpp.obj - 0001:000927a8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$6 100937a8 f spellcast.cpp.obj - 0001:000927b0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$5 100937b0 f spellcast.cpp.obj - 0001:000927b8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$7 100937b8 f spellcast.cpp.obj - 0001:000927c0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$8 100937c0 f spellcast.cpp.obj - 0001:000927c8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$9 100937c8 f spellcast.cpp.obj - 0001:000927d0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$10 100937d0 f spellcast.cpp.obj - 0001:000927d8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$11 100937d8 f spellcast.cpp.obj - 0001:000927e0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$12 100937e0 f spellcast.cpp.obj - 0001:000927e8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$13 100937e8 f spellcast.cpp.obj - 0001:000927f0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$17 100937f0 f spellcast.cpp.obj - 0001:000927f8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$14 100937f8 f spellcast.cpp.obj - 0001:00092800 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$15 10093800 f spellcast.cpp.obj - 0001:00092808 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$16 10093808 f spellcast.cpp.obj - 0001:00092810 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$18 10093810 f spellcast.cpp.obj - 0001:00092818 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$19 10093818 f spellcast.cpp.obj - 0001:00092820 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$20 10093820 f spellcast.cpp.obj - 0001:00092828 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$21 10093828 f spellcast.cpp.obj - 0001:00092830 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$22 10093830 f spellcast.cpp.obj - 0001:00092838 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$23 10093838 f spellcast.cpp.obj - 0001:00092845 __ehhandler$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 10093845 f spellcast.cpp.obj - 0001:00092870 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10093870 f spellchannel.cpp.obj - 0001:00092878 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10093878 f spellchannel.cpp.obj - 0001:00092880 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 10093880 f spellchannel.cpp.obj - 0001:00092888 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$3 10093888 f spellchannel.cpp.obj - 0001:00092890 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$4 10093890 f spellchannel.cpp.obj - 0001:00092898 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$5 10093898 f spellchannel.cpp.obj - 0001:000928a5 __ehhandler$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100938a5 f spellchannel.cpp.obj - 0001:000928d0 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 100938d0 f spellchannel.cpp.obj - 0001:000928d8 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 100938d8 f spellchannel.cpp.obj - 0001:000928e5 __ehhandler$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100938e5 f spellchannel.cpp.obj - 0001:00092910 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10093910 f spellevents.cpp.obj - 0001:00092918 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10093918 f spellevents.cpp.obj - 0001:00092920 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 10093920 f spellevents.cpp.obj - 0001:0009292d __ehhandler$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 1009392d f spellevents.cpp.obj - 0001:00092960 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$1 10093960 f spellevents.cpp.obj - 0001:00092968 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$0 10093968 f spellevents.cpp.obj - 0001:00092975 __ehhandler$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 10093975 f spellevents.cpp.obj - 0001:000929a0 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$0 100939a0 f spellevents.cpp.obj - 0001:000929a8 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$1 100939a8 f spellevents.cpp.obj - 0001:000929b0 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$2 100939b0 f spellevents.cpp.obj - 0001:000929bd __ehhandler$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100939bd f spellevents.cpp.obj - 0001:000929f0 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$0 100939f0 f spellevents.cpp.obj - 0001:000929f8 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$13 100939f8 f spellevents.cpp.obj - 0001:00092a00 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$14 10093a00 f spellevents.cpp.obj - 0001:00092a08 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$2 10093a08 f spellevents.cpp.obj - 0001:00092a10 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$1 10093a10 f spellevents.cpp.obj - 0001:00092a18 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$3 10093a18 f spellevents.cpp.obj - 0001:00092a20 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$4 10093a20 f spellevents.cpp.obj - 0001:00092a28 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$5 10093a28 f spellevents.cpp.obj - 0001:00092a30 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$8 10093a30 f spellevents.cpp.obj - 0001:00092a38 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$9 10093a38 f spellevents.cpp.obj - 0001:00092a40 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$7 10093a40 f spellevents.cpp.obj - 0001:00092a48 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$6 10093a48 f spellevents.cpp.obj - 0001:00092a50 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$10 10093a50 f spellevents.cpp.obj - 0001:00092a58 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$11 10093a58 f spellevents.cpp.obj - 0001:00092a60 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$12 10093a60 f spellevents.cpp.obj - 0001:00092a6d __ehhandler$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 10093a6d f spellevents.cpp.obj - 0001:00092aa0 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$0 10093aa0 f spellevents.cpp.obj - 0001:00092aab __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$1 10093aab f spellevents.cpp.obj - 0001:00092ab6 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$2 10093ab6 f spellevents.cpp.obj - 0001:00092abe __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$3 10093abe f spellevents.cpp.obj - 0001:00092acb __ehhandler$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 10093acb f spellevents.cpp.obj - 0001:00092b00 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10093b00 f item_scripts.cpp.obj - 0001:00092b00 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10093b00 f misc_scripts.cpp.obj - 0001:00092b00 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10093b00 f spell_scripts.cpp.obj - 0001:00092b0d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10093b0d f item_scripts.cpp.obj - 0001:00092b0d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10093b0d f misc_scripts.cpp.obj - 0001:00092b0d __ehhandler$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10093b0d f spell_scripts.cpp.obj - 0001:00092b40 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10093b40 f dbc_fields.cpp.obj - 0001:00092b40 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10093b40 f misc_scripts.cpp.obj - 0001:00092b48 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10093b48 f dbc_fields.cpp.obj - 0001:00092b48 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10093b48 f misc_scripts.cpp.obj - 0001:00092b55 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10093b55 f dbc_fields.cpp.obj - 0001:00092b55 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10093b55 f misc_scripts.cpp.obj - 0001:00092b80 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$1 10093b80 f items.cpp.obj - 0001:00092b80 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$1 10093b80 f misc_scripts.cpp.obj - 0001:00092b8b __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$2 10093b8b f items.cpp.obj - 0001:00092b8b __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$2 10093b8b f misc_scripts.cpp.obj - 0001:00092b9b __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 10093b9b f items.cpp.obj - 0001:00092b9b __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 10093b9b f misc_scripts.cpp.obj - 0001:00092bc0 __unwindfunclet$?RunQueuedScript@Nampower@@YA_NH@Z$0 10093bc0 f misc_scripts.cpp.obj - 0001:00092bc0 __unwindfunclet$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z$0 10093bc0 f misc_scripts.cpp.obj - 0001:00092bcd __ehhandler$?RunQueuedScript@Nampower@@YA_NH@Z 10093bcd f misc_scripts.cpp.obj - 0001:00092bcd __ehhandler$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 10093bcd f misc_scripts.cpp.obj - 0001:00092c00 __unwindfunclet$?Script_DisenchantAll@Nampower@@YAIPAI@Z$0 10093c00 f misc_scripts.cpp.obj - 0001:00092c0d __ehhandler$?Script_DisenchantAll@Nampower@@YAIPAI@Z 10093c0d f misc_scripts.cpp.obj - 0001:00092c40 __unwindfunclet$?Script_GetItemStatsField@Nampower@@YAIPAI@Z$2 10093c40 f item_scripts.cpp.obj - 0001:00092c40 __unwindfunclet$?Script_GetUnitField@Nampower@@YAIPAI@Z$2 10093c40 f misc_scripts.cpp.obj - 0001:00092c40 __unwindfunclet$?Script_GetSpellRecField@Nampower@@YAIPAI@Z$2 10093c40 f spell_scripts.cpp.obj - 0001:00092c4d __ehhandler$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 10093c4d f item_scripts.cpp.obj - 0001:00092c4d __ehhandler$?Script_GetUnitField@Nampower@@YAIPAI@Z 10093c4d f misc_scripts.cpp.obj - 0001:00092c4d __ehhandler$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 10093c4d f spell_scripts.cpp.obj - 0001:00092c80 __unwindfunclet$?Script_LearnTalentRank@Nampower@@YAIPAI@Z$0 10093c80 f misc_scripts.cpp.obj - 0001:00092c8d __ehhandler$?Script_LearnTalentRank@Nampower@@YAIPAI@Z 10093c8d f misc_scripts.cpp.obj - 0001:00092cb0 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$0 10093cb0 f dbc_fields.cpp.obj - 0001:00092cb0 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$0 10093cb0 f misc_scripts.cpp.obj - 0001:00092cb8 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$1 10093cb8 f dbc_fields.cpp.obj - 0001:00092cb8 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$1 10093cb8 f misc_scripts.cpp.obj - 0001:00092cc0 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$2 10093cc0 f dbc_fields.cpp.obj - 0001:00092cc0 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$2 10093cc0 f misc_scripts.cpp.obj - 0001:00092cc8 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$3 10093cc8 f dbc_fields.cpp.obj - 0001:00092cc8 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$3 10093cc8 f misc_scripts.cpp.obj - 0001:00092cd5 __ehhandler$?InitializeFieldMaps@Nampower@@YAXXZ 10093cd5 f dbc_fields.cpp.obj - 0001:00092cd5 __ehhandler$?Script_QueueScript@Nampower@@YAIPAI@Z 10093cd5 f misc_scripts.cpp.obj - 0001:00092d00 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$0 10093d00 f misc_scripts.cpp.obj - 0001:00092d08 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$1 10093d08 f misc_scripts.cpp.obj - 0001:00092d10 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$3 10093d10 f misc_scripts.cpp.obj - 0001:00092d18 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$4 10093d18 f misc_scripts.cpp.obj - 0001:00092d20 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$2 10093d20 f misc_scripts.cpp.obj - 0001:00092d2d __ehhandler$?TryDisenchant@Nampower@@YA_NXZ 10093d2d f misc_scripts.cpp.obj - 0001:00092d60 __unwindfunclet$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z$0 10093d60 f spell_scripts.cpp.obj - 0001:00092d60 __unwindfunclet$?Script_QueueSpellByName@Nampower@@YAIPAI@Z$0 10093d60 f spell_scripts.cpp.obj - 0001:00092d6d __ehhandler$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 10093d6d f spell_scripts.cpp.obj - 0001:00092d6d __ehhandler$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 10093d6d f spell_scripts.cpp.obj - 0001:00092da0 __unwindfunclet$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z$0 10093da0 f spell_scripts.cpp.obj - 0001:00092da8 __unwindfunclet$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z$1 10093da8 f spell_scripts.cpp.obj - 0001:00092db5 __ehhandler$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 10093db5 f spell_scripts.cpp.obj - 0001:00092de0 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$1 10093de0 f spell_scripts.cpp.obj - 0001:00092de8 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$4 10093de8 f spell_scripts.cpp.obj - 0001:00092df0 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$0 10093df0 f spell_scripts.cpp.obj - 0001:00092dfd __ehhandler$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 10093dfd f spell_scripts.cpp.obj - 0001:00092e30 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$0 10093e30 f item_scripts.cpp.obj - 0001:00092e38 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$1 10093e38 f item_scripts.cpp.obj - 0001:00092e45 __ehhandler$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 10093e45 f item_scripts.cpp.obj - 0001:00092e70 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$1 10093e70 f items.cpp.obj - 0001:00092e78 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$0 10093e78 f items.cpp.obj - 0001:00092e85 __ehhandler$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 10093e85 f items.cpp.obj - 0001:00092eb0 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10093eb0 f items.cpp.obj - 0001:00092eb8 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10093eb8 f items.cpp.obj - 0001:00092ec5 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10093ec5 f items.cpp.obj - 0001:00092ef0 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$1 10093ef0 f items.cpp.obj - 0001:00092ef8 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$0 10093ef8 f items.cpp.obj - 0001:00092f05 __ehhandler$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 10093f05 f items.cpp.obj - 0001:00092f30 __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$1 10093f30 f items.cpp.obj - 0001:00092f3a __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$2 10093f3a f items.cpp.obj - 0001:00092f49 __ehhandler$??__EitemNameToIdCache@Nampower@@YAXXZ 10093f49 f items.cpp.obj - 0001:00092f70 __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$1 10093f70 f items.cpp.obj - 0001:00092f7a __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$2 10093f7a f items.cpp.obj - 0001:00092f89 __ehhandler$??__EitemStatsCache@Nampower@@YAXXZ 10093f89 f items.cpp.obj - 0001:00092fb0 __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$1 10093fb0 f items.cpp.obj - 0001:00092fba __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$2 10093fba f items.cpp.obj - 0001:00092fc9 __ehhandler$??__EpendingItemIds@Nampower@@YAXXZ 10093fc9 f items.cpp.obj - 0001:00092ff0 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$0 10093ff0 f items.cpp.obj - 0001:00092ff8 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$1 10093ff8 f items.cpp.obj - 0001:00093000 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$2 10094000 f items.cpp.obj - 0001:00093008 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$3 10094008 f items.cpp.obj - 0001:00093010 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$4 10094010 f items.cpp.obj - 0001:00093018 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$5 10094018 f items.cpp.obj - 0001:00093025 __ehhandler$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 10094025 f items.cpp.obj - 0001:00093050 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$0 10094050 f items.cpp.obj - 0001:00093058 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$1 10094058 f items.cpp.obj - 0001:00093065 __ehhandler$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 10094065 f items.cpp.obj - 0001:00093090 __unwindfunclet$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z$0 10094090 f items.cpp.obj - 0001:000930ae __ehhandler$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 100940ae f items.cpp.obj - 0001:000930d0 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$0 100940d0 f unit_fields.cpp.obj - 0001:000930d8 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$1 100940d8 f unit_fields.cpp.obj - 0001:000930e5 __ehhandler$?InitializeUnitFieldMaps@Nampower@@YAXXZ 100940e5 f unit_fields.cpp.obj - 0001:00093110 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$0 10094110 f lua_refs.cpp.obj - 0001:00093118 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$1 10094118 f lua_refs.cpp.obj - 0001:00093125 __ehhandler$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 10094125 f lua_refs.cpp.obj - 0001:00093150 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$0 10094150 f pet.cpp.obj - 0001:00093158 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$1 10094158 f pet.cpp.obj - 0001:00093160 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$2 10094160 f pet.cpp.obj - 0001:00093168 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$17 10094168 f pet.cpp.obj - 0001:00093175 __ehhandler$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 10094175 f pet.cpp.obj - 0001:000931a0 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$0 100941a0 f pet.cpp.obj - 0001:000931a8 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$1 100941a8 f pet.cpp.obj - 0001:000931b0 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$2 100941b0 f pet.cpp.obj - 0001:000931b8 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$3 100941b8 f pet.cpp.obj - 0001:000931c0 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$4 100941c0 f pet.cpp.obj - 0001:000931cd __ehhandler$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 100941cd f pet.cpp.obj - 0001:00093200 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$0 10094200 f pet.cpp.obj - 0001:00093208 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$1 10094208 f pet.cpp.obj - 0001:00093210 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$21 10094210 f pet.cpp.obj - 0001:0009321b __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$2 1009421b f pet.cpp.obj - 0001:00093223 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$3 10094223 f pet.cpp.obj - 0001:0009322b __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$4 1009422b f pet.cpp.obj - 0001:00093238 __ehhandler$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 10094238 f pet.cpp.obj - 0001:00093270 __unwindfunclet$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$0 10094270 f pet.cpp.obj - 0001:00093280 __ehhandler$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 10094280 f pet.cpp.obj - 0001:000932a0 __ehhandler$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 100942a0 f libvcruntime:frame.obj - 0001:000932bd __unwindfunclet$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ$0 100942bd f libvcruntime:undname.obj - 0001:000932ca __ehhandler$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 100942ca f libvcruntime:undname.obj - 0001:000932e7 __ehhandler$?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 100942e7 f libucrt:write.obj - 0001:00093311 __ehhandler$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 10094311 f libucrt:exit.obj - 0001:0009332e __ehhandler$__execute_onexit_table 1009432e f libucrt:onexit.obj - 0001:0009334b __ehhandler$___dcrt_uninitialize_environments_nolock 1009434b f libucrt:environment_initialization.obj - 0001:00093368 __ehhandler$?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 10094368 f libucrt:mbstowcs.obj - 0001:00093385 __unwindfunclet$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z$0 10094385 f libcpmt:locale0.obj - 0001:00093392 __ehhandler$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 10094392 f libcpmt:locale0.obj - 0001:000933b0 ??__FdebugLogFile@Nampower@@YAXXZ 100943b0 f logging.cpp.obj - 0001:00093460 ??__F?e@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 10094460 f main.cpp.obj - 0001:000934a0 ??__F?e@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 100944a0 f main.cpp.obj - 0001:000934e0 ??__Fep@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 100944e0 f main.cpp.obj - 0001:00093520 ??__Fep@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 10094520 f main.cpp.obj - 0001:00093560 ??__FgAttackRoundInfo_ReadPacketDetour@Nampower@@YAXXZ 10094560 f main.cpp.obj - 0001:00093580 ??__FgCGActionBar_UseActionDetour@Nampower@@YAXXZ 10094580 f main.cpp.obj - 0001:000935a0 ??__FgCGBuffBar_UpdateDurationDetour@Nampower@@YAXXZ 100945a0 f main.cpp.obj - 0001:000935c0 ??__FgCGGameUI_ShowCombatFeedbackDetour@Nampower@@YAXXZ 100945c0 f main.cpp.obj - 0001:000935e0 ??__FgCGPetInfo_GetPetSpellActionDetour@Nampower@@YAXXZ 100945e0 f main.cpp.obj - 0001:00093600 ??__FgCGPetInfo_SetPetDetour@Nampower@@YAXXZ 10094600 f main.cpp.obj - 0001:00093620 ??__FgCGPlayer_C_OnAttackIconPressedDetour@Nampower@@YAXXZ 10094620 f main.cpp.obj - 0001:00093640 ??__FgCGSpellBook_CastSpellDetour@Nampower@@YAXXZ 10094640 f main.cpp.obj - 0001:00093660 ??__FgCGUnit_C_OnAuraAddedDetour@Nampower@@YAXXZ 10094660 f main.cpp.obj - 0001:00093680 ??__FgCGUnit_C_OnAuraRemovedDetour@Nampower@@YAXXZ 10094680 f main.cpp.obj - 0001:000936a0 ??__FgCGUnit_C_OnAuraStacksChangedDetour@Nampower@@YAXXZ 100946a0 f main.cpp.obj - 0001:000936c0 ??__FgCGWorldFrame_OnLayerTrackTerrainDetour@Nampower@@YAXXZ 100946c0 f main.cpp.obj - 0001:000936e0 ??__FgCSimpleFrame_GetNameDetour@Nampower@@YAXXZ 100946e0 f main.cpp.obj - 0001:00093700 ??__FgCSimpleTop_OnKeyDownDetour@Nampower@@YAXXZ 10094700 f main.cpp.obj - 0001:00093720 ??__FgCSimpleTop_OnKeyUpDetour@Nampower@@YAXXZ 10094720 f main.cpp.obj - 0001:00093740 ??__FgCancelSpellDetour@Nampower@@YAXXZ 10094740 f main.cpp.obj - 0001:00093760 ??__FgCastDetour@Nampower@@YAXXZ 10094760 f main.cpp.obj - 0001:00093780 ??__FgCastHistory@Nampower@@YAXXZ 10094780 f main.cpp.obj - 0001:00093790 ??__FgCastResultHandlerDetour@Nampower@@YAXXZ 10094790 f main.cpp.obj - 0001:000937b0 ??__FgCastSpellByNameDetour@Nampower@@YAXXZ 100947b0 f main.cpp.obj - 0001:000937d0 ??__FgCastbarPatch@Nampower@@YAXXZ 100947d0 f main.cpp.obj - 0001:000938a0 ??__FgCreateEventsDetour@Nampower@@YAXXZ 100948a0 f main.cpp.obj - 0001:000938c0 ??__FgGetGUIDFromNameDetour@Nampower@@YAXXZ 100948c0 f main.cpp.obj - 0001:000938e0 ??__FgGetSpellSlotFromLuaDetour@Nampower@@YAXXZ 100948e0 f main.cpp.obj - 0001:00093900 ??__FgIEndSceneDetour@Nampower@@YAXXZ 10094900 f main.cpp.obj - 0001:00093920 ??__FgInvalidFunctionPtrCheckDetour@Nampower@@YAXXZ 10094920 f main.cpp.obj - 0001:00093940 ??__FgLoadScriptFunctionsDetour@Nampower@@YAXXZ 10094940 f main.cpp.obj - 0001:00093960 ??__FgNonGcdCastQueue@Nampower@@YAXXZ 10094960 f main.cpp.obj - 0001:00093970 ??__FgOnSpriteRightClickDetour@Nampower@@YAXXZ 10094970 f main.cpp.obj - 0001:00093990 ??__FgPeriodicAuraLogHandlerDetour@Nampower@@YAXXZ 10094990 f main.cpp.obj - 0001:000939b0 ??__FgPlaySpellVisualHandlerDetour@Nampower@@YAXXZ 100949b0 f main.cpp.obj - 0001:000939d0 ??__FgProcResistHandlerDetour@Nampower@@YAXXZ 100949d0 f main.cpp.obj - 0001:000939f0 ??__FgSendCastDetour@Nampower@@YAXXZ 100949f0 f main.cpp.obj - 0001:00093a10 ??__FgSendUnitSignalDetour@Nampower@@YAXXZ 10094a10 f main.cpp.obj - 0001:00093a30 ??__FgSetCVarDetour@Nampower@@YAXXZ 10094a30 f main.cpp.obj - 0001:00093a50 ??__FgSetEventCountDetour@Nampower@@YAXXZ 10094a50 f main.cpp.obj - 0001:00093a70 ??__FgSignalEventDetour@Nampower@@YAXXZ 10094a70 f main.cpp.obj - 0001:00093a90 ??__FgSpellChannelStartHandlerDetour@Nampower@@YAXXZ 10094a90 f main.cpp.obj - 0001:00093ab0 ??__FgSpellChannelUpdateHandlerDetour@Nampower@@YAXXZ 10094ab0 f main.cpp.obj - 0001:00093ad0 ??__FgSpellCooldownDetour@Nampower@@YAXXZ 10094ad0 f main.cpp.obj - 0001:00093af0 ??__FgSpellDelayedDetour@Nampower@@YAXXZ 10094af0 f main.cpp.obj - 0001:00093b10 ??__FgSpellEnergizeLogHandlerDetour@Nampower@@YAXXZ 10094b10 f main.cpp.obj - 0001:00093b30 ??__FgSpellFailedDetour@Nampower@@YAXXZ 10094b30 f main.cpp.obj - 0001:00093b50 ??__FgSpellFailedOtherHandlerDetour@Nampower@@YAXXZ 10094b50 f main.cpp.obj - 0001:00093b70 ??__FgSpellGoDetour@Nampower@@YAXXZ 10094b70 f main.cpp.obj - 0001:00093b90 ??__FgSpellHealingLogHandlerDetour@Nampower@@YAXXZ 10094b90 f main.cpp.obj - 0001:00093bb0 ??__FgSpellLogMissHandlerDetour@Nampower@@YAXXZ 10094bb0 f main.cpp.obj - 0001:00093bd0 ??__FgSpellNonMeleeDmgLogHandlerDetour@Nampower@@YAXXZ 10094bd0 f main.cpp.obj - 0001:00093bf0 ??__FgSpellOrDamageImmuneHandlerDetour@Nampower@@YAXXZ 10094bf0 f main.cpp.obj - 0001:00093c10 ??__FgSpellStartHandlerDetour@Nampower@@YAXXZ 10094c10 f main.cpp.obj - 0001:00093c30 ??__FgSpellStopCastingDetour@Nampower@@YAXXZ 10094c30 f main.cpp.obj - 0001:00093c50 ??__FgSpellTargetUnitDetour@Nampower@@YAXXZ 10094c50 f main.cpp.obj - 0001:00093c70 ??__FgSpell_C_CooldownEventTriggeredDetour@Nampower@@YAXXZ 10094c70 f main.cpp.obj - 0001:00093c90 ??__FgSpell_C_GetAutoRepeatingSpellDetour@Nampower@@YAXXZ 10094c90 f main.cpp.obj - 0001:00093cb0 ??__FgSpell_C_GetSpellModifiersDetour@Nampower@@YAXXZ 10094cb0 f main.cpp.obj - 0001:00093cd0 ??__FgSpell_C_GetSpellRadiusDetour@Nampower@@YAXXZ 10094cd0 f main.cpp.obj - 0001:00093cf0 ??__FgSpell_C_HandleSpriteClickDetour@Nampower@@YAXXZ 10094cf0 f main.cpp.obj - 0001:00093d10 ??__FgSpell_C_HandleTerrainClickDetour@Nampower@@YAXXZ 10094d10 f main.cpp.obj - 0001:00093d30 ??__FgSpell_C_TargetSpellDetour@Nampower@@YAXXZ 10094d30 f main.cpp.obj - 0001:00093d50 ??__FgSysMsgInitDetour@Nampower@@YAXXZ 10094d50 f main.cpp.obj - 0001:00093d70 ??__FgTogglePetSlotAutocastDetour@Nampower@@YAXXZ 10094d70 f main.cpp.obj - 0001:00093d90 ??__FgUnitCombatLogUnitDeadDetour@Nampower@@YAXXZ 10094d90 f main.cpp.obj - 0001:00093db0 ??__FspellIdToSlotCache@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@YAXXZ 10094db0 f helper.cpp.obj - 0001:00093dc0 ??__FspellSlotCache@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@YAXXZ 10094dc0 f helper.cpp.obj - 0001:00093dd0 ??__FunitFieldsArrayFieldRefs@Nampower@@YAXXZ 10094dd0 f misc_scripts.cpp.obj - 0001:00093de0 ??__FunitFieldsNestedArrayRefs@Nampower@@YAXXZ 10094de0 f misc_scripts.cpp.obj - 0001:00093df0 ??__FspellRecArrayFieldRefs@Nampower@@YAXXZ 10094df0 f spell_scripts.cpp.obj - 0001:00093e00 ??__FspellRecNestedArrayRefs@Nampower@@YAXXZ 10094e00 f spell_scripts.cpp.obj - 0001:00093e10 ??__FitemStatsArrayFieldRefs@Nampower@@YAXXZ 10094e10 f item_scripts.cpp.obj - 0001:00093e20 ??__FitemStatsNestedArrayRefs@Nampower@@YAXXZ 10094e20 f item_scripts.cpp.obj - 0001:00093e30 ??__FitemNameToIdCache@Nampower@@YAXXZ 10094e30 f items.cpp.obj - 0001:00093e40 ??__FitemStatsCache@Nampower@@YAXXZ 10094e40 f items.cpp.obj - 0001:00093e50 ??__FpendingItemIds@Nampower@@YAXXZ 10094e50 f items.cpp.obj - 0001:00093e60 ??__FitemStatsArrayFieldMap@Nampower@@YAXXZ 10094e60 f dbc_fields.cpp.obj - 0001:00093e70 ??__FitemStatsFieldMap@Nampower@@YAXXZ 10094e70 f dbc_fields.cpp.obj - 0001:00093e80 ??__FspellRecArrayFieldMap@Nampower@@YAXXZ 10094e80 f dbc_fields.cpp.obj - 0001:00093e90 ??__FspellRecFieldMap@Nampower@@YAXXZ 10094e90 f dbc_fields.cpp.obj - 0001:00093ea0 ??__FunitFieldsArrayFieldMap@Nampower@@YAXXZ 10094ea0 f unit_fields.cpp.obj - 0001:00093eb0 ??__FunitFieldsFieldMap@Nampower@@YAXXZ 10094eb0 f unit_fields.cpp.obj - 0001:00093ec0 ??__FregisteredTableRefs@Nampower@@YAXXZ 10094ec0 f lua_refs.cpp.obj - 0001:00093f1c ??__Finitlocks@std@@YAXXZ 10094f1c f libcpmt:xlock.obj - 0001:00093f26 ??__F_Fac_tidy_reg@std@@YAXXZ 10094f26 f libcpmt:locale0.obj - 0001:00093f30 ??__Fclassic_locale@std@@YAXXZ 10094f30 f libcpmt:locale0.obj - 0001:00093f3a ??__Finit_atexit@@YAXXZ 10094f3a f libcpmt:iosptrs.obj - 0001:00093f44 ??__Finitlocks@std@@YAXXZ 10094f44 f libcpmt:iosptrs.obj - 0002:000001ec ?initlocks$initializer$@std@@3P6AXXZA 100951ec libcpmt:xlock.obj - 0002:000001f0 ?initlocks$initializer$@std@@3P6AXXZA 100951f0 libcpmt:iosptrs.obj - 0002:000001f4 ?init_atexit$initializer$@@3P6AXXZA 100951f4 libcpmt:iosptrs.obj - 0002:000001f8 ?_Fac_tidy_reg$initializer$@std@@3P6AXXZA 100951f8 libcpmt:locale0.obj - 0002:000001fc ?classic_locale$initializer$@std@@3P6AXXZA 100951fc libcpmt:locale0.obj - 0002:00000200 ?debugLogFile$initializer$@Nampower@@3P6AXXZA 10095200 logging.cpp.obj - 0002:00000204 ?gNonGcdCastQueue$initializer$@Nampower@@3P6AXXZA 10095204 main.cpp.obj - 0002:00000208 ?gCastHistory$initializer$@Nampower@@3P6AXXZA 10095208 main.cpp.obj - 0002:0000020c ?gSysMsgInitDetour$initializer$@Nampower@@3P6AXXZA 1009520c main.cpp.obj - 0002:00000210 ?gLoadScriptFunctionsDetour$initializer$@Nampower@@3P6AXXZA 10095210 main.cpp.obj - 0002:00000214 ?gCreateEventsDetour$initializer$@Nampower@@3P6AXXZA 10095214 main.cpp.obj - 0002:00000218 ?gSetEventCountDetour$initializer$@Nampower@@3P6AXXZA 10095218 main.cpp.obj - 0002:0000021c ?gSetCVarDetour$initializer$@Nampower@@3P6AXXZA 1009521c main.cpp.obj - 0002:00000220 ?gCGSpellBook_CastSpellDetour$initializer$@Nampower@@3P6AXXZA 10095220 main.cpp.obj - 0002:00000224 ?gCastDetour$initializer$@Nampower@@3P6AXXZA 10095224 main.cpp.obj - 0002:00000228 ?gSendCastDetour$initializer$@Nampower@@3P6AXXZA 10095228 main.cpp.obj - 0002:0000022c ?gCancelSpellDetour$initializer$@Nampower@@3P6AXXZA 1009522c main.cpp.obj - 0002:00000230 ?gSignalEventDetour$initializer$@Nampower@@3P6AXXZA 10095230 main.cpp.obj - 0002:00000234 ?gSpellFailedDetour$initializer$@Nampower@@3P6AXXZA 10095234 main.cpp.obj - 0002:00000238 ?gSpell_C_GetSpellModifiersDetour$initializer$@Nampower@@3P6AXXZA 10095238 main.cpp.obj - 0002:0000023c ?gSpell_C_GetSpellRadiusDetour$initializer$@Nampower@@3P6AXXZA 1009523c main.cpp.obj - 0002:00000240 ?gCastbarPatch$initializer$@Nampower@@3P6AXXZA 10095240 main.cpp.obj - 0002:00000244 ?gIEndSceneDetour$initializer$@Nampower@@3P6AXXZA 10095244 main.cpp.obj - 0002:00000248 ?gSpell_C_GetAutoRepeatingSpellDetour$initializer$@Nampower@@3P6AXXZA 10095248 main.cpp.obj - 0002:0000024c ?gSpell_C_CooldownEventTriggeredDetour$initializer$@Nampower@@3P6AXXZA 1009524c main.cpp.obj - 0002:00000250 ?gSpellGoDetour$initializer$@Nampower@@3P6AXXZA 10095250 main.cpp.obj - 0002:00000254 ?gSpellTargetUnitDetour$initializer$@Nampower@@3P6AXXZA 10095254 main.cpp.obj - 0002:00000258 ?gSpellStopCastingDetour$initializer$@Nampower@@3P6AXXZA 10095258 main.cpp.obj - 0002:0000025c ?gOnSpriteRightClickDetour$initializer$@Nampower@@3P6AXXZA 1009525c main.cpp.obj - 0002:00000260 ?gSpell_C_HandleSpriteClickDetour$initializer$@Nampower@@3P6AXXZA 10095260 main.cpp.obj - 0002:00000264 ?gSpell_C_HandleTerrainClickDetour$initializer$@Nampower@@3P6AXXZA 10095264 main.cpp.obj - 0002:00000268 ?gCGWorldFrame_OnLayerTrackTerrainDetour$initializer$@Nampower@@3P6AXXZA 10095268 main.cpp.obj - 0002:0000026c ?gSpell_C_TargetSpellDetour$initializer$@Nampower@@3P6AXXZA 1009526c main.cpp.obj - 0002:00000270 ?gSpellCooldownDetour$initializer$@Nampower@@3P6AXXZA 10095270 main.cpp.obj - 0002:00000274 ?gSpellDelayedDetour$initializer$@Nampower@@3P6AXXZA 10095274 main.cpp.obj - 0002:00000278 ?gCastResultHandlerDetour$initializer$@Nampower@@3P6AXXZA 10095278 main.cpp.obj - 0002:0000027c ?gSpellFailedOtherHandlerDetour$initializer$@Nampower@@3P6AXXZA 1009527c main.cpp.obj - 0002:00000280 ?gSpellChannelStartHandlerDetour$initializer$@Nampower@@3P6AXXZA 10095280 main.cpp.obj - 0002:00000284 ?gSpellChannelUpdateHandlerDetour$initializer$@Nampower@@3P6AXXZA 10095284 main.cpp.obj - 0002:00000288 ?gPlaySpellVisualHandlerDetour$initializer$@Nampower@@3P6AXXZA 10095288 main.cpp.obj - 0002:0000028c ?gSpellHealingLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 1009528c main.cpp.obj - 0002:00000290 ?gSpellEnergizeLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 10095290 main.cpp.obj - 0002:00000294 ?gProcResistHandlerDetour$initializer$@Nampower@@3P6AXXZA 10095294 main.cpp.obj - 0002:00000298 ?gSpellLogMissHandlerDetour$initializer$@Nampower@@3P6AXXZA 10095298 main.cpp.obj - 0002:0000029c ?gSpellOrDamageImmuneHandlerDetour$initializer$@Nampower@@3P6AXXZA 1009529c main.cpp.obj - 0002:000002a0 ?gSpellStartHandlerDetour$initializer$@Nampower@@3P6AXXZA 100952a0 main.cpp.obj - 0002:000002a4 ?gPeriodicAuraLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 100952a4 main.cpp.obj - 0002:000002a8 ?gSpellNonMeleeDmgLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 100952a8 main.cpp.obj - 0002:000002ac ?gCGPlayer_C_OnAttackIconPressedDetour$initializer$@Nampower@@3P6AXXZA 100952ac main.cpp.obj - 0002:000002b0 ?gAttackRoundInfo_ReadPacketDetour$initializer$@Nampower@@3P6AXXZA 100952b0 main.cpp.obj - 0002:000002b4 ?gCGActionBar_UseActionDetour$initializer$@Nampower@@3P6AXXZA 100952b4 main.cpp.obj - 0002:000002b8 ?gCGUnit_C_OnAuraRemovedDetour$initializer$@Nampower@@3P6AXXZA 100952b8 main.cpp.obj - 0002:000002bc ?gCGUnit_C_OnAuraAddedDetour$initializer$@Nampower@@3P6AXXZA 100952bc main.cpp.obj - 0002:000002c0 ?gCGUnit_C_OnAuraStacksChangedDetour$initializer$@Nampower@@3P6AXXZA 100952c0 main.cpp.obj - 0002:000002c4 ?gUnitCombatLogUnitDeadDetour$initializer$@Nampower@@3P6AXXZA 100952c4 main.cpp.obj - 0002:000002c8 ?gCGBuffBar_UpdateDurationDetour$initializer$@Nampower@@3P6AXXZA 100952c8 main.cpp.obj - 0002:000002cc ?gInvalidFunctionPtrCheckDetour$initializer$@Nampower@@3P6AXXZA 100952cc main.cpp.obj - 0002:000002d0 ?gGetSpellSlotFromLuaDetour$initializer$@Nampower@@3P6AXXZA 100952d0 main.cpp.obj - 0002:000002d4 ?gCSimpleFrame_GetNameDetour$initializer$@Nampower@@3P6AXXZA 100952d4 main.cpp.obj - 0002:000002d8 ?gCSimpleTop_OnKeyDownDetour$initializer$@Nampower@@3P6AXXZA 100952d8 main.cpp.obj - 0002:000002dc ?gCSimpleTop_OnKeyUpDetour$initializer$@Nampower@@3P6AXXZA 100952dc main.cpp.obj - 0002:000002e0 ?gGetGUIDFromNameDetour$initializer$@Nampower@@3P6AXXZA 100952e0 main.cpp.obj - 0002:000002e4 ?gCastSpellByNameDetour$initializer$@Nampower@@3P6AXXZA 100952e4 main.cpp.obj - 0002:000002e8 ?gSendUnitSignalDetour$initializer$@Nampower@@3P6AXXZA 100952e8 main.cpp.obj - 0002:000002ec ?gCGPetInfo_SetPetDetour$initializer$@Nampower@@3P6AXXZA 100952ec main.cpp.obj - 0002:000002f0 ?gTogglePetSlotAutocastDetour$initializer$@Nampower@@3P6AXXZA 100952f0 main.cpp.obj - 0002:000002f4 ?gCGPetInfo_GetPetSpellActionDetour$initializer$@Nampower@@3P6AXXZA 100952f4 main.cpp.obj - 0002:000002f8 ?gCGGameUI_ShowCombatFeedbackDetour$initializer$@Nampower@@3P6AXXZA 100952f8 main.cpp.obj - 0002:000002fc ??e$initializer$@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2P6AXXZA@@3P6AXXZA 100952fc main.cpp.obj - 0002:00000300 ??e$initializer$@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2P6AXXZA@@3P6AXXZA 10095300 main.cpp.obj - 0002:00000304 ?unitFieldsArrayFieldRefs$initializer$@Nampower@@3P6AXXZA 10095304 misc_scripts.cpp.obj - 0002:00000308 ?unitFieldsNestedArrayRefs$initializer$@Nampower@@3P6AXXZA 10095308 misc_scripts.cpp.obj - 0002:0000030c ?spellRecArrayFieldRefs$initializer$@Nampower@@3P6AXXZA 1009530c spell_scripts.cpp.obj - 0002:00000310 ?spellRecNestedArrayRefs$initializer$@Nampower@@3P6AXXZA 10095310 spell_scripts.cpp.obj - 0002:00000314 ?itemStatsArrayFieldRefs$initializer$@Nampower@@3P6AXXZA 10095314 item_scripts.cpp.obj - 0002:00000318 ?itemStatsNestedArrayRefs$initializer$@Nampower@@3P6AXXZA 10095318 item_scripts.cpp.obj - 0002:0000031c ?bagItemDataCache$initializer$@Nampower@@3P6AXXZA 1009531c items.cpp.obj - 0002:00000320 ?equippedItemDataCache$initializer$@Nampower@@3P6AXXZA 10095320 items.cpp.obj - 0002:00000324 ?itemStatsCache$initializer$@Nampower@@3P6AXXZA 10095324 items.cpp.obj - 0002:00000328 ?itemNameToIdCache$initializer$@Nampower@@3P6AXXZA 10095328 items.cpp.obj - 0002:0000032c ?pendingItemIds$initializer$@Nampower@@3P6AXXZA 1009532c items.cpp.obj - 0002:00000330 ?itemStatsFieldMap$initializer$@Nampower@@3P6AXXZA 10095330 dbc_fields.cpp.obj - 0002:00000334 ?itemStatsArrayFieldMap$initializer$@Nampower@@3P6AXXZA 10095334 dbc_fields.cpp.obj - 0002:00000338 ?spellRecFieldMap$initializer$@Nampower@@3P6AXXZA 10095338 dbc_fields.cpp.obj - 0002:0000033c ?spellRecArrayFieldMap$initializer$@Nampower@@3P6AXXZA 1009533c dbc_fields.cpp.obj - 0002:00000340 ?unitFieldsFieldMap$initializer$@Nampower@@3P6AXXZA 10095340 unit_fields.cpp.obj - 0002:00000344 ?unitFieldsArrayFieldMap$initializer$@Nampower@@3P6AXXZA 10095344 unit_fields.cpp.obj - 0002:00000348 ?registeredTableRefs$initializer$@Nampower@@3P6AXXZA 10095348 lua_refs.cpp.obj - 0002:00000364 ?pinit@@3P6AHXZA 10095364 libcpmt:winapisupp.obj - 0002:000003a0 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100953a0 logging.cpp.obj - 0002:00000620 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 10095620 cdatastore.cpp.obj - 0002:00000621 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 10095621 game.cpp.obj - 0002:00000622 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 10095622 main.cpp.obj - 0002:00000623 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 10095623 main.cpp.obj - 0002:00007f83 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009cf83 helper.cpp.obj - 0002:00007f84 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009cf84 helper.cpp.obj - 0002:00007ff0 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009cff0 spellcast.cpp.obj - 0002:00007ff1 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009cff1 spellcast.cpp.obj - 0002:000087aa ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009d7aa spellchannel.cpp.obj - 0002:000087ab ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009d7ab spellchannel.cpp.obj - 0002:000088fc ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009d8fc spellevents.cpp.obj - 0002:000088fd ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009d8fd spellevents.cpp.obj - 0002:00008cf2 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009dcf2 misc_scripts.cpp.obj - 0002:00008cf3 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009dcf3 misc_scripts.cpp.obj - 0002:00009780 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009e780 spell_scripts.cpp.obj - 0002:00009781 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009e781 spell_scripts.cpp.obj - 0002:00009e08 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009ee08 cooldown_scripts.cpp.obj - 0002:00009e09 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009ee09 cooldown_scripts.cpp.obj - 0002:00009ec1 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009eec1 item_scripts.cpp.obj - 0002:00009ec2 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009eec2 item_scripts.cpp.obj - 0002:0000a360 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009f360 items.cpp.obj - 0002:0000a361 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009f361 items.cpp.obj - 0002:0000a63c ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 1009f63c dbc_fields.cpp.obj - 0002:0000a63d ?_Fake_alloc@std@@3U_Fake_allocator@1@B 1009f63d dbc_fields.cpp.obj - 0002:0000b624 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a0624 unit_fields.cpp.obj - 0002:0000b625 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a0625 unit_fields.cpp.obj - 0002:0000b9dc ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a09dc auras.cpp.obj - 0002:0000b9dd ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a09dd auras.cpp.obj - 0002:0000b9de ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a09de lua_refs.cpp.obj - 0002:0000b9df ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a09df lua_refs.cpp.obj - 0002:0000ba02 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a0a02 autoattack.cpp.obj - 0002:0000ba03 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a0a03 autoattack.cpp.obj - 0002:0000ba04 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a0a04 player_scripts.cpp.obj - 0002:0000ba05 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a0a05 player_scripts.cpp.obj - 0002:0000ba06 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a0a06 pet.cpp.obj - 0002:0000ba07 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a0a07 pet.cpp.obj - 0002:0000bb48 ?UNIT_PLAYER@Nampower@@3QBDB 100a0b48 unit.cpp.obj - 0002:0000bb4c ?UNIT_PET@Nampower@@3QBDB 100a0b4c unit.cpp.obj - 0002:0000bb50 ?UNIT_TARGET@Nampower@@3QBDB 100a0b50 unit.cpp.obj - 0002:0000bb54 ?UNIT_NPC@Nampower@@3QBDB 100a0b54 unit.cpp.obj - 0002:0000bb58 ?UNIT_MOUSEOVER@Nampower@@3QBDB 100a0b58 unit.cpp.obj - 0002:0000bb5c ?UNIT_PARTY@Nampower@@3QBQBDB 100a0b5c unit.cpp.obj - 0002:0000bb6c ?UNIT_PARTYPET@Nampower@@3QBQBDB 100a0b6c unit.cpp.obj - 0002:0000bb7c ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a0b7c unit.cpp.obj - 0002:0000bb7d ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a0b7d unit.cpp.obj - 0002:0000bb80 ?UNIT_RAID@Nampower@@3QBQBDB 100a0b80 unit.cpp.obj - 0002:0000bc20 ?UNIT_RAIDPET@Nampower@@3QBQBDB 100a0c20 unit.cpp.obj - 0002:0000c040 ?kGuidFormat@?1??FireUnitGuidEvent@Nampower@@YAXABUUnitNames@2@I@Z@4QBDB 100a1040 unit.cpp.obj - 0002:0000c050 ?kCombatGuidFormat@?CO@??CGGameUI_ShowCombatFeedbackHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@4QBDB 100a1050 unit.cpp.obj - 0002:0000c140 ?tokenTable@@3QBUStringLiteral@@B 100a1140 libvcruntime:undname.obj - 0002:0000c1c8 ?nameTable@@3QBUStringLiteral@@B 100a11c8 libvcruntime:undname.obj - 0002:0000c460 ?rttiTable@@3QBUStringLiteral@@B 100a1460 libvcruntime:undname.obj - 0002:0000c488 ?IndirectionName@@3QBUStringLiteral@@B 100a1488 libvcruntime:undname.obj - 0002:0000c4b8 ?PrefixName@@3QBUStringLiteral@@B 100a14b8 libvcruntime:undname.obj - 0002:0000cf98 ?result@?1??IsValidIdentChar@@YA_ND@Z@4U@?1??InitValidIdentChar@@YA@XZ@B 100a1f98 libvcruntime:undname.obj - 0002:0000d0d0 ?module_names@?A0x14174aea@@3QBQB_WB 100a20d0 libvcruntime:winapi_downlevel.obj - 0002:0000d178 ?candidate_modules@?1??try_get_FlsAlloc@@YAP6GKP6GXPAX@Z@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a2178 libvcruntime:winapi_downlevel.obj - 0002:0000d18c ?candidate_modules@?1??try_get_FlsFree@@YAP6GHK@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a218c libvcruntime:winapi_downlevel.obj - 0002:0000d19c ?candidate_modules@?1??try_get_FlsGetValue@@YAP6GPAXK@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a219c libvcruntime:winapi_downlevel.obj - 0002:0000d1b0 ?candidate_modules@?1??try_get_FlsSetValue@@YAP6GHKPAX@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a21b0 libvcruntime:winapi_downlevel.obj - 0002:0000d1c4 ?candidate_modules@?1??try_get_InitializeCriticalSectionEx@@YAP6GHPAU_RTL_CRITICAL_SECTION@@KK@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a21c4 libvcruntime:winapi_downlevel.obj - 0002:0000d3f8 ?errtable@@3QBUerrentry@?A0x31fdb9ec@@B 100a23f8 libucrt:errno.obj - 0002:0000e0c0 _One 100a30c0 libucrt:ceil_pentium4.obj - 0002:0000e0d0 _Bns 100a30d0 libucrt:ceil_pentium4.obj - 0002:0000e0e0 _Zero 100a30e0 libucrt:ceil_pentium4.obj - 0002:0000e0f0 _S 100a30f0 libucrt:ceil_pentium4.obj - 0002:0000e100 _NegZero 100a3100 libucrt:ceil_pentium4.obj - 0002:0000e108 __first_127char 100a3108 libucrt:wsetlocale.obj - 0002:0000e748 ?module_names@?A0x391cf84c@@3QBQB_WB 100a3748 libucrt:winapi_thunks.obj - 0002:0000ec54 ?candidate_modules@?1??try_get_AreFileApisANSI@@YAP6GHXZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3c54 libucrt:winapi_thunks.obj - 0002:0000ec68 ?candidate_modules@?1??try_get_CompareStringEx@@YAP6GHPB_WK0H0HPAU_nlsversioninfo@@PAXJ@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3c68 libucrt:winapi_thunks.obj - 0002:0000ec80 ?candidate_modules@?1??try_get_EnumSystemLocalesEx@@YAP6GHP6GHPA_WKJ@ZKJPAX@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3c80 libucrt:winapi_thunks.obj - 0002:0000ec9c ?candidate_modules@?1??try_get_GetDateFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH0@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3c9c libucrt:winapi_thunks.obj - 0002:0000ecc4 ?candidate_modules@?1??try_get_GetLocaleInfoEx@@YAP6GHPB_WKPA_WH@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3cc4 libucrt:winapi_thunks.obj - 0002:0000ecfc ?candidate_modules@?1??try_get_GetTimeFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3cfc libucrt:winapi_thunks.obj - 0002:0000ed14 ?candidate_modules@?1??try_get_GetUserDefaultLocaleName@@YAP6GHPA_WH@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3d14 libucrt:winapi_thunks.obj - 0002:0000ed38 ?candidate_modules@?1??try_get_InitializeCriticalSectionEx@@YAP6GHPAU_RTL_CRITICAL_SECTION@@KK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3d38 libucrt:winapi_thunks.obj - 0002:0000ed40 ?candidate_modules@?1??try_get_IsValidLocaleName@@YAP6GHPB_W@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3d40 libucrt:winapi_thunks.obj - 0002:0000ed5c ?candidate_modules@?1??try_get_LCMapStringEx@@YAP6GHPB_WK0HPA_WHPAU_nlsversioninfo@@PAXJ@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3d5c libucrt:winapi_thunks.obj - 0002:0000ed74 ?candidate_modules@?1??try_get_LCIDToLocaleName@@YAP6GHKPA_WHK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3d74 libucrt:winapi_thunks.obj - 0002:0000ed90 ?candidate_modules@?1??try_get_LocaleNameToLCID@@YAP6GKPB_WK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3d90 libucrt:winapi_thunks.obj - 0002:0000edac ?candidate_modules@?1??try_get_AppPolicyGetProcessTerminationMethod@@YAP6GJPAXPAW4AppPolicyProcessTerminationMethod@@@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3dac libucrt:winapi_thunks.obj - 0002:0000edd8 ?candidate_modules@?1??try_get_FlsAlloc@@YAP6GKP6GXPAX@Z@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3dd8 libucrt:winapi_thunks.obj - 0002:0000ede0 ?candidate_modules@?1??try_get_FlsFree@@YAP6GHK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3de0 libucrt:winapi_thunks.obj - 0002:0000ede8 ?candidate_modules@?1??try_get_FlsGetValue@@YAP6GPAXK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3de8 libucrt:winapi_thunks.obj - 0002:0000edf0 ?candidate_modules@?1??try_get_FlsSetValue@@YAP6GHKPAX@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a3df0 libucrt:winapi_thunks.obj - 0002:0000edf8 ?strings@?1??fp_format_nan_or_infinity@@YAHW4__acrt_fp_class@@_NPADI1@Z@4QAY03QBDA 100a3df8 libucrt:cvt.obj - 0002:0000ee80 ?_names@?1??_get_fname@@9@4QBU@?1??1@YAPADI@Z@B 100a3e80 libucrt:fpexcept.obj - 0002:0000f048 _over 100a4048 libucrt:fpctrl.obj - 0002:0000f054 _under 100a4054 libucrt:fpctrl.obj - 0002:0000f8c0 ?_mb_locale_names@@3QBQB_WB 100a48c0 libucrt:mbctype.obj - 0002:00010770 ?LcidToLocaleNameTable@?A0x881e4c05@@3QBULcidToLocaleName@1@B 100a5770 libucrt:lcidtoname_downlevel.obj - 0002:00011890 ?LocaleNameToIndexTable@?A0x881e4c05@@3QBULocaleNameIndex@1@B 100a6890 libucrt:lcidtoname_downlevel.obj - 0002:00012870 One 100a7870 libucrt:common.obj - 0002:00012884 DblMax 100a7884 libucrt:common.obj - 0002:0001288c DblMin 100a788c libucrt:common.obj - 0002:00012894 IeeeAdjO 100a7894 libucrt:common.obj - 0002:0001289c IeeeAdjU 100a789c libucrt:common.obj - 0002:000128a4 _infinity 100a78a4 libucrt:common.obj - 0002:000128ac _zero 100a78ac libucrt:common.obj - 0002:000128c0 _NAME_ 100a78c0 libucrt:sqrt_impl.obj - 0002:000128e0 LOG_name 100a78e0 libucrt:log10_impl.obj - 0002:0001290e One 100a790e libucrt:87disp.obj - 0002:00012916 Three 100a7916 libucrt:87disp.obj - 0002:0001291e XAMtoTagTab 100a791e libucrt:87disp.obj - 0002:00012930 emask 100a7930 libucrt:log10_pentium4.obj - 0002:00012940 CC 100a7940 libucrt:log10_pentium4.obj - 0002:00012950 Magic 100a7950 libucrt:log10_pentium4.obj - 0002:00012960 hi_mask 100a7960 libucrt:log10_pentium4.obj - 0002:00012970 LOG10_2 100a7970 libucrt:log10_pentium4.obj - 0002:00012980 place_L 100a7980 libucrt:log10_pentium4.obj - 0002:000129a0 One 100a79a0 libucrt:log10_pentium4.obj - 0002:000129b0 Zero 100a79b0 libucrt:log10_pentium4.obj - 0002:000129c0 Two52 100a79c0 libucrt:log10_pentium4.obj - 0002:000129d0 Infs 100a79d0 libucrt:log10_pentium4.obj - 0002:000129e0 NaN 100a79e0 libucrt:log10_pentium4.obj - 0002:000129f0 coeff 100a79f0 libucrt:log10_pentium4.obj - 0002:00012a4e _log2max 100a7a4e libucrt:87tran.obj - 0002:00012a58 _smallarg 100a7a58 libucrt:87tran.obj - 0002:00012a62 _half 100a7a62 libucrt:87tran.obj - 0002:00013308 ?_Win_errtab@?A0xdad2e229@@3QBU_Win_errtab_t@1@B 100a8308 libcpmt:syserror.obj - 0002:000135a8 ?_Sys_errtab@?A0xdad2e229@@3QBU_Sys_errtab_t@1@B 100a85a8 libcpmt:syserror.obj - 0002:00013e78 ?mods@?1??_Xfsopen@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z@4QBQBDB 100a8e78 libcpmt:fiopen.obj - 0002:00013f10 ?_Whitespace_bitmap@?A0xfa98056f@@3U_Whitespace_bitmap_t@1@B 100a8f10 libcpmt:syserror_import_lib.obj - 0002:00014040 _digits 100a9040 libcpmt:xstoul.obj - 0002:00014068 _ndigs 100a9068 libcpmt:xstoul.obj - 0002:00014090 _digits 100a9090 libcpmt:xstoull.obj - 0002:000140b8 _ndigs 100a90b8 libcpmt:xstoull.obj - 0002:000140f0 _bias_low 100a90f0 LIBCMT:ftol3.obj - 0002:00014100 _bias_high 100a9100 LIBCMT:ftol3.obj - 0002:00014110 _DP2to32 100a9110 LIBCMT:ftol3.obj - 0002:00014118 _NaN 100a9118 LIBCMT:ftol3.obj - 0002:0001411c _onept5 100a911c LIBCMT:ftol3.obj - 0002:00014124 _GS_ExceptionPointers 100a9124 LIBCMT:gs_report.obj - 0002:00014130 two32 100a9130 LIBCMT:ftol2.obj - 0002:00014134 two63 100a9134 LIBCMT:ftol2.obj - 0002:00014138 _NaN 100a9138 LIBCMT:ftol2.obj - 0002:00014150 ___acrt_initializers 100a9150 libucrt:initialization.obj - 0002:00016fc8 _ud_itab__16 100abfc8 udis86:itab.obj - 0002:00016fd8 _ud_itab__32 100abfd8 udis86:itab.obj - 0002:00016fe0 _ud_itab__330 100abfe0 udis86:itab.obj - 0002:00016fe8 _ud_itab__157 100abfe8 udis86:itab.obj - 0002:00016ff0 _ud_itab__208 100abff0 udis86:itab.obj - 0002:00017000 _ud_itab__78 100ac000 udis86:itab.obj - 0002:00017008 _ud_itab__103 100ac008 udis86:itab.obj - 0002:00017010 _ud_itab__200 100ac010 udis86:itab.obj - 0002:00017018 _ud_itab__44 100ac018 udis86:itab.obj - 0002:00017020 _ud_itab__242 100ac020 udis86:itab.obj - 0002:00017028 _ud_itab__87 100ac028 udis86:itab.obj - 0002:00017030 _ud_itab__297 100ac030 udis86:itab.obj - 0002:00017034 _ud_itab__308 100ac034 udis86:itab.obj - 0002:00017038 _ud_itab__107 100ac038 udis86:itab.obj - 0002:00017040 _ud_itab__398 100ac040 udis86:itab.obj - 0002:00017044 _ud_itab__216 100ac044 udis86:itab.obj - 0002:00017054 _ud_itab__350 100ac054 udis86:itab.obj - 0002:00017058 _ud_itab__401 100ac058 udis86:itab.obj - 0002:0001705c _ud_itab__133 100ac05c udis86:itab.obj - 0002:00017064 _ud_itab__413 100ac064 udis86:itab.obj - 0002:00017068 _ud_itab__361 100ac068 udis86:itab.obj - 0002:0001706c _ud_itab__203 100ac06c udis86:itab.obj - 0002:0001707c _ud_itab__282 100ac07c udis86:itab.obj - 0002:00017084 _ud_itab__61 100ac084 udis86:itab.obj - 0002:0001708c _ud_itab__186 100ac08c udis86:itab.obj - 0002:0001709c _ud_itab__429 100ac09c udis86:itab.obj - 0002:000170ac _ud_itab__363 100ac0ac udis86:itab.obj - 0002:000170b0 _ud_itab__271 100ac0b0 udis86:itab.obj - 0002:000170b8 _ud_itab__5 100ac0b8 udis86:itab.obj - 0002:000170c8 _ud_itab__14 100ac0c8 udis86:itab.obj - 0002:000170d8 _ud_itab__121 100ac0d8 udis86:itab.obj - 0002:000170e0 _ud_itab__34 100ac0e0 udis86:itab.obj - 0002:000170e8 _ud_itab__147 100ac0e8 udis86:itab.obj - 0002:000170f0 _ud_itab__115 100ac0f0 udis86:itab.obj - 0002:000170f8 _ud_itab__346 100ac0f8 udis86:itab.obj - 0002:000170fc _ud_itab__213 100ac0fc udis86:itab.obj - 0002:0001710c _ud_itab__143 100ac10c udis86:itab.obj - 0002:00017114 _ud_itab__19 100ac114 udis86:itab.obj - 0002:0001711c _ud_itab__12 100ac11c udis86:itab.obj - 0002:00017124 _ud_itab__267 100ac124 udis86:itab.obj - 0002:0001712c _ud_itab__97 100ac12c udis86:itab.obj - 0002:00017134 _ud_itab__84 100ac134 udis86:itab.obj - 0002:0001713c _ud_itab__150 100ac13c udis86:itab.obj - 0002:00017144 _ud_itab__249 100ac144 udis86:itab.obj - 0002:0001714c _ud_itab__137 100ac14c udis86:itab.obj - 0002:00017158 _ud_itab__116 100ac158 udis86:itab.obj - 0002:00017358 _ud_itab__247 100ac358 udis86:itab.obj - 0002:00017360 _ud_itab__421 100ac360 udis86:itab.obj - 0002:000173e0 _ud_itab__349 100ac3e0 udis86:itab.obj - 0002:000173f0 _ud_itab__327 100ac3f0 udis86:itab.obj - 0002:000173f8 _ud_itab__420 100ac3f8 udis86:itab.obj - 0002:00017408 _ud_itab__156 100ac408 udis86:itab.obj - 0002:00017410 _ud_itab__290 100ac410 udis86:itab.obj - 0002:00017414 _ud_itab__302 100ac414 udis86:itab.obj - 0002:00017424 _ud_itab__402 100ac424 udis86:itab.obj - 0002:00017428 _ud_itab__73 100ac428 udis86:itab.obj - 0002:00017430 _ud_itab__220 100ac430 udis86:itab.obj - 0002:00017440 _ud_itab__118 100ac440 udis86:itab.obj - 0002:00017448 _ud_itab__384 100ac448 udis86:itab.obj - 0002:0001744c _ud_itab__347 100ac44c udis86:itab.obj - 0002:0001745c _ud_itab__366 100ac45c udis86:itab.obj - 0002:00017460 _ud_itab__311 100ac460 udis86:itab.obj - 0002:00017464 _ud_itab__244 100ac464 udis86:itab.obj - 0002:0001746c _ud_itab__270 100ac46c udis86:itab.obj - 0002:00017474 _ud_itab__446 100ac474 udis86:itab.obj - 0002:00017478 _ud_itab__176 100ac478 udis86:itab.obj - 0002:00017480 _ud_itab__445 100ac480 udis86:itab.obj - 0002:00017490 _ud_itab__353 100ac490 udis86:itab.obj - 0002:00017494 _ud_itab__234 100ac494 udis86:itab.obj - 0002:0001749c _ud_itab__390 100ac49c udis86:itab.obj - 0002:000174a0 _ud_itab__68 100ac4a0 udis86:itab.obj - 0002:000174a8 _ud_itab__90 100ac4a8 udis86:itab.obj - 0002:000174b0 _ud_itab__300 100ac4b0 udis86:itab.obj - 0002:000174b8 _ud_itab__141 100ac4b8 udis86:itab.obj - 0002:000174c0 _ud_itab__37 100ac4c0 udis86:itab.obj - 0002:000174c4 _ud_itab__298 100ac4c4 udis86:itab.obj - 0002:000174c8 _ud_itab__356 100ac4c8 udis86:itab.obj - 0002:000174cc _ud_itab__320 100ac4cc udis86:itab.obj - 0002:000174d0 _ud_itab__212 100ac4d0 udis86:itab.obj - 0002:000174e0 _ud_itab__439 100ac4e0 udis86:itab.obj - 0002:00017560 _ud_itab__94 100ac560 udis86:itab.obj - 0002:00017568 _ud_itab__310 100ac568 udis86:itab.obj - 0002:0001756c _ud_itab__56 100ac56c udis86:itab.obj - 0002:00017570 _ud_itab__428 100ac570 udis86:itab.obj - 0002:00017578 _ud_itab__418 100ac578 udis86:itab.obj - 0002:000175f8 _ud_itab__171 100ac5f8 udis86:itab.obj - 0002:00017600 _ud_itab__304 100ac600 udis86:itab.obj - 0002:00017610 _ud_itab__146 100ac610 udis86:itab.obj - 0002:00017618 _ud_itab__396 100ac618 udis86:itab.obj - 0002:0001761c _ud_itab__206 100ac61c udis86:itab.obj - 0002:0001762c _ud_itab__437 100ac62c udis86:itab.obj - 0002:00017630 _ud_itab__333 100ac630 udis86:itab.obj - 0002:00017650 _ud_itab__228 100ac650 udis86:itab.obj - 0002:00017660 _ud_itab__93 100ac660 udis86:itab.obj - 0002:00017668 _ud_itab__405 100ac668 udis86:itab.obj - 0002:00017678 _ud_itab__257 100ac678 udis86:itab.obj - 0002:00017680 _ud_itab__60 100ac680 udis86:itab.obj - 0002:00017684 _ud_itab__71 100ac684 udis86:itab.obj - 0002:0001768c _ud_itab__292 100ac68c udis86:itab.obj - 0002:00017694 _ud_itab__194 100ac694 udis86:itab.obj - 0002:0001769c _ud_itab__132 100ac69c udis86:itab.obj - 0002:000176a4 _ud_itab__43 100ac6a4 udis86:itab.obj - 0002:000176ac _ud_itab__35 100ac6ac udis86:itab.obj - 0002:000176b4 _ud_itab__163 100ac6b4 udis86:itab.obj - 0002:000176bc _ud_itab__364 100ac6bc udis86:itab.obj - 0002:000176c0 _ud_itab__389 100ac6c0 udis86:itab.obj - 0002:000176c4 _ud_itab__67 100ac6c4 udis86:itab.obj - 0002:000176cc _ud_itab__166 100ac6cc udis86:itab.obj - 0002:000176d4 _ud_itab__251 100ac6d4 udis86:itab.obj - 0002:000176dc _ud_itab__344 100ac6dc udis86:itab.obj - 0002:000176e4 _ud_itab__387 100ac6e4 udis86:itab.obj - 0002:000176e8 _ud_itab__52 100ac6e8 udis86:itab.obj - 0002:000176ec _ud_itab__422 100ac6ec udis86:itab.obj - 0002:000176f0 _ud_itab__164 100ac6f0 udis86:itab.obj - 0002:000176f8 _ud_itab__288 100ac6f8 udis86:itab.obj - 0002:000176fc _ud_itab__266 100ac6fc udis86:itab.obj - 0002:00017704 _ud_itab__180 100ac704 udis86:itab.obj - 0002:0001770c _ud_itab__190 100ac70c udis86:itab.obj - 0002:00017714 _ud_itab__22 100ac714 udis86:itab.obj - 0002:0001771c _ud_itab__407 100ac71c udis86:itab.obj - 0002:00017720 _ud_itab__373 100ac720 udis86:itab.obj - 0002:00017728 _ud_itab__341 100ac728 udis86:itab.obj - 0002:00017928 _ud_itab__236 100ac928 udis86:itab.obj - 0002:00017930 _ud_itab__8 100ac930 udis86:itab.obj - 0002:00017940 _ud_itab__172 100ac940 udis86:itab.obj - 0002:00017948 _ud_itab__414 100ac948 udis86:itab.obj - 0002:0001794c _ud_itab__392 100ac94c udis86:itab.obj - 0002:00017950 _ud_itab__260 100ac950 udis86:itab.obj - 0002:00017958 _ud_itab__108 100ac958 udis86:itab.obj - 0002:00017960 _ud_itab__438 100ac960 udis86:itab.obj - 0002:00017970 _ud_itab__151 100ac970 udis86:itab.obj - 0002:00017978 _ud_itab__70 100ac978 udis86:itab.obj - 0002:00017980 _ud_itab__261 100ac980 udis86:itab.obj - 0002:00017988 _ud_itab__411 100ac988 udis86:itab.obj - 0002:00017998 _ud_itab__174 100ac998 udis86:itab.obj - 0002:000179a0 _ud_itab__63 100ac9a0 udis86:itab.obj - 0002:000179a8 _ud_itab__388 100ac9a8 udis86:itab.obj - 0002:000179ac _ud_itab__69 100ac9ac udis86:itab.obj - 0002:000179b4 _ud_itab__359 100ac9b4 udis86:itab.obj - 0002:000179b8 _ud_itab__375 100ac9b8 udis86:itab.obj - 0002:000179c0 _ud_itab__53 100ac9c0 udis86:itab.obj - 0002:000179c8 _ud_itab__343 100ac9c8 udis86:itab.obj - 0002:000179cc _ud_itab__173 100ac9cc udis86:itab.obj - 0002:000179d4 _ud_itab__280 100ac9d4 udis86:itab.obj - 0002:000179dc _ud_itab__165 100ac9dc udis86:itab.obj - 0002:000179e4 _ud_itab__374 100ac9e4 udis86:itab.obj - 0002:000179e8 _ud_itab__91 100ac9e8 udis86:itab.obj - 0002:000179f0 _ud_itab__102 100ac9f0 udis86:itab.obj - 0002:000179f8 _ud_itab__351 100ac9f8 udis86:itab.obj - 0002:00017a00 _ud_itab__352 100aca00 udis86:itab.obj - 0002:00017a04 _ud_itab__193 100aca04 udis86:itab.obj - 0002:00017a0c _ud_itab__33 100aca0c udis86:itab.obj - 0002:00017a14 _ud_itab__129 100aca14 udis86:itab.obj - 0002:00017a1c _ud_itab__372 100aca1c udis86:itab.obj - 0002:00017a20 _ud_itab__321 100aca20 udis86:itab.obj - 0002:00017a24 _ud_itab__98 100aca24 udis86:itab.obj - 0002:00017a2c _ud_itab__272 100aca2c udis86:itab.obj - 0002:00017a34 _ud_itab__325 100aca34 udis86:itab.obj - 0002:00017a38 _ud_itab__245 100aca38 udis86:itab.obj - 0002:00017a40 _ud_itab__198 100aca40 udis86:itab.obj - 0002:00017a48 _ud_itab__403 100aca48 udis86:itab.obj - 0002:00017a68 _ud_itab__436 100aca68 udis86:itab.obj - 0002:00017ae8 _ud_itab__299 100acae8 udis86:itab.obj - 0002:00017aec _ud_itab__256 100acaec udis86:itab.obj - 0002:00017af4 _ud_itab__283 100acaf4 udis86:itab.obj - 0002:00017afc _ud_itab__342 100acafc udis86:itab.obj - 0002:00017b00 _ud_itab__140 100acb00 udis86:itab.obj - 0002:00017b08 _ud_itab__291 100acb08 udis86:itab.obj - 0002:00017b0c _ud_itab__112 100acb0c udis86:itab.obj - 0002:00017b14 _ud_itab__95 100acb14 udis86:itab.obj - 0002:00017b1c _ud_itab__197 100acb1c udis86:itab.obj - 0002:00017b24 _ud_itab__204 100acb24 udis86:itab.obj - 0002:00017b34 _ud_itab__385 100acb34 udis86:itab.obj - 0002:00017b38 _ud_itab__47 100acb38 udis86:itab.obj - 0002:00017b40 _ud_itab__246 100acb40 udis86:itab.obj - 0002:00017b48 _ud_itab__417 100acb48 udis86:itab.obj - 0002:00017b58 _ud_itab__2 100acb58 udis86:itab.obj - 0002:00017b5c _ud_itab__440 100acb5c udis86:itab.obj - 0002:00017b64 _ud_itab__231 100acb64 udis86:itab.obj - 0002:00017d70 _ud_itab__412 100acd70 udis86:itab.obj - 0002:00017d80 _ud_itab__9 100acd80 udis86:itab.obj - 0002:00017d90 _ud_itab__239 100acd90 udis86:itab.obj - 0002:00017d98 _ud_itab__416 100acd98 udis86:itab.obj - 0002:00017d9c _ud_itab__319 100acd9c udis86:itab.obj - 0002:00017da0 _ud_itab__205 100acda0 udis86:itab.obj - 0002:00017db0 _ud_itab__158 100acdb0 udis86:itab.obj - 0002:00017db8 _ud_itab__268 100acdb8 udis86:itab.obj - 0002:00017dc0 _ud_itab__443 100acdc0 udis86:itab.obj - 0002:00017dd0 _ud_itab__263 100acdd0 udis86:itab.obj - 0002:00017dd8 _ud_itab__92 100acdd8 udis86:itab.obj - 0002:00017de0 _ud_itab__119 100acde0 udis86:itab.obj - 0002:00017de8 _ud_itab__226 100acde8 udis86:itab.obj - 0002:00017df0 _ud_itab__104 100acdf0 udis86:itab.obj - 0002:00017df8 _ud_itab__296 100acdf8 udis86:itab.obj - 0002:00017dfc _ud_itab__40 100acdfc udis86:itab.obj - 0002:00017e04 _ud_itab__309 100ace04 udis86:itab.obj - 0002:00017e08 _ud_itab__329 100ace08 udis86:itab.obj - 0002:00017e10 _ud_itab__134 100ace10 udis86:itab.obj - 0002:00017e18 _ud_itab__181 100ace18 udis86:itab.obj - 0002:00017e20 _ud_itab__386 100ace20 udis86:itab.obj - 0002:00017e24 _ud_itab__322 100ace24 udis86:itab.obj - 0002:00017e2c _ud_itab__38 100ace2c udis86:itab.obj - 0002:00017e34 _ud_itab__46 100ace34 udis86:itab.obj - 0002:00017e3c _ud_itab__66 100ace3c udis86:itab.obj - 0002:00017e44 _ud_itab__80 100ace44 udis86:itab.obj - 0002:00017e4c _ud_itab__113 100ace4c udis86:itab.obj - 0002:00017e54 _ud_itab__168 100ace54 udis86:itab.obj - 0002:00017e5c _ud_itab__214 100ace5c udis86:itab.obj - 0002:00017e6c _ud_itab__110 100ace6c udis86:itab.obj - 0002:00017e74 _ud_itab__114 100ace74 udis86:itab.obj - 0002:00017e7c _ud_itab__259 100ace7c udis86:itab.obj - 0002:00017e84 _ud_itab__139 100ace84 udis86:itab.obj - 0002:00017e8c _ud_itab__378 100ace8c udis86:itab.obj - 0002:00017e90 _ud_itab__340 100ace90 udis86:itab.obj - 0002:00017e94 _ud_itab__379 100ace94 udis86:itab.obj - 0002:00017e98 _ud_itab__305 100ace98 udis86:itab.obj - 0002:00017ea0 _ud_itab__394 100acea0 udis86:itab.obj - 0002:000180a0 _ud_itab__225 100ad0a0 udis86:itab.obj - 0002:000180a8 _ud_itab__237 100ad0a8 udis86:itab.obj - 0002:000180b0 _ud_itab__400 100ad0b0 udis86:itab.obj - 0002:000180b4 _ud_itab__419 100ad0b4 udis86:itab.obj - 0002:000180b8 _ud_itab__126 100ad0b8 udis86:itab.obj - 0002:000180c0 _ud_itab__328 100ad0c0 udis86:itab.obj - 0002:000180c8 _ud_itab__238 100ad0c8 udis86:itab.obj - 0002:000180d0 _ud_itab__334 100ad0d0 udis86:itab.obj - 0002:000180d4 _ud_itab__380 100ad0d4 udis86:itab.obj - 0002:000180d8 _ud_itab__10 100ad0d8 udis86:itab.obj - 0002:000180e0 _ud_itab__42 100ad0e0 udis86:itab.obj - 0002:000180e8 _ud_itab__24 100ad0e8 udis86:itab.obj - 0002:000180f0 _ud_itab__371 100ad0f0 udis86:itab.obj - 0002:000180f4 _ud_itab__218 100ad0f4 udis86:itab.obj - 0002:00018104 _ud_itab__136 100ad104 udis86:itab.obj - 0002:0001810c _ud_itab__17 100ad10c udis86:itab.obj - 0002:00018114 _ud_itab__7 100ad114 udis86:itab.obj - 0002:00018124 _ud_itab__106 100ad124 udis86:itab.obj - 0002:0001812c _ud_itab__339 100ad12c udis86:itab.obj - 0002:0001813c _ud_itab__243 100ad13c udis86:itab.obj - 0002:00018144 _ud_itab__355 100ad144 udis86:itab.obj - 0002:00018148 _ud_itab__3 100ad148 udis86:itab.obj - 0002:0001814c _ud_itab__170 100ad14c udis86:itab.obj - 0002:00018154 _ud_itab__254 100ad154 udis86:itab.obj - 0002:0001815c _ud_itab__144 100ad15c udis86:itab.obj - 0002:00018168 _ud_itab__427 100ad168 udis86:itab.obj - 0002:000181e8 _ud_itab__273 100ad1e8 udis86:itab.obj - 0002:000181f0 _ud_itab__142 100ad1f0 udis86:itab.obj - 0002:000181f8 _ud_itab__294 100ad1f8 udis86:itab.obj - 0002:000181fc _ud_itab__348 100ad1fc udis86:itab.obj - 0002:00018200 _ud_itab__36 100ad200 udis86:itab.obj - 0002:00018208 _ud_itab__224 100ad208 udis86:itab.obj - 0002:00018210 _ud_itab__65 100ad210 udis86:itab.obj - 0002:00018218 _ud_itab__192 100ad218 udis86:itab.obj - 0002:00018220 _ud_itab__395 100ad220 udis86:itab.obj - 0002:00018224 _ud_itab__382 100ad224 udis86:itab.obj - 0002:00018228 _ud_itab__410 100ad228 udis86:itab.obj - 0002:00018238 _ud_itab__376 100ad238 udis86:itab.obj - 0002:0001823c _ud_itab__76 100ad23c udis86:itab.obj - 0002:00018244 _ud_itab__155 100ad244 udis86:itab.obj - 0002:0001824c _ud_itab__109 100ad24c udis86:itab.obj - 0002:00018254 _ud_itab__415 100ad254 udis86:itab.obj - 0002:00018258 _ud_itab__279 100ad258 udis86:itab.obj - 0002:00018260 _ud_itab__295 100ad260 udis86:itab.obj - 0002:00018268 _ud_itab__29 100ad268 udis86:itab.obj - 0002:00018270 _ud_itab__354 100ad270 udis86:itab.obj - 0002:00018274 _ud_itab__27 100ad274 udis86:itab.obj - 0002:00018284 _ud_itab__82 100ad284 udis86:itab.obj - 0002:0001828c _ud_itab__15 100ad28c udis86:itab.obj - 0002:0001829c _ud_itab__199 100ad29c udis86:itab.obj - 0002:000182a4 _ud_itab__21 100ad2a4 udis86:itab.obj - 0002:000182ac _ud_itab__179 100ad2ac udis86:itab.obj - 0002:000182b4 _ud_itab__217 100ad2b4 udis86:itab.obj - 0002:000182c4 _ud_itab__435 100ad2c4 udis86:itab.obj - 0002:000182d4 _ud_itab__303 100ad2d4 udis86:itab.obj - 0002:000182e4 _ud_itab__250 100ad2e4 udis86:itab.obj - 0002:000182ec _ud_itab__331 100ad2ec udis86:itab.obj - 0002:000182fc _ud_itab__441 100ad2fc udis86:itab.obj - 0002:00018300 _ud_itab__399 100ad300 udis86:itab.obj - 0002:00018500 _ud_itab__301 100ad500 udis86:itab.obj - 0002:00018508 _ud_itab__196 100ad508 udis86:itab.obj - 0002:00018510 _ud_itab__281 100ad510 udis86:itab.obj - 0002:00018518 _ud_itab__152 100ad518 udis86:itab.obj - 0002:00018520 _ud_itab__209 100ad520 udis86:itab.obj - 0002:00018530 _ud_itab__397 100ad530 udis86:itab.obj - 0002:00018534 _ud_itab__177 100ad534 udis86:itab.obj - 0002:0001853c _ud_itab__368 100ad53c udis86:itab.obj - 0002:00018540 _ud_itab__430 100ad540 udis86:itab.obj - 0002:000185c0 _ud_itab__336 100ad5c0 udis86:itab.obj - 0002:000185c4 _ud_itab__258 100ad5c4 udis86:itab.obj - 0002:000185cc _ud_itab__135 100ad5cc udis86:itab.obj - 0002:000185d4 _ud_itab__223 100ad5d4 udis86:itab.obj - 0002:000185dc _ud_itab__178 100ad5dc udis86:itab.obj - 0002:000185ec _ud_itab__81 100ad5ec udis86:itab.obj - 0002:000185f4 _ud_itab__101 100ad5f4 udis86:itab.obj - 0002:000185fc _ud_itab__442 100ad5fc udis86:itab.obj - 0002:0001860c _ud_itab__235 100ad60c udis86:itab.obj - 0002:0001861c _ud_itab__123 100ad61c udis86:itab.obj - 0002:00018624 _ud_itab__11 100ad624 udis86:itab.obj - 0002:0001862c _ud_itab__153 100ad62c udis86:itab.obj - 0002:00018634 _ud_itab__377 100ad634 udis86:itab.obj - 0002:00018638 _ud_itab__289 100ad638 udis86:itab.obj - 0002:00018640 _ud_itab__424 100ad640 udis86:itab.obj - 0002:000186c0 _ud_itab__408 100ad6c0 udis86:itab.obj - 0002:000186c8 _ud_itab__434 100ad6c8 udis86:itab.obj - 0002:000186cc _ud_itab__426 100ad6cc udis86:itab.obj - 0002:000186dc _ud_itab__25 100ad6dc udis86:itab.obj - 0002:000186f0 _ud_itab__357 100ad6f0 udis86:itab.obj - 0002:000188f0 _ud_itab__369 100ad8f0 udis86:itab.obj - 0002:00018af0 _ud_itab__221 100adaf0 udis86:itab.obj - 0002:00018af8 _ud_itab__215 100adaf8 udis86:itab.obj - 0002:00018afc _ud_itab__210 100adafc udis86:itab.obj - 0002:00018b0c _ud_itab__232 100adb0c udis86:itab.obj - 0002:00018b14 _ud_itab__169 100adb14 udis86:itab.obj - 0002:00018b1c _ud_itab__120 100adb1c udis86:itab.obj - 0002:00018b24 _ud_itab__383 100adb24 udis86:itab.obj - 0002:00018b28 _ud_itab__219 100adb28 udis86:itab.obj - 0002:00018b38 _ud_itab__195 100adb38 udis86:itab.obj - 0002:00018b40 _ud_itab__57 100adb40 udis86:itab.obj - 0002:00018b48 _ud_itab__264 100adb48 udis86:itab.obj - 0002:00018b50 _ud_itab__240 100adb50 udis86:itab.obj - 0002:00018b58 _ud_itab__423 100adb58 udis86:itab.obj - 0002:00018b68 _ud_itab__358 100adb68 udis86:itab.obj - 0002:00018b6c _ud_itab__26 100adb6c udis86:itab.obj - 0002:00018b74 _ud_itab__188 100adb74 udis86:itab.obj - 0002:00018b7c _ud_itab__191 100adb7c udis86:itab.obj - 0002:00018b84 _ud_itab__149 100adb84 udis86:itab.obj - 0002:00018b8c _ud_itab__74 100adb8c udis86:itab.obj - 0002:00018b94 _ud_itab__362 100adb94 udis86:itab.obj - 0002:00018b98 _ud_itab__287 100adb98 udis86:itab.obj - 0002:00018b9c _ud_itab__48 100adb9c udis86:itab.obj - 0002:00018ba4 _ud_itab__159 100adba4 udis86:itab.obj - 0002:00018bac _ud_itab__211 100adbac udis86:itab.obj - 0002:00018bbc _ud_itab__64 100adbbc udis86:itab.obj - 0002:00018bc4 _ud_itab__337 100adbc4 udis86:itab.obj - 0002:00018bc8 _ud_itab__433 100adbc8 udis86:itab.obj - 0002:00018c48 _ud_itab__55 100adc48 udis86:itab.obj - 0002:00018c50 _ud_itab__45 100adc50 udis86:itab.obj - 0002:00018c58 _ud_itab__317 100adc58 udis86:itab.obj - 0002:00018c5c _ud_itab__31 100adc5c udis86:itab.obj - 0002:00018c60 _ud_itab__332 100adc60 udis86:itab.obj - 0002:00018c70 _ud_itab__315 100adc70 udis86:itab.obj - 0002:00018c78 _ud_itab__318 100adc78 udis86:itab.obj - 0002:00018c80 _ud_itab__13 100adc80 udis86:itab.obj - 0002:00018c88 _ud_itab__432 100adc88 udis86:itab.obj - 0002:00018c98 _ud_itab__49 100adc98 udis86:itab.obj - 0002:00018ca0 _ud_itab__58 100adca0 udis86:itab.obj - 0002:00018ca8 _ud_itab__128 100adca8 udis86:itab.obj - 0002:00018cb0 _ud_itab__409 100adcb0 udis86:itab.obj - 0002:00018cc0 _ud_itab__201 100adcc0 udis86:itab.obj - 0002:00018cc8 _ud_itab__154 100adcc8 udis86:itab.obj - 0002:00018cd0 _ud_itab__314 100adcd0 udis86:itab.obj - 0002:00018ce0 _ud_itab__326 100adce0 udis86:itab.obj - 0002:00018ce8 _ud_itab__313 100adce8 udis86:itab.obj - 0002:00018cf8 _ud_itab__365 100adcf8 udis86:itab.obj - 0002:00018d00 _ud_itab__335 100add00 udis86:itab.obj - 0002:00018f00 _ud_itab__241 100adf00 udis86:itab.obj - 0002:00018f08 _ud_itab__162 100adf08 udis86:itab.obj - 0002:00018f10 _ud_itab__72 100adf10 udis86:itab.obj - 0002:00018f18 _ud_itab__275 100adf18 udis86:itab.obj - 0002:00018f1c _ud_itab__160 100adf1c udis86:itab.obj - 0002:00018f24 _ud_itab__182 100adf24 udis86:itab.obj - 0002:00018f34 _ud_itab__131 100adf34 udis86:itab.obj - 0002:00018f3c _ud_itab__269 100adf3c udis86:itab.obj - 0002:00018f44 _ud_itab__51 100adf44 udis86:itab.obj - 0002:00018f4c _ud_itab__117 100adf4c udis86:itab.obj - 0002:00018f54 _ud_itab__391 100adf54 udis86:itab.obj - 0002:00018f58 _ud_itab__367 100adf58 udis86:itab.obj - 0002:00018f5c _ud_itab__284 100adf5c udis86:itab.obj - 0002:00018f60 _ud_itab__262 100adf60 udis86:itab.obj - 0002:00018f68 _ud_itab__425 100adf68 udis86:itab.obj - 0002:00018f6c _ud_itab__338 100adf6c udis86:itab.obj - 0002:00018f70 _ud_itab__393 100adf70 udis86:itab.obj - 0002:00018f74 _ud_itab__122 100adf74 udis86:itab.obj - 0002:00018f7c _ud_itab__79 100adf7c udis86:itab.obj - 0002:00018f84 _ud_itab__265 100adf84 udis86:itab.obj - 0002:00018f8c _ud_itab__6 100adf8c udis86:itab.obj - 0002:00018f90 _ud_itab__85 100adf90 udis86:itab.obj - 0002:00018f98 _ud_itab__276 100adf98 udis86:itab.obj - 0002:00018fa0 _ud_itab__202 100adfa0 udis86:itab.obj - 0002:00018fa4 _ud_itab__148 100adfa4 udis86:itab.obj - 0002:00018fb0 _ud_itab__54 100adfb0 udis86:itab.obj - 0002:000191b0 _ud_itab__89 100ae1b0 udis86:itab.obj - 0002:000191b8 _ud_itab__274 100ae1b8 udis86:itab.obj - 0002:000191c0 _ud_itab__312 100ae1c0 udis86:itab.obj - 0002:000191c4 _ud_itab__187 100ae1c4 udis86:itab.obj - 0002:000191cc _ud_itab__381 100ae1cc udis86:itab.obj - 0002:000191d0 _ud_itab__185 100ae1d0 udis86:itab.obj - 0002:000191d8 _ud_itab__316 100ae1d8 udis86:itab.obj - 0002:000191e0 _ud_itab__253 100ae1e0 udis86:itab.obj - 0002:000191e8 _ud_itab__130 100ae1e8 udis86:itab.obj - 0002:000191f0 _ud_itab__39 100ae1f0 udis86:itab.obj - 0002:000191f8 _ud_itab__175 100ae1f8 udis86:itab.obj - 0002:00019200 _ud_itab__145 100ae200 udis86:itab.obj - 0002:00019208 _ud_itab__167 100ae208 udis86:itab.obj - 0002:00019210 _ud_itab__255 100ae210 udis86:itab.obj - 0002:00019218 _ud_itab__323 100ae218 udis86:itab.obj - 0002:0001921c _ud_itab__30 100ae21c udis86:itab.obj - 0002:00019224 _ud_itab__370 100ae224 udis86:itab.obj - 0002:00019228 _ud_itab__233 100ae228 udis86:itab.obj - 0002:00019230 _ud_itab__444 100ae230 udis86:itab.obj - 0002:00019240 _ud_itab__229 100ae240 udis86:itab.obj - 0002:00019248 _ud_itab__100 100ae248 udis86:itab.obj - 0002:00019250 _ud_itab__1 100ae250 udis86:itab.obj - 0002:00019254 _ud_itab__207 100ae254 udis86:itab.obj - 0002:00019258 _ud_itab__184 100ae258 udis86:itab.obj - 0002:00019260 _ud_itab__138 100ae260 udis86:itab.obj - 0002:00019268 _ud_itab__293 100ae268 udis86:itab.obj - 0002:0001926c _ud_itab__227 100ae26c udis86:itab.obj - 0002:00019270 _ud_itab__83 100ae270 udis86:itab.obj - 0002:00019278 _ud_itab__41 100ae278 udis86:itab.obj - 0002:00019288 _ud_itab__252 100ae288 udis86:itab.obj - 0002:00019290 _ud_itab__4 100ae290 udis86:itab.obj - 0002:00019490 _ud_itab__324 100ae490 udis86:itab.obj - 0002:00019494 _ud_itab__99 100ae494 udis86:itab.obj - 0002:0001949c _ud_itab__307 100ae49c udis86:itab.obj - 0002:000194a0 _ud_itab__127 100ae4a0 udis86:itab.obj - 0002:000194a8 _ud_itab__20 100ae4a8 udis86:itab.obj - 0002:000194b0 _ud_itab__222 100ae4b0 udis86:itab.obj - 0002:000194c0 _ud_itab__105 100ae4c0 udis86:itab.obj - 0002:000194c8 _ud_itab__86 100ae4c8 udis86:itab.obj - 0002:000194d0 _ud_itab__124 100ae4d0 udis86:itab.obj - 0002:000194d8 _ud_itab__18 100ae4d8 udis86:itab.obj - 0002:000194e0 _ud_itab__285 100ae4e0 udis86:itab.obj - 0002:000194e4 _ud_itab__306 100ae4e4 udis86:itab.obj - 0002:000194e8 _ud_itab__28 100ae4e8 udis86:itab.obj - 0002:000196e8 _ud_itab__23 100ae6e8 udis86:itab.obj - 0002:000196f0 _ud_itab__189 100ae6f0 udis86:itab.obj - 0002:000196f8 _ud_itab__88 100ae6f8 udis86:itab.obj - 0002:00019700 _ud_itab__111 100ae700 udis86:itab.obj - 0002:00019708 _ud_itab__431 100ae708 udis86:itab.obj - 0002:0001970c _ud_itab__96 100ae70c udis86:itab.obj - 0002:00019714 _ud_itab__277 100ae714 udis86:itab.obj - 0002:0001971c _ud_itab__161 100ae71c udis86:itab.obj - 0002:00019724 _ud_itab__286 100ae724 udis86:itab.obj - 0002:00019728 _ud_itab__278 100ae728 udis86:itab.obj - 0002:00019730 _ud_itab__230 100ae730 udis86:itab.obj - 0002:00019738 _ud_itab__406 100ae738 udis86:itab.obj - 0002:00019748 _ud_itab__77 100ae748 udis86:itab.obj - 0002:00019750 _ud_itab__248 100ae750 udis86:itab.obj - 0002:00019758 _ud_itab__183 100ae758 udis86:itab.obj - 0002:00019760 _ud_itab__59 100ae760 udis86:itab.obj - 0002:00019768 _ud_itab__404 100ae768 udis86:itab.obj - 0002:0001976c _ud_itab__125 100ae76c udis86:itab.obj - 0002:00019774 _ud_itab__75 100ae774 udis86:itab.obj - 0002:0001977c _ud_itab__360 100ae77c udis86:itab.obj - 0002:00019780 _ud_itab__345 100ae780 udis86:itab.obj - 0002:00019790 _ud_itab__62 100ae790 udis86:itab.obj - 0002:00019798 _ud_itab__50 100ae798 udis86:itab.obj - 0002:0001d980 __unwindtable$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b2980 logging.cpp.obj - 0002:0001d990 __ehfuncinfo$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b2990 logging.cpp.obj - 0002:0001d9b4 __ehfuncinfo$??0_Locinfo@std@@QAE@PBD@Z 100b29b4 logging.cpp.obj - 0002:0001d9d8 __unwindtable$??0_Locinfo@std@@QAE@PBD@Z 100b29d8 logging.cpp.obj - 0002:0001da10 __ehfuncinfo$??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 100b2a10 logging.cpp.obj - 0002:0001da10 __ehfuncinfo$??1_Locinfo@std@@QAE@XZ 100b2a10 logging.cpp.obj - 0002:0001da10 __ehfuncinfo$??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 100b2a10 main.cpp.obj - 0002:0001da10 __ehfuncinfo$??1CDataStore@Nampower@@UAE@XZ 100b2a10 main.cpp.obj - 0002:0001da10 __ehfuncinfo$??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100b2a10 main.cpp.obj - 0002:0001da10 __ehfuncinfo$?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 100b2a10 libucrt:mbstowcs.obj - 0002:0001da10 __ehfuncinfo$?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 100b2a10 libucrt:write.obj - 0002:0001da10 __ehfuncinfo$?try_cor_exit_process@@YAXI@Z 100b2a10 libucrt:exit.obj - 0002:0001da10 __ehfuncinfo$?_Tidy@ios_base@std@@AAEXXZ 100b2a10 libcpmt:ios.obj - 0002:0001da10 __ehfuncinfo$??1_Init_atexit@@QAE@XZ 100b2a10 libcpmt:iosptrs.obj - 0002:0001da10 __ehfuncinfo$___crtGetSystemTimePreciseAsFileTime 100b2a10 libcpmt:winapisupp.obj - 0002:0001da34 __unwindtable$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 100b2a34 logging.cpp.obj - 0002:0001da4c __ehfuncinfo$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 100b2a4c logging.cpp.obj - 0002:0001da70 __unwindtable$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 100b2a70 logging.cpp.obj - 0002:0001da70 __unwindtable$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 100b2a70 main.cpp.obj - 0002:0001da70 __unwindtable$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 100b2a70 spellcast.cpp.obj - 0002:0001da78 __ehfuncinfo$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 100b2a78 logging.cpp.obj - 0002:0001da78 __ehfuncinfo$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 100b2a78 main.cpp.obj - 0002:0001da78 __ehfuncinfo$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 100b2a78 spellcast.cpp.obj - 0002:0001da9c __unwindtable$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 100b2a9c logging.cpp.obj - 0002:0001da9c __unwindtable$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b2a9c logging.cpp.obj - 0002:0001da9c __unwindtable$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2a9c logging.cpp.obj - 0002:0001da9c __unwindtable$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2a9c logging.cpp.obj - 0002:0001da9c __unwindtable$??_Gios_base@std@@UAEPAXI@Z 100b2a9c logging.cpp.obj - 0002:0001da9c __unwindtable$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??1bad_alloc_@exception_detail@boost@@UAE@XZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??1bad_exception_@exception_detail@boost@@UAE@XZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??1exception@boost@@MAE@XZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_DError@hadesmem@@QAEXXZ 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_GCDataStore@Nampower@@UAEPAXI@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_GError@hadesmem@@UAEPAXI@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 100b2a9c main.cpp.obj - 0002:0001da9c __unwindtable$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 100b2a9c libucrt:exit.obj - 0002:0001daa4 __ehfuncinfo$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 100b2aa4 logging.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b2aa4 logging.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2aa4 logging.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2aa4 logging.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_Gios_base@std@@UAEPAXI@Z 100b2aa4 logging.cpp.obj - 0002:0001daa4 __ehfuncinfo$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??1bad_alloc_@exception_detail@boost@@UAE@XZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??1bad_exception_@exception_detail@boost@@UAE@XZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??1exception@boost@@MAE@XZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_DError@hadesmem@@QAEXXZ 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_GCDataStore@Nampower@@UAEPAXI@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_GError@hadesmem@@UAEPAXI@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 100b2aa4 main.cpp.obj - 0002:0001daa4 __ehfuncinfo$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 100b2aa4 libucrt:exit.obj - 0002:0001dac8 __unwindtable$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 100b2ac8 logging.cpp.obj - 0002:0001dad8 __ehfuncinfo$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 100b2ad8 logging.cpp.obj - 0002:0001dafc __unwindtable$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 100b2afc logging.cpp.obj - 0002:0001db14 __ehfuncinfo$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 100b2b14 logging.cpp.obj - 0002:0001db38 __unwindtable$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 100b2b38 logging.cpp.obj - 0002:0001db38 __unwindtable$??__FdebugLogFile@Nampower@@YAXXZ 100b2b38 logging.cpp.obj - 0002:0001db38 __unwindtable$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 100b2b38 main.cpp.obj - 0002:0001db38 __unwindtable$__execute_onexit_table 100b2b38 libucrt:onexit.obj - 0002:0001db40 __ehfuncinfo$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 100b2b40 logging.cpp.obj - 0002:0001db40 __ehfuncinfo$??__FdebugLogFile@Nampower@@YAXXZ 100b2b40 logging.cpp.obj - 0002:0001db40 __ehfuncinfo$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 100b2b40 main.cpp.obj - 0002:0001db40 __ehfuncinfo$__execute_onexit_table 100b2b40 libucrt:onexit.obj - 0002:0001db64 __unwindtable$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100b2b64 logging.cpp.obj - 0002:0001db64 __unwindtable$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b2b64 spellevents.cpp.obj - 0002:0001db6c __ehfuncinfo$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100b2b6c logging.cpp.obj - 0002:0001db6c __ehfuncinfo$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b2b6c spellevents.cpp.obj - 0002:0001db90 __unwindtable$??__EdebugLogFile@Nampower@@YAXXZ 100b2b90 logging.cpp.obj - 0002:0001dba8 __ehfuncinfo$??__EdebugLogFile@Nampower@@YAXXZ 100b2ba8 logging.cpp.obj - 0002:0001dbcc __unwindtable$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 100b2bcc logging.cpp.obj - 0002:0001dbcc __unwindtable$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100b2bcc main.cpp.obj - 0002:0001dbe4 __ehfuncinfo$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 100b2be4 logging.cpp.obj - 0002:0001dbe4 __ehfuncinfo$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100b2be4 main.cpp.obj - 0002:0001dd4c __unwindtable$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 100b2d4c main.cpp.obj - 0002:0001dd64 __ehfuncinfo$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 100b2d64 main.cpp.obj - 0002:0001dd88 __catchsym$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$3 100b2d88 main.cpp.obj - 0002:0001dd98 __tryblocktable$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 100b2d98 main.cpp.obj - 0002:0001ddac __unwindtable$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 100b2dac main.cpp.obj - 0002:0001ddc4 __ehfuncinfo$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 100b2dc4 main.cpp.obj - 0002:0001dde8 __unwindtable$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 100b2de8 main.cpp.obj - 0002:0001de08 __ehfuncinfo$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 100b2e08 main.cpp.obj - 0002:0001de2c __unwindtable$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 100b2e2c main.cpp.obj - 0002:0001de34 __ehfuncinfo$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 100b2e34 main.cpp.obj - 0002:0001de58 __unwindtable$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 100b2e58 main.cpp.obj - 0002:0001de60 __ehfuncinfo$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 100b2e60 main.cpp.obj - 0002:0001de84 __unwindtable$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 100b2e84 main.cpp.obj - 0002:0001de9c __ehfuncinfo$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 100b2e9c main.cpp.obj - 0002:0001dec0 __ehfuncinfo$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 100b2ec0 main.cpp.obj - 0002:0001dee4 __unwindtable$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 100b2ee4 main.cpp.obj - 0002:0001df14 __catchsym$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ$2 100b2f14 main.cpp.obj - 0002:0001df24 __unwindtable$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b2f24 main.cpp.obj - 0002:0001df34 __tryblocktable$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b2f34 main.cpp.obj - 0002:0001df48 __ehfuncinfo$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b2f48 main.cpp.obj - 0002:0001df6c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$7 100b2f6c main.cpp.obj - 0002:0001df7c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 100b2f7c main.cpp.obj - 0002:0001df90 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 100b2f90 main.cpp.obj - 0002:0001dfb4 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 100b2fb4 main.cpp.obj - 0002:0001dfdc __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$7 100b2fdc main.cpp.obj - 0002:0001dfec __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100b2fec main.cpp.obj - 0002:0001e000 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100b3000 main.cpp.obj - 0002:0001e024 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100b3024 main.cpp.obj - 0002:0001e04c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$7 100b304c main.cpp.obj - 0002:0001e04c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$7 100b304c main.cpp.obj - 0002:0001e05c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 100b305c main.cpp.obj - 0002:0001e05c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 100b305c main.cpp.obj - 0002:0001e070 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 100b3070 main.cpp.obj - 0002:0001e070 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 100b3070 main.cpp.obj - 0002:0001e094 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 100b3094 main.cpp.obj - 0002:0001e094 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 100b3094 main.cpp.obj - 0002:0001e0bc __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$7 100b30bc main.cpp.obj - 0002:0001e0cc __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100b30cc main.cpp.obj - 0002:0001e0e0 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100b30e0 main.cpp.obj - 0002:0001e104 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100b3104 main.cpp.obj - 0002:0001e12c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$7 100b312c main.cpp.obj - 0002:0001e13c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100b313c main.cpp.obj - 0002:0001e150 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100b3150 main.cpp.obj - 0002:0001e174 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100b3174 main.cpp.obj - 0002:0001e19c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$7 100b319c main.cpp.obj - 0002:0001e1ac __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100b31ac main.cpp.obj - 0002:0001e1c0 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100b31c0 main.cpp.obj - 0002:0001e1e4 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100b31e4 main.cpp.obj - 0002:0001e20c __catchsym$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$5 100b320c main.cpp.obj - 0002:0001e21c __tryblocktable$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 100b321c main.cpp.obj - 0002:0001e230 __unwindtable$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 100b3230 main.cpp.obj - 0002:0001e250 __ehfuncinfo$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 100b3250 main.cpp.obj - 0002:0001e274 __catchsym$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$11 100b3274 main.cpp.obj - 0002:0001e284 __tryblocktable$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 100b3284 main.cpp.obj - 0002:0001e298 __unwindtable$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 100b3298 main.cpp.obj - 0002:0001e2b8 __ehfuncinfo$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 100b32b8 main.cpp.obj - 0002:0001e2dc __unwindtable$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 100b32dc main.cpp.obj - 0002:0001e2f4 __ehfuncinfo$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 100b32f4 main.cpp.obj - 0002:0001e318 __unwindtable$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 100b3318 main.cpp.obj - 0002:0001e320 __ehfuncinfo$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 100b3320 main.cpp.obj - 0002:0001e344 __catchsym$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$5 100b3344 main.cpp.obj - 0002:0001e354 __tryblocktable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 100b3354 main.cpp.obj - 0002:0001e368 __unwindtable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 100b3368 main.cpp.obj - 0002:0001e388 __ehfuncinfo$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 100b3388 main.cpp.obj - 0002:0001e3ac __unwindtable$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 100b33ac main.cpp.obj - 0002:0001e3cc __ehfuncinfo$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 100b33cc main.cpp.obj - 0002:0001e3f0 __unwindtable$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 100b33f0 main.cpp.obj - 0002:0001e400 __tryblocktable$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 100b3400 main.cpp.obj - 0002:0001e414 __catchsym$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ$3 100b3414 main.cpp.obj - 0002:0001e434 __ehfuncinfo$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 100b3434 main.cpp.obj - 0002:0001e458 __unwindtable$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 100b3458 main.cpp.obj - 0002:0001e468 __tryblocktable$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 100b3468 main.cpp.obj - 0002:0001e47c __catchsym$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ$3 100b347c main.cpp.obj - 0002:0001e49c __ehfuncinfo$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 100b349c main.cpp.obj - 0002:0001e4c0 __catchsym$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$5 100b34c0 main.cpp.obj - 0002:0001e4d0 __tryblocktable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 100b34d0 main.cpp.obj - 0002:0001e4e4 __unwindtable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 100b34e4 main.cpp.obj - 0002:0001e504 __ehfuncinfo$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 100b3504 main.cpp.obj - 0002:0001e528 __unwindtable$??0Error@hadesmem@@QAE@ABV01@@Z 100b3528 main.cpp.obj - 0002:0001e530 __ehfuncinfo$??0Error@hadesmem@@QAE@ABV01@@Z 100b3530 main.cpp.obj - 0002:0001e554 __unwindtable$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 100b3554 main.cpp.obj - 0002:0001e564 __ehfuncinfo$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 100b3564 main.cpp.obj - 0002:0001e588 __unwindtable$??0Thread@hadesmem@@QAE@K@Z 100b3588 main.cpp.obj - 0002:0001e588 __unwindtable$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 100b3588 main.cpp.obj - 0002:0001e588 __unwindtable$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 100b3588 main.cpp.obj - 0002:0001e588 __unwindtable$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b3588 main.cpp.obj - 0002:0001e588 __unwindtable$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b3588 main.cpp.obj - 0002:0001e5a8 __ehfuncinfo$??0Thread@hadesmem@@QAE@K@Z 100b35a8 main.cpp.obj - 0002:0001e5a8 __ehfuncinfo$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 100b35a8 main.cpp.obj - 0002:0001e5a8 __ehfuncinfo$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 100b35a8 main.cpp.obj - 0002:0001e5a8 __ehfuncinfo$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b35a8 main.cpp.obj - 0002:0001e5a8 __ehfuncinfo$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b35a8 main.cpp.obj - 0002:0001e5cc __unwindtable$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 100b35cc main.cpp.obj - 0002:0001e5cc __unwindtable$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 100b35cc main.cpp.obj - 0002:0001e5cc __unwindtable$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 100b35cc main.cpp.obj - 0002:0001e5cc __unwindtable$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 100b35cc main.cpp.obj - 0002:0001e5ec __ehfuncinfo$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 100b35ec main.cpp.obj - 0002:0001e5ec __ehfuncinfo$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 100b35ec main.cpp.obj - 0002:0001e5ec __ehfuncinfo$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 100b35ec main.cpp.obj - 0002:0001e5ec __ehfuncinfo$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 100b35ec main.cpp.obj - 0002:0001e610 __catchsym$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$3 100b3610 main.cpp.obj - 0002:0001e620 __tryblocktable$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b3620 main.cpp.obj - 0002:0001e634 __unwindtable$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b3634 main.cpp.obj - 0002:0001e64c __ehfuncinfo$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b364c main.cpp.obj - 0002:0001e670 __unwindtable$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 100b3670 main.cpp.obj - 0002:0001e690 __ehfuncinfo$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 100b3690 main.cpp.obj - 0002:0001e6b4 __ehfuncinfo$??0Process@hadesmem@@QAE@K@Z 100b36b4 main.cpp.obj - 0002:0001e6d8 __unwindtable$??0Process@hadesmem@@QAE@K@Z 100b36d8 main.cpp.obj - 0002:0001e718 __catchsym$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$3 100b3718 main.cpp.obj - 0002:0001e728 __tryblocktable$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 100b3728 main.cpp.obj - 0002:0001e73c __unwindtable$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 100b373c main.cpp.obj - 0002:0001e754 __ehfuncinfo$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 100b3754 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 100b3778 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 100b3778 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 100b3778 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 100b3778 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 100b3778 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 100b3778 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 100b3778 main.cpp.obj - 0002:0001e778 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 100b3778 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 100b3798 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 100b3798 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 100b3798 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 100b3798 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 100b3798 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 100b3798 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 100b3798 main.cpp.obj - 0002:0001e798 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 100b3798 main.cpp.obj - 0002:0001e7bc __catchsym$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$7 100b37bc main.cpp.obj - 0002:0001e7cc __tryblocktable$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 100b37cc main.cpp.obj - 0002:0001e7e0 __ehfuncinfo$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 100b37e0 main.cpp.obj - 0002:0001e804 __unwindtable$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 100b3804 main.cpp.obj - 0002:0001e83c __catchsym$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$3 100b383c main.cpp.obj - 0002:0001e84c __tryblocktable$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100b384c main.cpp.obj - 0002:0001e860 __unwindtable$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100b3860 main.cpp.obj - 0002:0001e878 __ehfuncinfo$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100b3878 main.cpp.obj - 0002:0001e89c __ehfuncinfo$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 100b389c main.cpp.obj - 0002:0001e8c0 __unwindtable$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 100b38c0 main.cpp.obj - 0002:0001e8e8 __catchsym$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$7 100b38e8 main.cpp.obj - 0002:0001e8f8 __tryblocktable$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b38f8 main.cpp.obj - 0002:0001e90c __ehfuncinfo$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b390c main.cpp.obj - 0002:0001e930 __unwindtable$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b3930 main.cpp.obj - 0002:0001e968 __unwindtable$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100b3968 main.cpp.obj - 0002:0001e988 __ehfuncinfo$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100b3988 main.cpp.obj - 0002:0001e9ac __unwindtable$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b39ac main.cpp.obj - 0002:0001e9ac __unwindtable$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b39ac main.cpp.obj - 0002:0001e9b4 __ehfuncinfo$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b39b4 main.cpp.obj - 0002:0001e9b4 __ehfuncinfo$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b39b4 main.cpp.obj - 0002:0001e9d8 __ehfuncinfo$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 100b39d8 main.cpp.obj - 0002:0001e9fc __unwindtable$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 100b39fc main.cpp.obj - 0002:0001ea34 __catchsym$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$6 100b3a34 main.cpp.obj - 0002:0001ea44 __tryblocktable$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100b3a44 main.cpp.obj - 0002:0001ea58 __ehfuncinfo$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100b3a58 main.cpp.obj - 0002:0001ea7c __unwindtable$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100b3a7c main.cpp.obj - 0002:0001eaac __catchsym$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$7 100b3aac main.cpp.obj - 0002:0001eabc __tryblocktable$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100b3abc main.cpp.obj - 0002:0001ead0 __ehfuncinfo$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100b3ad0 main.cpp.obj - 0002:0001eaf4 __unwindtable$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100b3af4 main.cpp.obj - 0002:0001eb2c __catchsym$??0SuspendedProcess@hadesmem@@QAE@KK@Z$45 100b3b2c main.cpp.obj - 0002:0001eb3c __tryblocktable$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100b3b3c main.cpp.obj - 0002:0001eb50 __ehfuncinfo$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100b3b50 main.cpp.obj - 0002:0001eb74 __unwindtable$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100b3b74 main.cpp.obj - 0002:0001ec3c __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 100b3c3c main.cpp.obj - 0002:0001ec3c __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 100b3c3c main.cpp.obj - 0002:0001ec3c __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 100b3c3c main.cpp.obj - 0002:0001ec5c __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 100b3c5c main.cpp.obj - 0002:0001ec5c __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 100b3c5c main.cpp.obj - 0002:0001ec5c __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 100b3c5c main.cpp.obj - 0002:0001ec80 __catchsym$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$5 100b3c80 main.cpp.obj - 0002:0001ec90 __tryblocktable$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100b3c90 main.cpp.obj - 0002:0001eca4 __ehfuncinfo$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100b3ca4 main.cpp.obj - 0002:0001ecc8 __unwindtable$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100b3cc8 main.cpp.obj - 0002:0001ecf0 __catchsym$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$3 100b3cf0 main.cpp.obj - 0002:0001ed00 __tryblocktable$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 100b3d00 main.cpp.obj - 0002:0001ed14 __unwindtable$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 100b3d14 main.cpp.obj - 0002:0001ed2c __ehfuncinfo$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 100b3d2c main.cpp.obj - 0002:0001ed50 __ehfuncinfo$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b3d50 main.cpp.obj - 0002:0001ed74 __unwindtable$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b3d74 main.cpp.obj - 0002:0001edc4 __ehfuncinfo$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b3dc4 main.cpp.obj - 0002:0001ede8 __unwindtable$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b3de8 main.cpp.obj - 0002:0001ee30 __unwindtable$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 100b3e30 main.cpp.obj - 0002:0001ee38 __ehfuncinfo$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 100b3e38 main.cpp.obj - 0002:0001ee5c __unwindtable$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b3e5c main.cpp.obj - 0002:0001ee64 __ehfuncinfo$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b3e64 main.cpp.obj - 0002:0001ee88 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 100b3e88 main.cpp.obj - 0002:0001eea8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 100b3ea8 main.cpp.obj - 0002:0001eecc __unwindtable$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b3ecc main.cpp.obj - 0002:0001eed4 __ehfuncinfo$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b3ed4 main.cpp.obj - 0002:0001eef8 __ehfuncinfo$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 100b3ef8 main.cpp.obj - 0002:0001ef1c __unwindtable$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 100b3f1c main.cpp.obj - 0002:0001ef4c __unwindtable$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100b3f4c main.cpp.obj - 0002:0001ef6c __ehfuncinfo$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100b3f6c main.cpp.obj - 0002:0001ef90 __unwindtable$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 100b3f90 main.cpp.obj - 0002:0001ef98 __ehfuncinfo$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 100b3f98 main.cpp.obj - 0002:0001efbc __catchsym$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$5 100b3fbc main.cpp.obj - 0002:0001efcc __tryblocktable$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100b3fcc main.cpp.obj - 0002:0001efe0 __unwindtable$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100b3fe0 main.cpp.obj - 0002:0001f000 __ehfuncinfo$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100b4000 main.cpp.obj - 0002:0001f024 __unwindtable$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 100b4024 main.cpp.obj - 0002:0001f02c __ehfuncinfo$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 100b402c main.cpp.obj - 0002:0001f050 __unwindtable$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 100b4050 main.cpp.obj - 0002:0001f058 __ehfuncinfo$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 100b4058 main.cpp.obj - 0002:0001f07c __unwindtable$?CacheItemNameToId@Nampower@@YAXPBDI@Z 100b407c items.cpp.obj - 0002:0001f07c __unwindtable$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 100b407c main.cpp.obj - 0002:0001f07c __unwindtable$?addCustomEvent@Nampower@@YAXIPAD@Z 100b407c main.cpp.obj - 0002:0001f07c __unwindtable$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 100b407c pet.cpp.obj - 0002:0001f07c __unwindtable$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100b407c spell_scripts.cpp.obj - 0002:0001f07c __unwindtable$?TriggerQuickcast@Nampower@@YAXXZ 100b407c spellcast.cpp.obj - 0002:0001f084 __ehfuncinfo$?CacheItemNameToId@Nampower@@YAXPBDI@Z 100b4084 items.cpp.obj - 0002:0001f084 __ehfuncinfo$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 100b4084 main.cpp.obj - 0002:0001f084 __ehfuncinfo$?addCustomEvent@Nampower@@YAXIPAD@Z 100b4084 main.cpp.obj - 0002:0001f084 __ehfuncinfo$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 100b4084 pet.cpp.obj - 0002:0001f084 __ehfuncinfo$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100b4084 spell_scripts.cpp.obj - 0002:0001f084 __ehfuncinfo$?TriggerQuickcast@Nampower@@YAXXZ 100b4084 spellcast.cpp.obj - 0002:0001f0a8 __unwindtable$?processQueues@Nampower@@YA_NXZ 100b40a8 main.cpp.obj - 0002:0001f0c0 __ehfuncinfo$?processQueues@Nampower@@YA_NXZ 100b40c0 main.cpp.obj - 0002:0001f0e4 __unwindtable$?SetSelectionTarget@Nampower@@YAX_K@Z 100b40e4 main.cpp.obj - 0002:0001f0f4 __ehfuncinfo$?SetSelectionTarget@Nampower@@YAX_K@Z 100b40f4 main.cpp.obj - 0002:0001f118 __unwindtable$?loadUserVar@Nampower@@YAXPBD@Z 100b4118 main.cpp.obj - 0002:0001f128 __ehfuncinfo$?loadUserVar@Nampower@@YAXPBD@Z 100b4128 main.cpp.obj - 0002:0001f14c __unwindtable$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b414c main.cpp.obj - 0002:0001f154 __ehfuncinfo$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b4154 main.cpp.obj - 0002:0001f178 __unwindtable$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100b4178 items.cpp.obj - 0002:0001f178 __unwindtable$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 100b4178 main.cpp.obj - 0002:0001f178 __unwindtable$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 100b4178 pet.cpp.obj - 0002:0001f178 __unwindtable$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 100b4178 spell_scripts.cpp.obj - 0002:0001f178 __unwindtable$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100b4178 spellcast.cpp.obj - 0002:0001f180 __ehfuncinfo$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100b4180 items.cpp.obj - 0002:0001f180 __ehfuncinfo$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 100b4180 main.cpp.obj - 0002:0001f180 __ehfuncinfo$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 100b4180 pet.cpp.obj - 0002:0001f180 __ehfuncinfo$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 100b4180 spell_scripts.cpp.obj - 0002:0001f180 __ehfuncinfo$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100b4180 spellcast.cpp.obj - 0002:0001f1a4 __catchsym$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$7 100b41a4 main.cpp.obj - 0002:0001f1b4 __tryblocktable$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 100b41b4 main.cpp.obj - 0002:0001f1c8 __ehfuncinfo$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 100b41c8 main.cpp.obj - 0002:0001f1ec __unwindtable$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 100b41ec main.cpp.obj - 0002:0001f214 __unwindtable$?checkForStopChanneling@Nampower@@YAXXZ 100b4214 main.cpp.obj - 0002:0001f224 __ehfuncinfo$?checkForStopChanneling@Nampower@@YAXXZ 100b4224 main.cpp.obj - 0002:0001f248 __ehfuncinfo$?updateFromCvar@Nampower@@YAXPBD0@Z 100b4248 main.cpp.obj - 0002:0001f26c __unwindtable$?updateFromCvar@Nampower@@YAXPBD0@Z 100b426c main.cpp.obj - 0002:0001f3b4 __unwindtable$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 100b43b4 main.cpp.obj - 0002:0001f3b4 __unwindtable$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 100b43b4 main.cpp.obj - 0002:0001f3b4 __unwindtable$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 100b43b4 main.cpp.obj - 0002:0001f3b4 __unwindtable$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 100b43b4 main.cpp.obj - 0002:0001f3b4 __unwindtable$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 100b43b4 main.cpp.obj - 0002:0001f3b4 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 100b43b4 main.cpp.obj - 0002:0001f3b4 __unwindtable$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 100b43b4 main.cpp.obj - 0002:0001f3bc __ehfuncinfo$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 100b43bc main.cpp.obj - 0002:0001f3bc __ehfuncinfo$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 100b43bc main.cpp.obj - 0002:0001f3bc __ehfuncinfo$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 100b43bc main.cpp.obj - 0002:0001f3bc __ehfuncinfo$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 100b43bc main.cpp.obj - 0002:0001f3bc __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 100b43bc main.cpp.obj - 0002:0001f3bc __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 100b43bc main.cpp.obj - 0002:0001f3bc __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 100b43bc main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f3e0 __ehfuncinfo$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 100b43e0 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f404 __unwindtable$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 100b4404 main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f45c __ehfuncinfo$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b445c main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f480 __unwindtable$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b4480 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4c8 __unwindtable$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b44c8 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4d0 __ehfuncinfo$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b44d0 main.cpp.obj - 0002:0001f4f4 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$3 100b44f4 main.cpp.obj - 0002:0001f504 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b4504 main.cpp.obj - 0002:0001f518 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b4518 main.cpp.obj - 0002:0001f530 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b4530 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f554 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 100b4554 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f574 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 100b4574 main.cpp.obj - 0002:0001f598 __ehfuncinfo$?loadConfig@Nampower@@YAXXZ 100b4598 main.cpp.obj - 0002:0001f5bc __unwindtable$?loadConfig@Nampower@@YAXXZ 100b45bc main.cpp.obj - 0002:0001f61c __unwindtable$?initHooks@Nampower@@YAXXZ 100b461c main.cpp.obj - 0002:0001f634 __ehfuncinfo$?initHooks@Nampower@@YAXXZ 100b4634 main.cpp.obj - 0002:0001f658 __tryblocktable$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 100b4658 main.cpp.obj - 0002:0001f66c __ehfuncinfo$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 100b466c main.cpp.obj - 0002:0001f690 __catchsym$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$28 100b4690 main.cpp.obj - 0002:0001f6c0 __unwindtable$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 100b46c0 main.cpp.obj - 0002:0001f750 __tryblocktable$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 100b4750 main.cpp.obj - 0002:0001f764 __ehfuncinfo$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 100b4764 main.cpp.obj - 0002:0001f788 __catchsym$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$28 100b4788 main.cpp.obj - 0002:0001f7b8 __unwindtable$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 100b47b8 main.cpp.obj - 0002:0001f848 __tryblocktable$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 100b4848 main.cpp.obj - 0002:0001f85c __ehfuncinfo$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 100b485c main.cpp.obj - 0002:0001f880 __catchsym$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$28 100b4880 main.cpp.obj - 0002:0001f8b0 __unwindtable$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 100b48b0 main.cpp.obj - 0002:0001f940 __tryblocktable$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 100b4940 main.cpp.obj - 0002:0001f954 __ehfuncinfo$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 100b4954 main.cpp.obj - 0002:0001f978 __catchsym$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$28 100b4978 main.cpp.obj - 0002:0001f9a8 __unwindtable$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 100b49a8 main.cpp.obj - 0002:0001fa38 __tryblocktable$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100b4a38 main.cpp.obj - 0002:0001fa4c __ehfuncinfo$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100b4a4c main.cpp.obj - 0002:0001fa70 __catchsym$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$28 100b4a70 main.cpp.obj - 0002:0001faa0 __unwindtable$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100b4aa0 main.cpp.obj - 0002:0001fb30 __tryblocktable$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100b4b30 main.cpp.obj - 0002:0001fb44 __ehfuncinfo$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100b4b44 main.cpp.obj - 0002:0001fb68 __catchsym$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$28 100b4b68 main.cpp.obj - 0002:0001fb98 __unwindtable$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100b4b98 main.cpp.obj - 0002:0001fc28 __tryblocktable$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100b4c28 main.cpp.obj - 0002:0001fc3c __ehfuncinfo$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100b4c3c main.cpp.obj - 0002:0001fc60 __catchsym$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$28 100b4c60 main.cpp.obj - 0002:0001fc90 __unwindtable$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100b4c90 main.cpp.obj - 0002:0001fd20 __tryblocktable$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 100b4d20 main.cpp.obj - 0002:0001fd34 __ehfuncinfo$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 100b4d34 main.cpp.obj - 0002:0001fd58 __catchsym$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$28 100b4d58 main.cpp.obj - 0002:0001fd88 __unwindtable$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 100b4d88 main.cpp.obj - 0002:0001fe18 __tryblocktable$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100b4e18 main.cpp.obj - 0002:0001fe2c __ehfuncinfo$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100b4e2c main.cpp.obj - 0002:0001fe50 __catchsym$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$28 100b4e50 main.cpp.obj - 0002:0001fe80 __unwindtable$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100b4e80 main.cpp.obj - 0002:0001ff10 __tryblocktable$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 100b4f10 main.cpp.obj - 0002:0001ff24 __ehfuncinfo$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 100b4f24 main.cpp.obj - 0002:0001ff48 __catchsym$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$28 100b4f48 main.cpp.obj - 0002:0001ff78 __unwindtable$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 100b4f78 main.cpp.obj - 0002:00020008 __tryblocktable$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100b5008 main.cpp.obj - 0002:0002001c __ehfuncinfo$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100b501c main.cpp.obj - 0002:00020040 __catchsym$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$28 100b5040 main.cpp.obj - 0002:00020070 __unwindtable$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100b5070 main.cpp.obj - 0002:00020100 __tryblocktable$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 100b5100 main.cpp.obj - 0002:00020114 __ehfuncinfo$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 100b5114 main.cpp.obj - 0002:00020138 __catchsym$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$28 100b5138 main.cpp.obj - 0002:00020168 __unwindtable$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 100b5168 main.cpp.obj - 0002:000201f8 __tryblocktable$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100b51f8 main.cpp.obj - 0002:0002020c __ehfuncinfo$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100b520c main.cpp.obj - 0002:00020230 __catchsym$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$28 100b5230 main.cpp.obj - 0002:00020260 __unwindtable$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100b5260 main.cpp.obj - 0002:000202f0 __tryblocktable$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 100b52f0 main.cpp.obj - 0002:00020304 __ehfuncinfo$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 100b5304 main.cpp.obj - 0002:00020328 __catchsym$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$28 100b5328 main.cpp.obj - 0002:00020358 __unwindtable$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 100b5358 main.cpp.obj - 0002:000203e8 __tryblocktable$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 100b53e8 main.cpp.obj - 0002:000203fc __ehfuncinfo$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 100b53fc main.cpp.obj - 0002:00020420 __catchsym$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$28 100b5420 main.cpp.obj - 0002:00020450 __unwindtable$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 100b5450 main.cpp.obj - 0002:000204e0 __tryblocktable$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 100b54e0 main.cpp.obj - 0002:000204f4 __ehfuncinfo$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 100b54f4 main.cpp.obj - 0002:00020518 __catchsym$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$28 100b5518 main.cpp.obj - 0002:00020548 __unwindtable$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 100b5548 main.cpp.obj - 0002:000205d8 __tryblocktable$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 100b55d8 main.cpp.obj - 0002:000205ec __ehfuncinfo$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 100b55ec main.cpp.obj - 0002:00020610 __catchsym$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$28 100b5610 main.cpp.obj - 0002:00020640 __unwindtable$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 100b5640 main.cpp.obj - 0002:000206d0 __tryblocktable$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 100b56d0 main.cpp.obj - 0002:000206e4 __ehfuncinfo$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 100b56e4 main.cpp.obj - 0002:00020708 __catchsym$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$28 100b5708 main.cpp.obj - 0002:00020738 __unwindtable$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 100b5738 main.cpp.obj - 0002:000207c8 __tryblocktable$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 100b57c8 main.cpp.obj - 0002:000207dc __ehfuncinfo$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 100b57dc main.cpp.obj - 0002:00020800 __catchsym$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$28 100b5800 main.cpp.obj - 0002:00020830 __unwindtable$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 100b5830 main.cpp.obj - 0002:000208c0 __tryblocktable$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100b58c0 main.cpp.obj - 0002:000208d4 __ehfuncinfo$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100b58d4 main.cpp.obj - 0002:000208f8 __catchsym$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$28 100b58f8 main.cpp.obj - 0002:00020928 __unwindtable$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100b5928 main.cpp.obj - 0002:000209b8 __tryblocktable$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 100b59b8 main.cpp.obj - 0002:000209cc __ehfuncinfo$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 100b59cc main.cpp.obj - 0002:000209f0 __catchsym$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$28 100b59f0 main.cpp.obj - 0002:00020a20 __unwindtable$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 100b5a20 main.cpp.obj - 0002:00020ab0 __tryblocktable$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 100b5ab0 main.cpp.obj - 0002:00020ac4 __ehfuncinfo$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 100b5ac4 main.cpp.obj - 0002:00020ae8 __catchsym$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$28 100b5ae8 main.cpp.obj - 0002:00020b18 __unwindtable$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 100b5b18 main.cpp.obj - 0002:00020ba8 __tryblocktable$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 100b5ba8 main.cpp.obj - 0002:00020bbc __ehfuncinfo$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 100b5bbc main.cpp.obj - 0002:00020be0 __catchsym$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$28 100b5be0 main.cpp.obj - 0002:00020c10 __unwindtable$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 100b5c10 main.cpp.obj - 0002:00020ca0 __tryblocktable$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 100b5ca0 main.cpp.obj - 0002:00020cb4 __ehfuncinfo$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 100b5cb4 main.cpp.obj - 0002:00020cd8 __catchsym$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$28 100b5cd8 main.cpp.obj - 0002:00020d08 __unwindtable$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 100b5d08 main.cpp.obj - 0002:00020d98 __tryblocktable$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 100b5d98 main.cpp.obj - 0002:00020dac __ehfuncinfo$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 100b5dac main.cpp.obj - 0002:00020dd0 __catchsym$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$28 100b5dd0 main.cpp.obj - 0002:00020e00 __unwindtable$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 100b5e00 main.cpp.obj - 0002:00020e90 __tryblocktable$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 100b5e90 main.cpp.obj - 0002:00020ea4 __ehfuncinfo$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 100b5ea4 main.cpp.obj - 0002:00020ec8 __catchsym$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$28 100b5ec8 main.cpp.obj - 0002:00020ef8 __unwindtable$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 100b5ef8 main.cpp.obj - 0002:00020f88 __tryblocktable$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 100b5f88 main.cpp.obj - 0002:00020f9c __ehfuncinfo$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 100b5f9c main.cpp.obj - 0002:00020fc0 __catchsym$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$28 100b5fc0 main.cpp.obj - 0002:00020ff0 __unwindtable$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 100b5ff0 main.cpp.obj - 0002:00021080 __tryblocktable$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 100b6080 main.cpp.obj - 0002:00021094 __ehfuncinfo$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 100b6094 main.cpp.obj - 0002:000210b8 __catchsym$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$28 100b60b8 main.cpp.obj - 0002:000210e8 __unwindtable$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 100b60e8 main.cpp.obj - 0002:00021178 __tryblocktable$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 100b6178 main.cpp.obj - 0002:0002118c __ehfuncinfo$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 100b618c main.cpp.obj - 0002:000211b0 __catchsym$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$28 100b61b0 main.cpp.obj - 0002:000211e0 __unwindtable$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 100b61e0 main.cpp.obj - 0002:00021270 __tryblocktable$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 100b6270 main.cpp.obj - 0002:00021284 __ehfuncinfo$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 100b6284 main.cpp.obj - 0002:000212a8 __catchsym$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$28 100b62a8 main.cpp.obj - 0002:000212d8 __unwindtable$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 100b62d8 main.cpp.obj - 0002:00021368 __tryblocktable$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 100b6368 main.cpp.obj - 0002:0002137c __ehfuncinfo$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 100b637c main.cpp.obj - 0002:000213a0 __catchsym$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$28 100b63a0 main.cpp.obj - 0002:000213d0 __unwindtable$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 100b63d0 main.cpp.obj - 0002:00021460 __tryblocktable$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100b6460 main.cpp.obj - 0002:00021474 __ehfuncinfo$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100b6474 main.cpp.obj - 0002:00021498 __catchsym$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$28 100b6498 main.cpp.obj - 0002:000214c8 __unwindtable$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100b64c8 main.cpp.obj - 0002:00021558 __unwindtable$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b6558 main.cpp.obj - 0002:00021560 __ehfuncinfo$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b6560 main.cpp.obj - 0002:00021584 __unwindtable$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 100b6584 main.cpp.obj - 0002:00021584 __unwindtable$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 100b6584 main.cpp.obj - 0002:00021584 __unwindtable$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 100b6584 main.cpp.obj - 0002:0002158c __ehfuncinfo$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 100b658c main.cpp.obj - 0002:0002158c __ehfuncinfo$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 100b658c main.cpp.obj - 0002:0002158c __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 100b658c main.cpp.obj - 0002:000215b0 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$3 100b65b0 main.cpp.obj - 0002:000215c0 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b65c0 main.cpp.obj - 0002:000215d4 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b65d4 main.cpp.obj - 0002:000215ec __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b65ec main.cpp.obj - 0002:00021610 __unwindtable$??R@@QBE@XZ 100b6610 main.cpp.obj - 0002:00021630 __ehfuncinfo$??R@@QBE@XZ 100b6630 main.cpp.obj - 0002:00021654 __tryblocktable$_Load 100b6654 main.cpp.obj - 0002:00021668 __catchsym$_Load$8 100b6668 main.cpp.obj - 0002:00021688 __unwindtable$_Load 100b6688 main.cpp.obj - 0002:000216a8 __ehfuncinfo$_Load 100b66a8 main.cpp.obj - 0002:000216cc __unwindtable$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 100b66cc main.cpp.obj - 0002:000216d4 __ehfuncinfo$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 100b66d4 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:000216f8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 100b66f8 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:00021718 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 100b6718 main.cpp.obj - 0002:0002173c __unwindtable$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 100b673c main.cpp.obj - 0002:00021744 __ehfuncinfo$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 100b6744 main.cpp.obj - 0002:00021768 __unwindtable$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 100b6768 main.cpp.obj - 0002:00021778 __ehfuncinfo$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 100b6778 main.cpp.obj - 0002:0002179c __unwindtable$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 100b679c main.cpp.obj - 0002:0002179c __unwindtable$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 100b679c main.cpp.obj - 0002:000217a4 __ehfuncinfo$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 100b67a4 main.cpp.obj - 0002:000217a4 __ehfuncinfo$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 100b67a4 main.cpp.obj - 0002:000217c8 __unwindtable$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 100b67c8 main.cpp.obj - 0002:000217e8 __ehfuncinfo$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 100b67e8 main.cpp.obj - 0002:0002180c __unwindtable$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 100b680c main.cpp.obj - 0002:0002182c __ehfuncinfo$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 100b682c main.cpp.obj - 0002:00021850 __unwindtable$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 100b6850 main.cpp.obj - 0002:00021860 __ehfuncinfo$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 100b6860 main.cpp.obj - 0002:00021884 __ehfuncinfo$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 100b6884 main.cpp.obj - 0002:000218a8 __unwindtable$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 100b68a8 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 100b68d0 main.cpp.obj - 0002:000218d0 __unwindtable$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 100b68d0 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 100b68d8 main.cpp.obj - 0002:000218d8 __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 100b68d8 main.cpp.obj - 0002:000218fc __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$3 100b68fc main.cpp.obj - 0002:0002190c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b690c main.cpp.obj - 0002:00021920 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b6920 main.cpp.obj - 0002:00021938 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b6938 main.cpp.obj - 0002:0002195c __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$3 100b695c main.cpp.obj - 0002:0002196c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b696c main.cpp.obj - 0002:00021980 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b6980 main.cpp.obj - 0002:00021998 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b6998 main.cpp.obj - 0002:000219bc __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$3 100b69bc main.cpp.obj - 0002:000219cc __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b69cc main.cpp.obj - 0002:000219e0 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b69e0 main.cpp.obj - 0002:000219f8 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b69f8 main.cpp.obj - 0002:00021a1c __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$3 100b6a1c main.cpp.obj - 0002:00021a2c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b6a2c main.cpp.obj - 0002:00021a40 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b6a40 main.cpp.obj - 0002:00021a58 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b6a58 main.cpp.obj - 0002:00021a7c __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$3 100b6a7c main.cpp.obj - 0002:00021a8c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b6a8c main.cpp.obj - 0002:00021aa0 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b6aa0 main.cpp.obj - 0002:00021ab8 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b6ab8 main.cpp.obj - 0002:00021adc __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$3 100b6adc main.cpp.obj - 0002:00021aec __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b6aec main.cpp.obj - 0002:00021b00 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b6b00 main.cpp.obj - 0002:00021b18 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b6b18 main.cpp.obj - 0002:00021b3c __catchsym$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$3 100b6b3c main.cpp.obj - 0002:00021b4c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b6b4c main.cpp.obj - 0002:00021b60 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b6b60 main.cpp.obj - 0002:00021b78 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b6b78 main.cpp.obj - 0002:00021b9c __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$3 100b6b9c main.cpp.obj - 0002:00021bac __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b6bac main.cpp.obj - 0002:00021bc0 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b6bc0 main.cpp.obj - 0002:00021bd8 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b6bd8 main.cpp.obj - 0002:00021bfc __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$3 100b6bfc main.cpp.obj - 0002:00021c0c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b6c0c main.cpp.obj - 0002:00021c20 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b6c20 main.cpp.obj - 0002:00021c38 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b6c38 main.cpp.obj - 0002:00021c5c __unwindtable$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 100b6c5c main.cpp.obj - 0002:00021c5c __unwindtable$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 100b6c5c main.cpp.obj - 0002:00021c64 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 100b6c64 main.cpp.obj - 0002:00021c64 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 100b6c64 main.cpp.obj - 0002:00021c88 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$3 100b6c88 main.cpp.obj - 0002:00021c98 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b6c98 main.cpp.obj - 0002:00021cac __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b6cac main.cpp.obj - 0002:00021cc4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b6cc4 main.cpp.obj - 0002:00021ce8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$3 100b6ce8 main.cpp.obj - 0002:00021cf8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b6cf8 main.cpp.obj - 0002:00021d0c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b6d0c main.cpp.obj - 0002:00021d24 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b6d24 main.cpp.obj - 0002:00021d48 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$3 100b6d48 main.cpp.obj - 0002:00021d58 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b6d58 main.cpp.obj - 0002:00021d6c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b6d6c main.cpp.obj - 0002:00021d84 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b6d84 main.cpp.obj - 0002:00021da8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$3 100b6da8 main.cpp.obj - 0002:00021db8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b6db8 main.cpp.obj - 0002:00021dcc __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b6dcc main.cpp.obj - 0002:00021de4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b6de4 main.cpp.obj - 0002:00021e08 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100b6e08 main.cpp.obj - 0002:00021e18 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6e18 main.cpp.obj - 0002:00021e2c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6e2c main.cpp.obj - 0002:00021e44 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6e44 main.cpp.obj - 0002:00021e68 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100b6e68 main.cpp.obj - 0002:00021e78 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6e78 main.cpp.obj - 0002:00021e8c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6e8c main.cpp.obj - 0002:00021ea4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6ea4 main.cpp.obj - 0002:00021ec8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100b6ec8 main.cpp.obj - 0002:00021ed8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6ed8 main.cpp.obj - 0002:00021eec __unwindtable$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6eec main.cpp.obj - 0002:00021f04 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b6f04 main.cpp.obj - 0002:00021f28 __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$3 100b6f28 main.cpp.obj - 0002:00021f38 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b6f38 main.cpp.obj - 0002:00021f4c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b6f4c main.cpp.obj - 0002:00021f64 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b6f64 main.cpp.obj - 0002:00021f88 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$3 100b6f88 main.cpp.obj - 0002:00021f98 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b6f98 main.cpp.obj - 0002:00021fac __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b6fac main.cpp.obj - 0002:00021fc4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b6fc4 main.cpp.obj - 0002:00021fe8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$3 100b6fe8 main.cpp.obj - 0002:00021ff8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b6ff8 main.cpp.obj - 0002:0002200c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b700c main.cpp.obj - 0002:00022024 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b7024 main.cpp.obj - 0002:00022048 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$3 100b7048 main.cpp.obj - 0002:00022058 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b7058 main.cpp.obj - 0002:0002206c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b706c main.cpp.obj - 0002:00022084 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b7084 main.cpp.obj - 0002:000220a8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$3 100b70a8 main.cpp.obj - 0002:000220b8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b70b8 main.cpp.obj - 0002:000220cc __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b70cc main.cpp.obj - 0002:000220e4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b70e4 main.cpp.obj - 0002:00022108 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100b7108 main.cpp.obj - 0002:00022118 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b7118 main.cpp.obj - 0002:0002212c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b712c main.cpp.obj - 0002:00022144 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b7144 main.cpp.obj - 0002:00022168 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$3 100b7168 main.cpp.obj - 0002:00022178 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b7178 main.cpp.obj - 0002:0002218c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b718c main.cpp.obj - 0002:000221a4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b71a4 main.cpp.obj - 0002:000221c8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$3 100b71c8 main.cpp.obj - 0002:000221d8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b71d8 main.cpp.obj - 0002:000221ec __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b71ec main.cpp.obj - 0002:00022204 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b7204 main.cpp.obj - 0002:00022228 __unwindtable$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 100b7228 main.cpp.obj - 0002:00022230 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 100b7230 main.cpp.obj - 0002:00022254 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$3 100b7254 main.cpp.obj - 0002:00022264 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b7264 main.cpp.obj - 0002:00022278 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b7278 main.cpp.obj - 0002:00022290 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b7290 main.cpp.obj - 0002:000222b4 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$3 100b72b4 main.cpp.obj - 0002:000222c4 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b72c4 main.cpp.obj - 0002:000222d8 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b72d8 main.cpp.obj - 0002:000222f0 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b72f0 main.cpp.obj - 0002:00022314 __unwindtable$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 100b7314 main.cpp.obj - 0002:00022314 __unwindtable$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 100b7314 main.cpp.obj - 0002:0002231c __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 100b731c main.cpp.obj - 0002:0002231c __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 100b731c main.cpp.obj - 0002:00022340 __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$3 100b7340 main.cpp.obj - 0002:00022350 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b7350 main.cpp.obj - 0002:00022364 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b7364 main.cpp.obj - 0002:0002237c __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b737c main.cpp.obj - 0002:000223a0 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$3 100b73a0 main.cpp.obj - 0002:000223b0 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b73b0 main.cpp.obj - 0002:000223c4 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b73c4 main.cpp.obj - 0002:000223dc __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b73dc main.cpp.obj - 0002:00022400 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$3 100b7400 main.cpp.obj - 0002:00022410 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b7410 main.cpp.obj - 0002:00022424 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b7424 main.cpp.obj - 0002:0002243c __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b743c main.cpp.obj - 0002:00022460 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$3 100b7460 main.cpp.obj - 0002:00022470 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b7470 main.cpp.obj - 0002:00022484 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b7484 main.cpp.obj - 0002:0002249c __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b749c main.cpp.obj - 0002:000224c0 __catchsym$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$3 100b74c0 main.cpp.obj - 0002:000224d0 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b74d0 main.cpp.obj - 0002:000224e4 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b74e4 main.cpp.obj - 0002:000224fc __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b74fc main.cpp.obj - 0002:00022520 __catchsym$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$5 100b7520 main.cpp.obj - 0002:00022530 __tryblocktable$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100b7530 main.cpp.obj - 0002:00022544 __unwindtable$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100b7544 main.cpp.obj - 0002:00022564 __ehfuncinfo$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100b7564 main.cpp.obj - 0002:00022588 __ehfuncinfo$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100b7588 main.cpp.obj - 0002:000225ac __unwindtable$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100b75ac main.cpp.obj - 0002:00022614 __ehfuncinfo$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100b7614 main.cpp.obj - 0002:00022638 __unwindtable$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100b7638 main.cpp.obj - 0002:000226a0 __unwindtable$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 100b76a0 main.cpp.obj - 0002:000226c0 __ehfuncinfo$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 100b76c0 main.cpp.obj - 0002:000226e4 __unwindtable$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 100b76e4 main.cpp.obj - 0002:000226f4 __ehfuncinfo$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 100b76f4 main.cpp.obj - 0002:00022718 __unwindtable$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 100b7718 main.cpp.obj - 0002:00022738 __ehfuncinfo$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 100b7738 main.cpp.obj - 0002:0002275c __catchsym$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$3 100b775c main.cpp.obj - 0002:0002276c __tryblocktable$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 100b776c main.cpp.obj - 0002:00022780 __unwindtable$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 100b7780 main.cpp.obj - 0002:00022798 __ehfuncinfo$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 100b7798 main.cpp.obj - 0002:000227bc __unwindtable$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100b77bc main.cpp.obj - 0002:000227d4 __ehfuncinfo$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100b77d4 main.cpp.obj - 0002:000227f8 __unwindtable$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 100b77f8 main.cpp.obj - 0002:00022800 __ehfuncinfo$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 100b7800 main.cpp.obj - 0002:00022824 __unwindtable$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 100b7824 main.cpp.obj - 0002:0002282c __ehfuncinfo$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 100b782c main.cpp.obj - 0002:00022850 __catchsym$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z$3 100b7850 main.cpp.obj - 0002:00022860 __unwindtable$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 100b7860 main.cpp.obj - 0002:00022870 __tryblocktable$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 100b7870 main.cpp.obj - 0002:00022884 __ehfuncinfo$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 100b7884 main.cpp.obj - 0002:000228a8 __unwindtable$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100b78a8 main.cpp.obj - 0002:000228c0 __ehfuncinfo$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100b78c0 main.cpp.obj - 0002:000228e4 __unwindtable$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100b78e4 main.cpp.obj - 0002:000228e4 __unwindtable$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100b78e4 main.cpp.obj - 0002:000228ec __ehfuncinfo$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100b78ec main.cpp.obj - 0002:000228ec __ehfuncinfo$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100b78ec main.cpp.obj - 0002:00022910 __unwindtable$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100b7910 main.cpp.obj - 0002:00022928 __ehfuncinfo$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100b7928 main.cpp.obj - 0002:0002294c __unwindtable$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100b794c main.cpp.obj - 0002:00022964 __ehfuncinfo$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100b7964 main.cpp.obj - 0002:00022988 __unwindtable$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100b7988 main.cpp.obj - 0002:000229a0 __ehfuncinfo$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100b79a0 main.cpp.obj - 0002:000229c4 __ehfuncinfo$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 100b79c4 main.cpp.obj - 0002:000229e8 __unwindtable$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 100b79e8 main.cpp.obj - 0002:00022a28 __ehfuncinfo$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 100b7a28 main.cpp.obj - 0002:00022a4c __unwindtable$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 100b7a4c main.cpp.obj - 0002:00022a74 __unwindtable$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 100b7a74 main.cpp.obj - 0002:00022a74 __unwindtable$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 100b7a74 main.cpp.obj - 0002:00022a7c __ehfuncinfo$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 100b7a7c main.cpp.obj - 0002:00022a7c __ehfuncinfo$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 100b7a7c main.cpp.obj - 0002:00022aa0 __catchsym$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z$3 100b7aa0 main.cpp.obj - 0002:00022ab0 __unwindtable$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 100b7ab0 main.cpp.obj - 0002:00022ac0 __tryblocktable$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 100b7ac0 main.cpp.obj - 0002:00022ad4 __ehfuncinfo$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 100b7ad4 main.cpp.obj - 0002:00022af8 __catchsym$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z$3 100b7af8 main.cpp.obj - 0002:00022b08 __unwindtable$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 100b7b08 main.cpp.obj - 0002:00022b18 __tryblocktable$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 100b7b18 main.cpp.obj - 0002:00022b2c __ehfuncinfo$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 100b7b2c main.cpp.obj - 0002:00022b50 __unwindtable$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 100b7b50 main.cpp.obj - 0002:00022b68 __ehfuncinfo$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 100b7b68 main.cpp.obj - 0002:00022b8c __catchsym$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$3 100b7b8c main.cpp.obj - 0002:00022b9c __unwindtable$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100b7b9c main.cpp.obj - 0002:00022bac __tryblocktable$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100b7bac main.cpp.obj - 0002:00022bc0 __ehfuncinfo$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100b7bc0 main.cpp.obj - 0002:00022be4 __catchsym$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$3 100b7be4 main.cpp.obj - 0002:00022bf4 __unwindtable$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100b7bf4 main.cpp.obj - 0002:00022c04 __tryblocktable$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100b7c04 main.cpp.obj - 0002:00022c18 __ehfuncinfo$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100b7c18 main.cpp.obj - 0002:00022e64 __ehfuncinfo$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 100b7e64 helper.cpp.obj - 0002:00022e88 __unwindtable$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 100b7e88 helper.cpp.obj - 0002:00022eb0 __unwindtable$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 100b7eb0 helper.cpp.obj - 0002:00022ec8 __ehfuncinfo$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 100b7ec8 helper.cpp.obj - 0002:00022eec __unwindtable$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 100b7eec helper.cpp.obj - 0002:00022efc __ehfuncinfo$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 100b7efc helper.cpp.obj - 0002:00022f20 __unwindtable$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b7f20 helper.cpp.obj - 0002:00022f30 __ehfuncinfo$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b7f30 helper.cpp.obj - 0002:00022f54 __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$7 100b7f54 spellcast.cpp.obj - 0002:00022f64 __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100b7f64 spellcast.cpp.obj - 0002:00022f78 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100b7f78 spellcast.cpp.obj - 0002:00022f9c __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100b7f9c spellcast.cpp.obj - 0002:00022fc4 __unwindtable$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 100b7fc4 spellcast.cpp.obj - 0002:00022fd4 __ehfuncinfo$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 100b7fd4 spellcast.cpp.obj - 0002:00022ff8 __unwindtable$?CastQueuedNormalSpell@Nampower@@YAXXZ 100b7ff8 spellcast.cpp.obj - 0002:00023008 __ehfuncinfo$?CastQueuedNormalSpell@Nampower@@YAXXZ 100b8008 spellcast.cpp.obj - 0002:0002302c __unwindtable$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 100b802c spellcast.cpp.obj - 0002:0002302c __unwindtable$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 100b802c spellcast.cpp.obj - 0002:0002302c __unwindtable$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100b802c spellevents.cpp.obj - 0002:00023034 __ehfuncinfo$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 100b8034 spellcast.cpp.obj - 0002:00023034 __ehfuncinfo$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 100b8034 spellcast.cpp.obj - 0002:00023034 __ehfuncinfo$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100b8034 spellevents.cpp.obj - 0002:00023058 __ehfuncinfo$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 100b8058 spellcast.cpp.obj - 0002:0002307c __unwindtable$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 100b807c spellcast.cpp.obj - 0002:0002313c __unwindtable$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 100b813c spellcast.cpp.obj - 0002:0002314c __ehfuncinfo$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 100b814c spellcast.cpp.obj - 0002:00023170 __ehfuncinfo$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 100b8170 spellcast.cpp.obj - 0002:00023194 __unwindtable$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 100b8194 spellcast.cpp.obj - 0002:000231bc __ehfuncinfo$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b81bc spellchannel.cpp.obj - 0002:000231e0 __unwindtable$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b81e0 spellchannel.cpp.obj - 0002:00023210 __unwindtable$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b8210 spellchannel.cpp.obj - 0002:00023220 __ehfuncinfo$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b8220 spellchannel.cpp.obj - 0002:00023244 __ehfuncinfo$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 100b8244 spellevents.cpp.obj - 0002:00023268 __unwindtable$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 100b8268 spellevents.cpp.obj - 0002:000232e0 __unwindtable$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b82e0 spellevents.cpp.obj - 0002:000232f8 __ehfuncinfo$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b82f8 spellevents.cpp.obj - 0002:0002331c __unwindtable$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100b831c spellevents.cpp.obj - 0002:00023334 __ehfuncinfo$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100b8334 spellevents.cpp.obj - 0002:00023358 __unwindtable$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 100b8358 spellevents.cpp.obj - 0002:00023368 __ehfuncinfo$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 100b8368 spellevents.cpp.obj - 0002:0002338c __ehfuncinfo$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 100b838c spellevents.cpp.obj - 0002:000233b0 __unwindtable$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 100b83b0 spellevents.cpp.obj - 0002:000233e0 __unwindtable$?RunQueuedScript@Nampower@@YA_NH@Z 100b83e0 misc_scripts.cpp.obj - 0002:000233e0 __unwindtable$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 100b83e0 misc_scripts.cpp.obj - 0002:000233e8 __ehfuncinfo$?RunQueuedScript@Nampower@@YA_NH@Z 100b83e8 misc_scripts.cpp.obj - 0002:000233e8 __ehfuncinfo$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 100b83e8 misc_scripts.cpp.obj - 0002:0002340c __unwindtable$?InitializeFieldMaps@Nampower@@YAXXZ 100b840c dbc_fields.cpp.obj - 0002:0002340c __unwindtable$?Script_QueueScript@Nampower@@YAIPAI@Z 100b840c misc_scripts.cpp.obj - 0002:0002342c __ehfuncinfo$?InitializeFieldMaps@Nampower@@YAXXZ 100b842c dbc_fields.cpp.obj - 0002:0002342c __ehfuncinfo$?Script_QueueScript@Nampower@@YAIPAI@Z 100b842c misc_scripts.cpp.obj - 0002:00023450 __unwindtable$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 100b8450 item_scripts.cpp.obj - 0002:00023450 __unwindtable$?Script_GetUnitField@Nampower@@YAIPAI@Z 100b8450 misc_scripts.cpp.obj - 0002:00023450 __unwindtable$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 100b8450 spell_scripts.cpp.obj - 0002:00023458 __ehfuncinfo$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 100b8458 item_scripts.cpp.obj - 0002:00023458 __ehfuncinfo$?Script_GetUnitField@Nampower@@YAIPAI@Z 100b8458 misc_scripts.cpp.obj - 0002:00023458 __ehfuncinfo$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 100b8458 spell_scripts.cpp.obj - 0002:0002347c __ehfuncinfo$?TryDisenchant@Nampower@@YA_NXZ 100b847c misc_scripts.cpp.obj - 0002:000234a0 __unwindtable$?TryDisenchant@Nampower@@YA_NXZ 100b84a0 misc_scripts.cpp.obj - 0002:000234c8 __unwindtable$?Script_DisenchantAll@Nampower@@YAIPAI@Z 100b84c8 misc_scripts.cpp.obj - 0002:000234d0 __ehfuncinfo$?Script_DisenchantAll@Nampower@@YAIPAI@Z 100b84d0 misc_scripts.cpp.obj - 0002:000234f4 __unwindtable$?Script_LearnTalentRank@Nampower@@YAIPAI@Z 100b84f4 misc_scripts.cpp.obj - 0002:00023504 __ehfuncinfo$?Script_LearnTalentRank@Nampower@@YAIPAI@Z 100b8504 misc_scripts.cpp.obj - 0002:00023528 __unwindtable$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 100b8528 items.cpp.obj - 0002:00023528 __unwindtable$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 100b8528 misc_scripts.cpp.obj - 0002:00023538 __ehfuncinfo$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 100b8538 items.cpp.obj - 0002:00023538 __ehfuncinfo$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 100b8538 misc_scripts.cpp.obj - 0002:0002355c __unwindtable$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100b855c item_scripts.cpp.obj - 0002:0002355c __unwindtable$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100b855c misc_scripts.cpp.obj - 0002:0002355c __unwindtable$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100b855c spell_scripts.cpp.obj - 0002:00023564 __ehfuncinfo$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100b8564 item_scripts.cpp.obj - 0002:00023564 __ehfuncinfo$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100b8564 misc_scripts.cpp.obj - 0002:00023564 __ehfuncinfo$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100b8564 spell_scripts.cpp.obj - 0002:00023588 __unwindtable$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b8588 dbc_fields.cpp.obj - 0002:00023588 __unwindtable$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b8588 misc_scripts.cpp.obj - 0002:00023598 __ehfuncinfo$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b8598 dbc_fields.cpp.obj - 0002:00023598 __ehfuncinfo$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b8598 misc_scripts.cpp.obj - 0002:000235bc __unwindtable$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 100b85bc spell_scripts.cpp.obj - 0002:000235bc __unwindtable$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 100b85bc spell_scripts.cpp.obj - 0002:000235c4 __ehfuncinfo$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 100b85c4 spell_scripts.cpp.obj - 0002:000235c4 __ehfuncinfo$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 100b85c4 spell_scripts.cpp.obj - 0002:000235e8 __unwindtable$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 100b85e8 spell_scripts.cpp.obj - 0002:000235f8 __ehfuncinfo$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 100b85f8 spell_scripts.cpp.obj - 0002:0002361c __unwindtable$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 100b861c spell_scripts.cpp.obj - 0002:00023634 __ehfuncinfo$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 100b8634 spell_scripts.cpp.obj - 0002:00023658 __unwindtable$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100b8658 item_scripts.cpp.obj - 0002:00023668 __ehfuncinfo$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100b8668 item_scripts.cpp.obj - 0002:0002368c __ehfuncinfo$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 100b868c items.cpp.obj - 0002:000236b0 __unwindtable$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 100b86b0 items.cpp.obj - 0002:000236e0 __unwindtable$??__EitemStatsCache@Nampower@@YAXXZ 100b86e0 items.cpp.obj - 0002:000236f0 __ehfuncinfo$??__EitemStatsCache@Nampower@@YAXXZ 100b86f0 items.cpp.obj - 0002:00023714 __unwindtable$??__EitemNameToIdCache@Nampower@@YAXXZ 100b8714 items.cpp.obj - 0002:00023724 __ehfuncinfo$??__EitemNameToIdCache@Nampower@@YAXXZ 100b8724 items.cpp.obj - 0002:00023748 __unwindtable$??__EpendingItemIds@Nampower@@YAXXZ 100b8748 items.cpp.obj - 0002:00023758 __ehfuncinfo$??__EpendingItemIds@Nampower@@YAXXZ 100b8758 items.cpp.obj - 0002:0002377c __unwindtable$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 100b877c items.cpp.obj - 0002:00023784 __ehfuncinfo$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 100b8784 items.cpp.obj - 0002:000237a8 __unwindtable$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 100b87a8 items.cpp.obj - 0002:000237b8 __ehfuncinfo$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 100b87b8 items.cpp.obj - 0002:000237dc __unwindtable$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 100b87dc items.cpp.obj - 0002:000237ec __ehfuncinfo$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 100b87ec items.cpp.obj - 0002:00023810 __unwindtable$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b8810 items.cpp.obj - 0002:00023820 __ehfuncinfo$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b8820 items.cpp.obj - 0002:00023844 __unwindtable$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 100b8844 items.cpp.obj - 0002:00023854 __ehfuncinfo$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 100b8854 items.cpp.obj - 0002:00023878 __unwindtable$?InitializeUnitFieldMaps@Nampower@@YAXXZ 100b8878 unit_fields.cpp.obj - 0002:00023888 __ehfuncinfo$?InitializeUnitFieldMaps@Nampower@@YAXXZ 100b8888 unit_fields.cpp.obj - 0002:000238ac __unwindtable$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 100b88ac lua_refs.cpp.obj - 0002:000238bc __ehfuncinfo$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 100b88bc lua_refs.cpp.obj - 0002:000238e0 __ehfuncinfo$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 100b88e0 pet.cpp.obj - 0002:00023904 __unwindtable$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 100b8904 pet.cpp.obj - 0002:00023934 __ehfuncinfo$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 100b8934 pet.cpp.obj - 0002:00023958 __unwindtable$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 100b8958 pet.cpp.obj - 0002:00023988 __unwindtable$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100b8988 pet.cpp.obj - 0002:00023998 __ehfuncinfo$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100b8998 pet.cpp.obj - 0002:000239bc __unwindtable$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100b89bc pet.cpp.obj - 0002:000239dc __ehfuncinfo$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100b89dc pet.cpp.obj - 0002:00023a00 __sehtable$___DestructExceptionObject 100b8a00 libvcruntime:ehhelpers.obj - 0002:00023a20 __sehtable$___RTDynamicCast 100b8a20 libvcruntime:rtti.obj - 0002:00023a40 __sehtable$___RTtypeid 100b8a40 libvcruntime:rtti.obj - 0002:00023ad0 __sehtable$?FrameUnwindToState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@H@Z 100b8ad0 libvcruntime:frame.obj - 0002:00023af8 __sehtable$?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PBU_s_FuncInfo@@PAXHK@Z 100b8af8 libvcruntime:frame.obj - 0002:00023b20 __catchsym$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z$2 100b8b20 libvcruntime:frame.obj - 0002:00023b30 __unwindtable$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 100b8b30 libvcruntime:frame.obj - 0002:00023b40 __tryblocktable$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 100b8b40 libvcruntime:frame.obj - 0002:00023b54 __ehfuncinfo$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 100b8b54 libvcruntime:frame.obj - 0002:00023b78 __sehtable$??$BuildCatchObjectHelperInternal@V__FrameHandler3@@@@YAHPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100b8b78 libvcruntime:frame.obj - 0002:00023b98 __sehtable$??$BuildCatchObjectInternal@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100b8b98 libvcruntime:frame.obj - 0002:00023bf0 __sehtable$___unDNameEx 100b8bf0 libvcruntime:undname.obj - 0002:00023c0c __unwindtable$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 100b8c0c libvcruntime:undname.obj - 0002:00023c14 __ehfuncinfo$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 100b8c14 libvcruntime:undname.obj - 0002:00023c38 __sehtable$?_fclose_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 100b8c38 libucrt:fclose.obj - 0002:00023c58 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8c58 libucrt:fflush.obj - 0002:00023c78 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8c78 libucrt:fflush.obj - 0002:00023c98 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100b8c98 libucrt:fflush.obj - 0002:00023cb8 __sehtable$_fgetc 100b8cb8 libucrt:fgetc.obj - 0002:00023cd8 __sehtable$?_fputc_internal@@YAHHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 100b8cd8 libucrt:fputc.obj - 0002:00023cf8 __sehtable$_fread_s 100b8cf8 libucrt:fread.obj - 0002:00023d18 __sehtable$?common_fseek@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 100b8d18 libucrt:fseek.obj - 0002:00023d38 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@I@@QAEI$$QAV@@AAV@@$$QAV@@@Z 100b8d38 libucrt:fwrite.obj - 0002:00023d58 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100b8d58 libucrt:setvbuf.obj - 0002:00023d78 __sehtable$_ungetc 100b8d78 libucrt:ungetc.obj - 0002:00023d98 __sehtable$_terminate 100b8d98 libucrt:terminate.obj - 0002:00023db8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8db8 libucrt:per_thread_data.obj - 0002:00023dd8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8dd8 libucrt:per_thread_data.obj - 0002:00023df8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8df8 libucrt:per_thread_data.obj - 0002:00023e18 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8e18 libucrt:per_thread_data.obj - 0002:00023e38 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8e38 libucrt:wsetlocale.obj - 0002:00023e58 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b8e58 libucrt:wsetlocale.obj - 0002:00023e78 __sehtable$??$?RV@@AAV@@AAV@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@AAV@@@Z 100b8e78 libucrt:wsetlocale.obj - 0002:00023e98 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100b8e98 libucrt:winapi_thunks.obj - 0002:00023eb8 __sehtable$__fcloseall 100b8eb8 libucrt:closeall.obj - 0002:00023ed8 __sehtable$___acrt_initialize_lowio 100b8ed8 libucrt:ioinit.obj - 0002:00023ef8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100b8ef8 libucrt:close.obj - 0002:00023f18 __sehtable$?__acrt_stdio_allocate_stream@@YA?AV__crt_stdio_stream@@XZ 100b8f18 libucrt:stream.obj - 0002:00023f38 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100b8f38 libucrt:commit.obj - 0002:00023f58 __sehtable$__write_internal 100b8f58 libucrt:write.obj - 0002:00023f78 __sehtable$??$common_ftell@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 100b8f78 libucrt:ftell.obj - 0002:00023f98 __sehtable$__read 100b8f98 libucrt:read.obj - 0002:00023fb8 __sehtable$??$common_lseek@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 100b8fb8 libucrt:lseek.obj - 0002:00023fd8 __sehtable$___set_fpsr_sse2 100b8fd8 libucrt:fpctrl.obj - 0002:00023ff8 __sehtable$??R@@QBE@XZ 100b8ff8 libucrt:exit.obj - 0002:00024018 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b9018 libucrt:exit.obj - 0002:00024038 __sehtable$_raise 100b9038 libucrt:signal.obj - 0002:00024058 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@P6AXH@Z@@QAEP6AXH@Z$$QAV@@AAV@@$$QAV@@@Z 100b9058 libucrt:signal.obj - 0002:00024078 __sehtable$__isindst 100b9078 libucrt:tzset.obj - 0002:00024098 __sehtable$___tzset 100b9098 libucrt:tzset.obj - 0002:000240b8 __sehtable$___acrt_update_thread_locale_data 100b90b8 libucrt:locale_refcounting.obj - 0002:000240d8 __sehtable$?update_thread_multibyte_data_internal@@YAPAU__crt_multibyte_data@@QAU__acrt_ptd@@QAPAU1@@Z 100b90d8 libucrt:mbctype.obj - 0002:000240f8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100b90f8 libucrt:mbctype.obj - 0002:00024118 __sehtable$__query_new_handler 100b9118 libucrt:new_handler.obj - 0002:00024138 __sehtable$__alloc_osfhnd 100b9138 libucrt:osfinfo.obj - 0002:00024158 __sehtable$___acrt_lowio_ensure_fh_exists 100b9158 libucrt:osfinfo.obj - 0002:00024178 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100b9178 libucrt:onexit.obj - 0002:00024198 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100b9198 libucrt:onexit.obj - 0002:000241b8 __sehtable$??$common_getenv_s@_W@@YAHQAIQA_WIQB_W@Z 100b91b8 libucrt:getenv.obj - 0002:000241d4 __unwindtable$___dcrt_uninitialize_environments_nolock 100b91d4 libucrt:environment_initialization.obj - 0002:000241e4 __ehfuncinfo$___dcrt_uninitialize_environments_nolock 100b91e4 libucrt:environment_initialization.obj - 0002:00024348 __unwindtable$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 100b9348 libcpmt:locale0.obj - 0002:00024350 __ehfuncinfo$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 100b9350 libcpmt:locale0.obj - 0002:00024378 __sehtable$___scrt_is_nonwritable_in_current_image 100b9378 LIBCMT:utility.obj - 0002:00024398 __sehtable$?dllmain_crt_process_attach@@YAHQAUHINSTANCE__@@QAX@Z 100b9398 LIBCMT:dll_dllmain.obj - 0002:000243b8 __sehtable$?dllmain_crt_process_detach@@YAH_N@Z 100b93b8 LIBCMT:dll_dllmain.obj - 0002:000243e0 __sehtable$?dllmain_dispatch@@YAHQAUHINSTANCE__@@KQAX@Z 100b93e0 LIBCMT:dll_dllmain.obj - 0002:00024400 __sehtable$__IsNonwritableInCurrentImage 100b9400 LIBCMT:pesect.obj - 0002:00024420 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@PAD@@QAEPAD$$QAV@@AAV@@$$QAV@@@Z 100b9420 libucrt:setlocale.obj - 0002:00024440 __sehtable$??$common_fsopen@D@@YAPAU_iobuf@@QBD0H@Z 100b9440 libucrt:fopen.obj - 0002:00024460 __sehtable$??$common_sopen_dispatch@D@@YAHQBDHHHQAHH@Z 100b9460 libucrt:open.obj - 0002:00024480 .edata 100b9480 nampower.exp - 0002:000244a8 rgpv 100b94a8 nampower.exp - 0002:000244ac rgszName 100b94ac nampower.exp - 0002:000244b0 rgwOrd 100b94b0 nampower.exp - 0002:000244b2 szName 100b94b2 nampower.exp - 0002:000244bf $N00001 100b94bf nampower.exp - 0002:00024e20 .idata$6 100b9e20 kernel32:KERNEL32.dll - 0002:00024e3c .idata$6 100b9e3c user32:USER32.dll - 0003:00000104 ?p_GetContext@?1??GetLuaStatePtr@Nampower@@YAPAIXZ@4P6IPAIXZA 100ba104 main.cpp.obj - 0003:00000150 ?format@?1??TriggerSpellCastEvent@Nampower@@YAX_NIW4CastType@@_KI@Z@4PADA 100ba150 spellcast.cpp.obj - 0003:0000015c ?message@?O@??Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@4PADA 100ba15c spellcast.cpp.obj - 0003:00000194 ?format@?1??TriggerSpellChannelStartEvent@Nampower@@YAXII@Z@4PADA 100ba194 spellchannel.cpp.obj - 0003:0000019c ?format@?1??TriggerSpellChannelUpdateEvent@Nampower@@YAXII@Z@4PADA 100ba19c spellchannel.cpp.obj - 0003:000001a4 ?format@?1??TriggerSpellFailedSelfEvent@Nampower@@YAXIW4SpellCastResult@game@@_N@Z@4PADA 100ba1a4 spellevents.cpp.obj - 0003:000001ac ?format@?1??TriggerSpellFailedOtherEvent@Nampower@@YAX_KI@Z@4PADA 100ba1ac spellevents.cpp.obj - 0003:000001b4 ?format@?1??TriggerSpellHealEvent@Nampower@@YAX_K0IIEE@Z@4PADA 100ba1b4 spellevents.cpp.obj - 0003:000001c4 ?format@?1??TriggerSpellEnergizeEvent@Nampower@@YAX_K0IIIE@Z@4PADA 100ba1c4 spellevents.cpp.obj - 0003:000001d4 ?format@?1??TriggerSpellDelayedEvent@Nampower@@YAX_KI@Z@4PADA 100ba1d4 spellevents.cpp.obj - 0003:000001dc ?format@?1??triggerAuraCastEventOnTarget@Nampower@@YAXPBUSpellRec@game@@HPAD1_K2II@Z@4PADA 100ba1dc spellevents.cpp.obj - 0003:000001f0 ?format@?1??TriggerSpellStartEvent@Nampower@@YAXII_K00GI@Z@4PADA 100ba1f0 spellevents.cpp.obj - 0003:00000204 ?format@?1??TriggerSpellGoEvent@Nampower@@YAXIIPB_K_K1GEE@Z@4PADA 100ba204 spellevents.cpp.obj - 0003:00000218 ?format@?1??TriggerSpellMissEvent@Nampower@@YAX_K0II@Z@4PADA 100ba218 spellevents.cpp.obj - 0003:00000224 ?format@?1??TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z@4PADA 100ba224 spellevents.cpp.obj - 0003:0000023c ?castId@LuaFields@Nampower@@3PADA 100ba23c misc_scripts.cpp.obj - 0003:00000244 ?spellId@LuaFields@Nampower@@3PADA 100ba244 misc_scripts.cpp.obj - 0003:0000024c ?guid@LuaFields@Nampower@@3PADA 100ba24c misc_scripts.cpp.obj - 0003:00000254 ?castType@LuaFields@Nampower@@3PADA 100ba254 misc_scripts.cpp.obj - 0003:00000260 ?castStartS@LuaFields@Nampower@@3PADA 100ba260 misc_scripts.cpp.obj - 0003:0000026c ?castEndS@LuaFields@Nampower@@3PADA 100ba26c misc_scripts.cpp.obj - 0003:00000278 ?castRemainingMs@LuaFields@Nampower@@3PADA 100ba278 misc_scripts.cpp.obj - 0003:00000288 ?castDurationMs@LuaFields@Nampower@@3PADA 100ba288 misc_scripts.cpp.obj - 0003:00000298 ?gcdEndS@LuaFields@Nampower@@3PADA 100ba298 misc_scripts.cpp.obj - 0003:000002a0 ?gcdRemainingMs@LuaFields@Nampower@@3PADA 100ba2a0 misc_scripts.cpp.obj - 0003:000002b0 ?castInfoTableRef@Nampower@@3HA 100ba2b0 misc_scripts.cpp.obj - 0003:000002b4 ?unitDataTableRef@Nampower@@3HA 100ba2b4 misc_scripts.cpp.obj - 0003:000002b8 ?typeIdCounter@?1??CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z@4PAIA 100ba2b8 misc_scripts.cpp.obj - 0003:000002bc ?nameplateTypeId@?1??CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z@4PAIA 100ba2bc misc_scripts.cpp.obj - 0003:000002c0 ?format@?1??EmitKeyEvent@Nampower@@YAXIPAUEVENT_DATA_KEY@@@Z@4PADA 100ba2c0 misc_scripts.cpp.obj - 0003:000002cc ?spellRecTableRef@Nampower@@3HA 100ba2cc spell_scripts.cpp.obj - 0003:000002d0 ?cooldownDetailTableRef@Nampower@@3HA 100ba2d0 cooldown_scripts.cpp.obj - 0003:000002d4 ?isOnCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba2d4 cooldown_scripts.cpp.obj - 0003:000002e4 ?cooldownRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba2e4 cooldown_scripts.cpp.obj - 0003:000002f8 ?itemIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba2f8 cooldown_scripts.cpp.obj - 0003:00000300 ?itemHasActiveSpellKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba300 cooldown_scripts.cpp.obj - 0003:00000314 ?itemActiveSpellIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba314 cooldown_scripts.cpp.obj - 0003:00000328 ?individualStartSKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba328 cooldown_scripts.cpp.obj - 0003:0000033c ?individualDurationMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba33c cooldown_scripts.cpp.obj - 0003:00000354 ?individualRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba354 cooldown_scripts.cpp.obj - 0003:0000036c ?isOnIndividualCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba36c cooldown_scripts.cpp.obj - 0003:00000384 ?categoryIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba384 cooldown_scripts.cpp.obj - 0003:00000390 ?categoryStartSKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba390 cooldown_scripts.cpp.obj - 0003:000003a0 ?categoryDurationMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba3a0 cooldown_scripts.cpp.obj - 0003:000003b4 ?categoryRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba3b4 cooldown_scripts.cpp.obj - 0003:000003c8 ?isOnCategoryCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba3c8 cooldown_scripts.cpp.obj - 0003:000003e0 ?gcdCategoryIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba3e0 cooldown_scripts.cpp.obj - 0003:000003f0 ?gcdCategoryStartSKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba3f0 cooldown_scripts.cpp.obj - 0003:00000404 ?gcdCategoryDurationMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba404 cooldown_scripts.cpp.obj - 0003:0000041c ?gcdCategoryRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba41c cooldown_scripts.cpp.obj - 0003:00000434 ?isOnGcdCategoryCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100ba434 cooldown_scripts.cpp.obj - 0003:0000044c ?basicItemInfoTableRef@Nampower@@3HA 100ba44c item_scripts.cpp.obj - 0003:00000450 ?itemInfoTableRef@Nampower@@3HA 100ba450 item_scripts.cpp.obj - 0003:00000454 ?equippedItemsTableRef@Nampower@@3HA 100ba454 item_scripts.cpp.obj - 0003:00000458 ?bagItemsTableRef@Nampower@@3HA 100ba458 item_scripts.cpp.obj - 0003:0000045c ?trinketsTableRef@Nampower@@3HA 100ba45c item_scripts.cpp.obj - 0003:00000460 ?itemStatsTableRef@Nampower@@3HA 100ba460 item_scripts.cpp.obj - 0003:00000464 ?itemIdKey@Nampower@@3PADA 100ba464 item_scripts.cpp.obj - 0003:0000046c ?permanentEnchantIdKey@Nampower@@3PADA 100ba46c item_scripts.cpp.obj - 0003:00000480 ?tempEnchantIdKey@Nampower@@3PADA 100ba480 item_scripts.cpp.obj - 0003:00000490 ?stackCountKey@Nampower@@3PADA 100ba490 item_scripts.cpp.obj - 0003:0000049c ?durationKey@Nampower@@3PADA 100ba49c item_scripts.cpp.obj - 0003:000004a8 ?flagsKey@Nampower@@3PADA 100ba4a8 item_scripts.cpp.obj - 0003:000004b0 ?durabilityKey@Nampower@@3PADA 100ba4b0 item_scripts.cpp.obj - 0003:000004bc ?maxDurabilityKey@Nampower@@3PADA 100ba4bc item_scripts.cpp.obj - 0003:000004cc ?tempEnchantmentTimeLeftMsKey@Nampower@@3PADA 100ba4cc item_scripts.cpp.obj - 0003:000004e8 ?tempEnchantmentChargesKey@Nampower@@3PADA 100ba4e8 item_scripts.cpp.obj - 0003:00000500 ?bagIndexKey@Nampower@@3PADA 100ba500 item_scripts.cpp.obj - 0003:0000050c ?slotIndexKey@Nampower@@3PADA 100ba50c item_scripts.cpp.obj - 0003:00000518 ?trinketNameKey@Nampower@@3PADA 100ba518 item_scripts.cpp.obj - 0003:00000524 ?textureKey@Nampower@@3PADA 100ba524 item_scripts.cpp.obj - 0003:0000052c ?itemLevelKey@Nampower@@3PADA 100ba52c item_scripts.cpp.obj - 0003:00000538 ?format@?1??TriggerAuraEvent@Nampower@@YAXPAIII_NI@Z@4PADA 100ba538 auras.cpp.obj - 0003:00000548 ?format@?4??CGBuffBar_UpdateDurationHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@EH@Z@4PADA 100ba548 auras.cpp.obj - 0003:00000554 ?format@?1??UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z@4PADA 100ba554 auras.cpp.obj - 0003:00000558 ?format@?1??TriggerAutoAttackEvent@Nampower@@YAX_K0IIIEIII@Z@4PADA 100ba558 autoattack.cpp.obj - 0003:00000570 ?__vcrt_flsindex@@3KA 100ba570 libvcruntime:per_thread_data.obj - 0003:00000580 ?prefix@?1??getDimension@UnDecorator@@CA?AVDName@@_N@Z@4UStringLiteral@@A 100ba580 libvcruntime:undname.obj - 0003:00000648 ?errno_no_memory@@3HA 100ba648 libucrt:errno.obj - 0003:0000064c ?doserrno_no_memory@@3KA 100ba64c libucrt:errno.obj - 0003:000006c0 ?__acrt_flsindex@@3KA 100ba6c0 libucrt:per_thread_data.obj - 0003:000006c4 __ctype_loc_style 100ba6c4 libucrt:wsetlocale.obj - 0003:000008c8 ?__DAZ_ENABLED@?1??__set_fpsr_sse2@@9@9 100ba8c8 libucrt:fpctrl.obj - 0003:000008d8 ?tzstd_program@@3PADA 100ba8d8 libucrt:timeset.obj - 0003:00000918 ?tzdst_program@@3PADA 100ba918 libucrt:timeset.obj - 0003:00000958 ?w_tzstd_program@@3PA_WA 100ba958 libucrt:timeset.obj - 0003:000009d8 ?w_tzdst_program@@3PA_WA 100ba9d8 libucrt:timeset.obj - 0003:00000a58 ?tzname_states@@3PAY01PADA 100baa58 libucrt:timeset.obj - 0003:00000a60 ?w_tzname_states@@3PAY01PA_WA 100baa60 libucrt:timeset.obj - 0003:00000a68 ?dststart@@3Utransitiondate@?A0x7639d0b4@@A 100baa68 libucrt:tzset.obj - 0003:00000a74 ?dstend@@3Utransitiondate@?A0x7639d0b4@@A 100baa74 libucrt:tzset.obj - 0003:00000ca0 __mbctypes 100baca0 libucrt:mbctype.obj - 0003:00000da8 __mbcasemaps 100bada8 libucrt:mbctype.obj - 0003:00000ea8 ?__rgctypeflag@@3PADA 100baea8 libucrt:mbctype.obj - 0003:00000eb0 ?__rgcode_page_info@@3PAUcode_page_info@@A 100baeb0 libucrt:mbctype.obj - 0003:00000fb0 ?__dcrt_lowio_console_output_handle@@3PAXA 100bafb0 libucrt:initcon.obj - 0003:00000fc0 ?init@std@@3JA 100bafc0 libcpmt:xlock.obj - 0003:00000fc8 ?valid@?1???$_Xfiopen@D@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z@4QBHB 100bafc8 libcpmt:fiopen.obj - 0003:00001018 ?atcount_cdecl@@3IA 100bb018 libcpmt:iosptrs.obj - 0003:00017824 ?spellSlotCache@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@4V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@@std@@A 100d1824 helper.cpp.obj - 0003:00017844 ?$TSS0@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@4HA 100d1844 helper.cpp.obj - 0003:00017848 ?spellIdToSlotCache@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@4V?$unordered_map@_KIU?$hash@_K@std@@U?$equal_to@_K@2@V?$allocator@U?$pair@$$CB_KI@std@@@2@@std@@A 100d1848 helper.cpp.obj - 0003:00017868 ?$TSS0@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@4HA 100d1868 helper.cpp.obj - 0003:00017870 ?targetHitGuids@?1??SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@2@@Z@4PA_KA 100d1870 spellevents.cpp.obj - 0003:00017b98 ?unitFieldsArrayFieldRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d1b98 misc_scripts.cpp.obj - 0003:00017bb8 ?unitFieldsNestedArrayRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d1bb8 misc_scripts.cpp.obj - 0003:00017bd8 ?spellRecArrayFieldRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d1bd8 spell_scripts.cpp.obj - 0003:00017bf8 ?spellRecNestedArrayRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d1bf8 spell_scripts.cpp.obj - 0003:00017c18 ?itemStatsNestedArrayRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d1c18 item_scripts.cpp.obj - 0003:00017c38 ?itemStatsArrayFieldRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d1c38 item_scripts.cpp.obj - 0003:00017c58 ?lastTrinketCount@Nampower@@3IA 100d1c58 item_scripts.cpp.obj - 0003:00017c5c ?bagTableRefs@Nampower@@3V?$array@H$0N@@std@@A 100d1c5c item_scripts.cpp.obj - 0003:00017c90 ?itemEntryTableRefs@Nampower@@3V?$array@V?$array@H$0EA@@std@@$0N@@std@@A 100d1c90 item_scripts.cpp.obj - 0003:00018990 ?equippedItemTableRefs@Nampower@@3V?$array@H$0BD@@std@@A 100d2990 item_scripts.cpp.obj - 0003:00018a2c ?isExporting@Nampower@@3_NA 100d2a2c items.cpp.obj - 0003:00021c28 ?itemStatsCache@Nampower@@3V?$unordered_map@IPAUItemStats_C@game@@U?$hash@I@std@@U?$equal_to@I@4@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@@std@@A 100dbc28 items.cpp.obj - 0003:00021c48 ?itemNameToIdCache@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100dbc48 items.cpp.obj - 0003:00021c68 ?pendingItemIds@Nampower@@3V?$unordered_set@IU?$hash@I@std@@U?$equal_to@I@2@V?$allocator@I@2@@std@@A 100dbc68 items.cpp.obj - 0003:00021c88 ?currentExportItemId@Nampower@@3IA 100dbc88 items.cpp.obj - 0003:00021d0c ?fieldMapsInitialized@Nampower@@3_NA 100dbd0c dbc_fields.cpp.obj - 0003:00021d50 ?unitFieldMapsInitialized@Nampower@@3_NA 100dbd50 unit_fields.cpp.obj - 0003:00021e18 ?registeredTableRefs@Nampower@@3V?$vector@PAHV?$allocator@PAH@std@@@std@@A 100dbe18 lua_refs.cpp.obj - 0003:00021e30 ?__vcrt_startup_thread_ptd@@3U__vcrt_ptd@@A 100dbe30 libvcruntime:per_thread_data.obj - 0003:00021e80 ?heap@@3V_HeapManager@@A 100dbe80 libvcruntime:undname.obj - 0003:00021e94 ?module_handles@@3PAPAUHINSTANCE__@@A 100dbe94 libvcruntime:winapi_downlevel.obj - 0003:00021ea0 ?function_pointers@@3PAPAXA 100dbea0 libvcruntime:winapi_downlevel.obj - 0003:00021eb4 ___vcrt_lock_table 100dbeb4 libvcruntime:locks.obj - 0003:00021ecc ___vcrt_locks_initialized 100dbecc libvcruntime:locks.obj - 0003:00021ed0 ?__acrt_invalid_parameter_handler@@3V?$dual_state_global@P6AXPB_W00II@Z@__crt_state_management@@A 100dbed0 libucrt:invalid_parameter.obj - 0003:00021ef0 ?module_handles@@3PAPAUHINSTANCE__@@A 100dbef0 libucrt:winapi_thunks.obj - 0003:00021f48 ?encoded_function_pointers@@3PAPAXA 100dbf48 libucrt:winapi_thunks.obj - 0003:00021fd4 ?static_enum_proc@?1??enum_system_locales_ex_nolock@@YAHQ6GHPA_WKJ@Z@Z@4P6GH0KJ@ZA 100dbfd4 libucrt:winapi_thunks.obj - 0003:000221e0 ?__acrt_lock_table@@3PAU_RTL_CRITICAL_SECTION@@A 100dc1e0 libucrt:locks.obj - 0003:00022330 ?__acrt_locks_initialized@@3IA 100dc330 libucrt:locks.obj - 0003:0002233c ?internal_state@?1??_mbtowc_internal@@9@4U_Mbstatet@@A 100dc33c libucrt:mbtowc.obj - 0003:00022344 ?enable_percent_n@@3IA 100dc344 libucrt:printf_count_output.obj - 0003:00022348 ?c_termination_complete@@3JA 100dc348 libucrt:exit.obj - 0003:0002234c ?thread_local_exit_callback_func@@3P6GXPAXK0@ZA 100dc34c libucrt:exit.obj - 0003:00022350 ?c_exit_complete@?1???R@@QBE@XZ@4_NA 100dc350 libucrt:exit.obj - 0003:00022354 ?ctrlc_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100dc354 libucrt:signal.obj - 0003:00022358 ?ctrlbreak_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100dc358 libucrt:signal.obj - 0003:0002235c ?abort_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100dc35c libucrt:signal.obj - 0003:00022360 ?term_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100dc360 libucrt:signal.obj - 0003:00022370 ?_tzname@@3V?$dual_state_global@PAPAD@__crt_state_management@@A 100dc370 libucrt:timeset.obj - 0003:00022374 ?w_tzname@@3V?$dual_state_global@PAPA_W@__crt_state_management@@A 100dc374 libucrt:timeset.obj - 0003:00022378 ?last_wide_tz@@3PA_WA 100dc378 libucrt:tzset.obj - 0003:00022380 ?tz_api_used@@3HA 100dc380 libucrt:tzset.obj - 0003:00022384 ?tzset_init_state@@3V?$dual_state_global@J@__crt_state_management@@A 100dc384 libucrt:tzset.obj - 0003:00022388 ?tz_info@@3U_TIME_ZONE_INFORMATION@@A 100dc388 libucrt:tzset.obj - 0003:00022434 __pmatherr_set 100dc434 libucrt:libm_error.obj - 0003:00022444 ?fSystemSet@@3HA 100dc444 libucrt:mbctype.obj - 0003:00022448 ?initialized@?1??__acrt_initialize_multibyte@@9@4_NA 100dc448 libucrt:mbctype.obj - 0003:0002244c ?__acrt_new_handler@@3V?$dual_state_global@P6AHI@Z@__crt_state_management@@A 100dc44c libucrt:new_handler.obj - 0003:00022450 ?__acrt_global_new_mode@@3V?$dual_state_global@J@__crt_state_management@@A 100dc450 libucrt:new_mode.obj - 0003:00022458 ?user_matherr@@3V?$dual_state_global@P6AHPAU_exception@@@Z@__crt_state_management@@A 100dc458 libucrt:matherr.obj - 0003:00022474 ?__acrt_app_type@@3W4_crt_app_type@@A 100dc474 libucrt:report_runtime_error.obj - 0003:00022478 ?internal_pst@?1??__mbrtoc32_utf8@__crt_mbstring@@YAIPA_UPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z@4U3@A 100dc478 libucrt:mbrtoc32.obj - 0003:00022498 ?initlocks@std@@3V_Init_locks@1@A 100dc498 libcpmt:xlock.obj - 0003:000224a0 ?mtx@std@@3PAU_RTL_CRITICAL_SECTION@@A 100dc4a0 libcpmt:xlock.obj - 0003:0002257c ?classic_locale@std@@3Vlocale@1@A 100dc57c libcpmt:locale0.obj - 0003:00022584 ?_Fac_head@std@@3PAU_Fac_node@1@A 100dc584 libcpmt:locale0.obj - 0003:00022588 ?_Fac_tidy_reg@std@@3U_Fac_tidy_reg_t@1@B 100dc588 libcpmt:locale0.obj - 0003:0002258c _global_locale 100dc58c libcpmt:locale0.obj - 0003:00022590 ?registered@?1??_Setgloballocale@locale@std@@CAXPAX@Z@4_NA 100dc590 libcpmt:locale0.obj - 0003:00022598 ?stdstr@std@@3PAPAVios_base@1@A 100dc598 libcpmt:ios.obj - 0003:000225c0 ?stdopens@std@@3PADA 100dc5c0 libcpmt:ios.obj - 0003:000225d0 ?freq_cached@?1??_Query_perf_frequency@@9@4U?$atomic@_J@std@@A 100dc5d0 libcpmt:xtime.obj - 0003:000225f8 ?initlocks@std@@3V_Init_locks@1@A 100dc5f8 libcpmt:iosptrs.obj - 0003:000225f9 ?init_atexit@@3U_Init_atexit@@A 100dc5f9 libcpmt:iosptrs.obj - 0003:000225fc ?atfuns_cdecl@@3PAP6AXXZA 100dc5fc libcpmt:iosptrs.obj - 0003:00022624 ?__KERNEL32Function_GetCurrentPackageId@?A0x995b63b9@@3P6GJPAIPAE@ZA 100dc624 libcpmt:winapisupp.obj - 0003:00022628 ?__KERNEL32Function_GetSystemTimePreciseAsFileTime@?A0x995b63b9@@3P6GXPAU_FILETIME@@@ZA 100dc628 libcpmt:winapisupp.obj - 0003:0002262c ?__KERNEL32Function_GetTempPath2W@?A0x995b63b9@@3P6GKKPA_W@ZA 100dc62c libcpmt:winapisupp.obj - 0003:000226a0 ?is_initialized_as_dll@@3_NA 100dc6a0 LIBCMT:utility.obj - 0003:000226a1 ?module_local_atexit_table_initialized@@3_NA 100dc6a1 LIBCMT:utility.obj - 0003:000226a4 ?module_local_atexit_table@@3U_onexit_table_t@@A 100dc6a4 LIBCMT:utility.obj - 0003:000226b0 ?module_local_at_quick_exit_table@@3U_onexit_table_t@@A 100dc6b0 LIBCMT:utility.obj - 0003:000226bc ?g_tss_cv@@3U_RTL_CONDITION_VARIABLE@@A 100dc6bc LIBCMT:thread_safe_statics.obj - 0003:000226c0 ?g_tss_srw@@3U_RTL_SRWLOCK@@A 100dc6c0 LIBCMT:thread_safe_statics.obj - 0003:000226d4 ?__proc_attached@@3HA 100dc6d4 LIBCMT:dll_dllmain.obj - 0003:000226e8 _GS_ExceptionRecord 100dc6e8 LIBCMT:gs_report.obj - 0003:00022738 _GS_ContextRecord 100dc738 LIBCMT:gs_report.obj - 0003:00022a10 ?program_name@?1???$common_configure_argv@D@@YAHW4_crt_argv_mode@@@Z@4PADA 100dca10 libucrt:argv_parsing.obj - 0003:00022b34 ?internal_pst@?1??__c16rtomb_utf8@__crt_mbstring@@YAIPAD_SPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z@4U3@A 100dcb34 libucrt:c16rtomb.obj - 0004:00000060 $R000000 100dd060 * linker generated manifest res * + 0001:00000380 ??__EgGlueLoadScriptFunctionsDetour@Nampower@@YAXXZ 10001380 f main.cpp.obj + 0001:00000390 ??__EgIEndSceneDetour@Nampower@@YAXXZ 10001390 f main.cpp.obj + 0001:000003a0 ??__EgInvalidFunctionPtrCheckDetour@Nampower@@YAXXZ 100013a0 f main.cpp.obj + 0001:000003b0 ??__EgLoadScriptFunctionsDetour@Nampower@@YAXXZ 100013b0 f main.cpp.obj + 0001:000003c0 ??__EgNonGcdCastQueue@Nampower@@YAXXZ 100013c0 f main.cpp.obj + 0001:000003e0 ??__EgOnSpriteRightClickDetour@Nampower@@YAXXZ 100013e0 f main.cpp.obj + 0001:000003f0 ??__EgPeriodicAuraLogHandlerDetour@Nampower@@YAXXZ 100013f0 f main.cpp.obj + 0001:00000400 ??__EgPlaySpellVisualHandlerDetour@Nampower@@YAXXZ 10001400 f main.cpp.obj + 0001:00000410 ??__EgProcResistHandlerDetour@Nampower@@YAXXZ 10001410 f main.cpp.obj + 0001:00000420 ??__EgSendCastDetour@Nampower@@YAXXZ 10001420 f main.cpp.obj + 0001:00000430 ??__EgSendUnitSignalDetour@Nampower@@YAXXZ 10001430 f main.cpp.obj + 0001:00000440 ??__EgSetCVarDetour@Nampower@@YAXXZ 10001440 f main.cpp.obj + 0001:00000450 ??__EgSetEventCountDetour@Nampower@@YAXXZ 10001450 f main.cpp.obj + 0001:00000460 ??__EgSignalEventDetour@Nampower@@YAXXZ 10001460 f main.cpp.obj + 0001:00000470 ??__EgSpellChannelStartHandlerDetour@Nampower@@YAXXZ 10001470 f main.cpp.obj + 0001:00000480 ??__EgSpellChannelUpdateHandlerDetour@Nampower@@YAXXZ 10001480 f main.cpp.obj + 0001:00000490 ??__EgSpellCooldownDetour@Nampower@@YAXXZ 10001490 f main.cpp.obj + 0001:000004a0 ??__EgSpellDelayedDetour@Nampower@@YAXXZ 100014a0 f main.cpp.obj + 0001:000004b0 ??__EgSpellEnergizeLogHandlerDetour@Nampower@@YAXXZ 100014b0 f main.cpp.obj + 0001:000004c0 ??__EgSpellFailedDetour@Nampower@@YAXXZ 100014c0 f main.cpp.obj + 0001:000004d0 ??__EgSpellFailedOtherHandlerDetour@Nampower@@YAXXZ 100014d0 f main.cpp.obj + 0001:000004e0 ??__EgSpellGoDetour@Nampower@@YAXXZ 100014e0 f main.cpp.obj + 0001:000004f0 ??__EgSpellHealingLogHandlerDetour@Nampower@@YAXXZ 100014f0 f main.cpp.obj + 0001:00000500 ??__EgSpellLogMissHandlerDetour@Nampower@@YAXXZ 10001500 f main.cpp.obj + 0001:00000510 ??__EgSpellNonMeleeDmgLogHandlerDetour@Nampower@@YAXXZ 10001510 f main.cpp.obj + 0001:00000520 ??__EgSpellOrDamageImmuneHandlerDetour@Nampower@@YAXXZ 10001520 f main.cpp.obj + 0001:00000530 ??__EgSpellStartHandlerDetour@Nampower@@YAXXZ 10001530 f main.cpp.obj + 0001:00000540 ??__EgSpellStopCastingDetour@Nampower@@YAXXZ 10001540 f main.cpp.obj + 0001:00000550 ??__EgSpellTargetUnitDetour@Nampower@@YAXXZ 10001550 f main.cpp.obj + 0001:00000560 ??__EgSpell_C_CooldownEventTriggeredDetour@Nampower@@YAXXZ 10001560 f main.cpp.obj + 0001:00000570 ??__EgSpell_C_GetAutoRepeatingSpellDetour@Nampower@@YAXXZ 10001570 f main.cpp.obj + 0001:00000580 ??__EgSpell_C_GetSpellModifiersDetour@Nampower@@YAXXZ 10001580 f main.cpp.obj + 0001:00000590 ??__EgSpell_C_GetSpellRadiusDetour@Nampower@@YAXXZ 10001590 f main.cpp.obj + 0001:000005a0 ??__EgSpell_C_HandleSpriteClickDetour@Nampower@@YAXXZ 100015a0 f main.cpp.obj + 0001:000005b0 ??__EgSpell_C_HandleTerrainClickDetour@Nampower@@YAXXZ 100015b0 f main.cpp.obj + 0001:000005c0 ??__EgSpell_C_TargetSpellDetour@Nampower@@YAXXZ 100015c0 f main.cpp.obj + 0001:000005d0 ??__EgSysMsgInitDetour@Nampower@@YAXXZ 100015d0 f main.cpp.obj + 0001:000005e0 ??__EgTogglePetSlotAutocastDetour@Nampower@@YAXXZ 100015e0 f main.cpp.obj + 0001:000005f0 ??__EgUnitCombatLogUnitDeadDetour@Nampower@@YAXXZ 100015f0 f main.cpp.obj + 0001:00000600 ??__EunitFieldsArrayFieldRefs@Nampower@@YAXXZ 10001600 f misc_scripts.cpp.obj + 0001:00000620 ??__EunitFieldsNestedArrayRefs@Nampower@@YAXXZ 10001620 f misc_scripts.cpp.obj + 0001:00000640 ??__EspellRecArrayFieldRefs@Nampower@@YAXXZ 10001640 f spell_scripts.cpp.obj + 0001:00000660 ??__EspellRecNestedArrayRefs@Nampower@@YAXXZ 10001660 f spell_scripts.cpp.obj + 0001:00000680 ??__EitemStatsArrayFieldRefs@Nampower@@YAXXZ 10001680 f item_scripts.cpp.obj + 0001:000006a0 ??__EitemStatsNestedArrayRefs@Nampower@@YAXXZ 100016a0 f item_scripts.cpp.obj + 0001:000006c0 ??__EbagItemDataCache@Nampower@@YAXXZ 100016c0 f items.cpp.obj + 0001:000006f0 ??__EequippedItemDataCache@Nampower@@YAXXZ 100016f0 f items.cpp.obj + 0001:00000750 ??__EitemNameToIdCache@Nampower@@YAXXZ 10001750 f items.cpp.obj + 0001:00000800 ??__EitemStatsCache@Nampower@@YAXXZ 10001800 f items.cpp.obj + 0001:000008b0 ??__EpendingItemIds@Nampower@@YAXXZ 100018b0 f items.cpp.obj + 0001:00000960 ??__EitemStatsArrayFieldMap@Nampower@@YAXXZ 10001960 f dbc_fields.cpp.obj + 0001:00000980 ??__EitemStatsFieldMap@Nampower@@YAXXZ 10001980 f dbc_fields.cpp.obj + 0001:000009a0 ??__EspellRecArrayFieldMap@Nampower@@YAXXZ 100019a0 f dbc_fields.cpp.obj + 0001:000009c0 ??__EspellRecFieldMap@Nampower@@YAXXZ 100019c0 f dbc_fields.cpp.obj + 0001:000009e0 ??__EunitFieldsArrayFieldMap@Nampower@@YAXXZ 100019e0 f unit_fields.cpp.obj + 0001:00000a00 ??__EunitFieldsFieldMap@Nampower@@YAXXZ 10001a00 f unit_fields.cpp.obj + 0001:00000a20 ??__EregisteredTableRefs@Nampower@@YAXXZ 10001a20 f lua_refs.cpp.obj + 0001:00000a2c ??__Einitlocks@std@@YAXXZ 10001a2c f libcpmt:xlock.obj + 0001:00000a42 ??__Eclassic_locale@std@@YAXXZ 10001a42 f libcpmt:locale0.obj + 0001:00000a4e ??__F_Fac_tidy_reg@std@@YAXXZ 10001a4e f libcpmt:locale0.obj + 0001:00000a5a ??__Einitlocks@std@@YAXXZ 10001a5a f libcpmt:iosptrs.obj + 0001:00000a70 ??__Finit_atexit@@YAXXZ 10001a70 f libcpmt:iosptrs.obj + 0001:00000ca5 _ud_inp_init 10001ca5 f udis86:udis86.obj + 0001:00000ce0 _inp_file_hook 10001ce0 f udis86:udis86.obj + 0001:00000cf1 _opr_cast 10001cf1 f udis86:syn-intel.obj + 0001:00000d70 _gen_operand 10001d70 f udis86:syn-intel.obj + 0001:00001198 _inp_peek 10002198 f udis86:decode.obj + 0001:000011e0 _inp_next 100021e0 f udis86:decode.obj + 0001:00001242 _inp_uint16 10002242 f udis86:decode.obj + 0001:00001264 _inp_uint32 10002264 f udis86:decode.obj + 0001:000012a0 _inp_uint64 100022a0 f udis86:decode.obj + 0001:0000133b _decode_prefixes 1000233b f udis86:decode.obj + 0001:00001467 _modrm 10002467 f udis86:decode.obj + 0001:00001498 _resolve_operand_size 10002498 f udis86:decode.obj + 0001:00001524 _resolve_mnemonic 10002524 f udis86:decode.obj + 0001:000015f7 _decode_a 100025f7 f udis86:decode.obj + 0001:0000163b _decode_gpr 1000263b f udis86:decode.obj + 0001:0000169e _decode_reg 1000269e f udis86:decode.obj + 0001:00001732 _decode_imm 10002732 f udis86:decode.obj + 0001:0000178e _decode_mem_disp 1000278e f udis86:decode.obj + 0001:000017ee _decode_modrm_reg 100027ee f udis86:decode.obj + 0001:0000182a _decode_modrm_rm 1000282a f udis86:decode.obj + 0001:00001ae0 _decode_operand 10002ae0 f udis86:decode.obj + 0001:00001d44 $LN82 10002d44 udis86:decode.obj + 0001:00001dc0 $LN81 10002dc0 udis86:decode.obj + 0001:00001dfb _decode_operands 10002dfb f udis86:decode.obj + 0001:00001ea7 _clear_insn 10002ea7 f udis86:decode.obj + 0001:00001efd _resolve_mode 10002efd f udis86:decode.obj + 0001:0000204e _decode_insn 1000304e f udis86:decode.obj + 0001:000020c2 _decode_3dnow 100030c2 f udis86:decode.obj + 0001:0000210e _decode_ssepfx 1000310e f udis86:decode.obj + 0001:0000218c _decode_vex 1000318c f udis86:decode.obj + 0001:00002225 _decode_ext 10003225 f udis86:decode.obj + 0001:000023d1 $LN60 100033d1 udis86:decode.obj + 0001:00002409 _decode_opcode 10003409 f udis86:decode.obj + 0001:00004590 _initialize_environment 10005590 f i libucrt:initialization.obj + 0001:00004590 _initialize_global_state_isolation 10005590 f i libucrt:initialization.obj + 0001:00004590 _report_memory_leaks 10005590 f i libucrt:initialization.obj + 0001:00004590 _uninitialize_c 10005590 f i libucrt:initialization.obj + 0001:00004590 _uninitialize_global_state_isolation 10005590 f i libucrt:initialization.obj + 0001:00005120 _no_op_initialize 10006120 f i libucrt:wsetlocale.obj + 0001:000062e0 __catch$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z$0 100072e0 f i main.cpp.obj + 0001:00006380 __catch$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z$0 10007380 f i main.cpp.obj + 0001:000064d0 __catch$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$0 100074d0 f i main.cpp.obj + 0001:00006620 __catch$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$0 10007620 f i main.cpp.obj + 0001:000066c0 __catch$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z$0 100076c0 f i main.cpp.obj + 0001:000067ba __catch$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$0 100077ba f i main.cpp.obj + 0001:00006a36 __catch$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$0 10007a36 f i main.cpp.obj + 0001:00006ce2 __catch$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$0 10007ce2 f i main.cpp.obj + 0001:0000813a __catch$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$0 1000913a f i main.cpp.obj + 0001:0000881a __catch$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$0 1000981a f i main.cpp.obj + 0001:00008c34 __catch$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$0 10009c34 f i main.cpp.obj + 0001:00008d65 __catch$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$1 10009d65 f i main.cpp.obj + 0001:00008e7b __catch$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$2 10009e7b f i main.cpp.obj + 0001:00009444 __catch$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$0 1000a444 f i main.cpp.obj + 0001:00009575 __catch$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$1 1000a575 f i main.cpp.obj + 0001:0000968b __catch$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$2 1000a68b f i main.cpp.obj + 0001:00009c54 __catch$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$0 1000ac54 f i main.cpp.obj + 0001:00009d85 __catch$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$1 1000ad85 f i main.cpp.obj + 0001:00009e9b __catch$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$2 1000ae9b f i main.cpp.obj + 0001:0000a464 __catch$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$0 1000b464 f i main.cpp.obj + 0001:0000a595 __catch$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$1 1000b595 f i main.cpp.obj + 0001:0000a6ab __catch$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$2 1000b6ab f i main.cpp.obj + 0001:0000ac74 __catch$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$0 1000bc74 f i main.cpp.obj + 0001:0000ada5 __catch$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$1 1000bda5 f i main.cpp.obj + 0001:0000aebb __catch$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$2 1000bebb f i main.cpp.obj + 0001:0000b484 __catch$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$0 1000c484 f i main.cpp.obj + 0001:0000b5b5 __catch$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$1 1000c5b5 f i main.cpp.obj + 0001:0000b6cb __catch$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$2 1000c6cb f i main.cpp.obj + 0001:0000bc94 __catch$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$0 1000cc94 f i main.cpp.obj + 0001:0000bdc5 __catch$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$1 1000cdc5 f i main.cpp.obj + 0001:0000bedb __catch$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$2 1000cedb f i main.cpp.obj + 0001:0000c4a4 __catch$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$0 1000d4a4 f i main.cpp.obj + 0001:0000c5d5 __catch$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$1 1000d5d5 f i main.cpp.obj + 0001:0000c6eb __catch$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$2 1000d6eb f i main.cpp.obj + 0001:0000ccb4 __catch$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$0 1000dcb4 f i main.cpp.obj + 0001:0000cde5 __catch$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$1 1000dde5 f i main.cpp.obj + 0001:0000cefb __catch$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$2 1000defb f i main.cpp.obj + 0001:0000d4c4 __catch$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$0 1000e4c4 f i main.cpp.obj + 0001:0000d5f5 __catch$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$1 1000e5f5 f i main.cpp.obj + 0001:0000d70b __catch$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$2 1000e70b f i main.cpp.obj + 0001:0000dcd4 __catch$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$0 1000ecd4 f i main.cpp.obj + 0001:0000de05 __catch$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$1 1000ee05 f i main.cpp.obj + 0001:0000df1b __catch$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$2 1000ef1b f i main.cpp.obj + 0001:0000e4e4 __catch$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$0 1000f4e4 f i main.cpp.obj + 0001:0000e615 __catch$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$1 1000f615 f i main.cpp.obj + 0001:0000e72b __catch$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$2 1000f72b f i main.cpp.obj + 0001:0000ecf4 __catch$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$0 1000fcf4 f i main.cpp.obj + 0001:0000ee25 __catch$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$1 1000fe25 f i main.cpp.obj + 0001:0000ef3b __catch$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$2 1000ff3b f i main.cpp.obj + 0001:0000f504 __catch$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$0 10010504 f i main.cpp.obj + 0001:0000f635 __catch$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$1 10010635 f i main.cpp.obj + 0001:0000f74b __catch$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$2 1001074b f i main.cpp.obj + 0001:0000fd14 __catch$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$0 10010d14 f i main.cpp.obj + 0001:0000fe45 __catch$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$1 10010e45 f i main.cpp.obj + 0001:0000ff5b __catch$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$2 10010f5b f i main.cpp.obj + 0001:00010524 __catch$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$0 10011524 f i main.cpp.obj + 0001:00010655 __catch$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$1 10011655 f i main.cpp.obj + 0001:0001076b __catch$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$2 1001176b f i main.cpp.obj + 0001:00010d34 __catch$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$0 10011d34 f i main.cpp.obj + 0001:00010e65 __catch$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$1 10011e65 f i main.cpp.obj + 0001:00010f7b __catch$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$2 10011f7b f i main.cpp.obj + 0001:00011544 __catch$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$0 10012544 f i main.cpp.obj + 0001:00011675 __catch$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$1 10012675 f i main.cpp.obj + 0001:0001178b __catch$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$2 1001278b f i main.cpp.obj + 0001:00011d54 __catch$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$0 10012d54 f i main.cpp.obj + 0001:00011e85 __catch$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$1 10012e85 f i main.cpp.obj + 0001:00011f9b __catch$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$2 10012f9b f i main.cpp.obj + 0001:00012564 __catch$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$0 10013564 f i main.cpp.obj + 0001:00012695 __catch$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$1 10013695 f i main.cpp.obj + 0001:000127ab __catch$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$2 100137ab f i main.cpp.obj + 0001:00012d74 __catch$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$0 10013d74 f i main.cpp.obj + 0001:00012ea5 __catch$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$1 10013ea5 f i main.cpp.obj + 0001:00012fbb __catch$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$2 10013fbb f i main.cpp.obj + 0001:00013584 __catch$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$0 10014584 f i main.cpp.obj + 0001:000136b5 __catch$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$1 100146b5 f i main.cpp.obj + 0001:000137cb __catch$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$2 100147cb f i main.cpp.obj + 0001:00013d94 __catch$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$0 10014d94 f i main.cpp.obj + 0001:00013ec5 __catch$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$1 10014ec5 f i main.cpp.obj + 0001:00013fdb __catch$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$2 10014fdb f i main.cpp.obj + 0001:000145a4 __catch$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$0 100155a4 f i main.cpp.obj + 0001:000146d5 __catch$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$1 100156d5 f i main.cpp.obj + 0001:000147eb __catch$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$2 100157eb f i main.cpp.obj + 0001:00014dc4 __catch$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$0 10015dc4 f i main.cpp.obj + 0001:00014ef5 __catch$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$1 10015ef5 f i main.cpp.obj + 0001:0001500b __catch$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$2 1001600b f i main.cpp.obj + 0001:000155d4 __catch$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$0 100165d4 f i main.cpp.obj + 0001:00015705 __catch$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$1 10016705 f i main.cpp.obj + 0001:0001581b __catch$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$2 1001681b f i main.cpp.obj + 0001:00015de4 __catch$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$0 10016de4 f i main.cpp.obj + 0001:00015f15 __catch$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$1 10016f15 f i main.cpp.obj + 0001:0001602b __catch$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$2 1001702b f i main.cpp.obj + 0001:000165f4 __catch$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$0 100175f4 f i main.cpp.obj + 0001:00016725 __catch$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$1 10017725 f i main.cpp.obj + 0001:0001683b __catch$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$2 1001783b f i main.cpp.obj + 0001:00016e04 __catch$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$0 10017e04 f i main.cpp.obj + 0001:00016f35 __catch$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$1 10017f35 f i main.cpp.obj + 0001:0001704b __catch$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$2 1001804b f i main.cpp.obj + 0001:00017614 __catch$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$0 10018614 f i main.cpp.obj + 0001:00017745 __catch$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$1 10018745 f i main.cpp.obj + 0001:0001785b __catch$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$2 1001885b f i main.cpp.obj + 0001:00017e24 __catch$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$0 10018e24 f i main.cpp.obj + 0001:00017f55 __catch$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$1 10018f55 f i main.cpp.obj + 0001:0001806b __catch$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$2 1001906b f i main.cpp.obj + 0001:00018634 __catch$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$0 10019634 f i main.cpp.obj + 0001:00018765 __catch$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$1 10019765 f i main.cpp.obj + 0001:0001887b __catch$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$2 1001987b f i main.cpp.obj + 0001:00018beb __catch$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ$0 10019beb f i main.cpp.obj + 0001:00018c06 __catch$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ$1 10019c06 f i main.cpp.obj + 0001:00018c6b __catch$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ$0 10019c6b f i main.cpp.obj + 0001:00018c86 __catch$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ$1 10019c86 f i main.cpp.obj + 0001:0001efb3 __catch$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$0 1001ffb3 f i main.cpp.obj + 0001:0001f445 __catch$??0SuspendedProcess@hadesmem@@QAE@KK@Z$0 10020445 f i main.cpp.obj + 0001:000205d3 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$0 100215d3 f i main.cpp.obj + 0001:00020780 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$0 10021780 f i main.cpp.obj + 0001:00020780 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$0 10021780 f i main.cpp.obj + 0001:0002093d __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$0 1002193d f i main.cpp.obj + 0001:00020b10 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$0 10021b10 f i main.cpp.obj + 0001:00020cc4 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$0 10021cc4 f i main.cpp.obj + 0001:00020e70 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$0 10021e70 f i main.cpp.obj + 0001:00020fd0 ??R@@QBE@XZ 10021fd0 f main.cpp.obj + 0001:000247a4 $LN455 100257a4 main.cpp.obj + 0001:000247b8 $LN454 100257b8 main.cpp.obj + 0001:00025014 $LN455 10026014 main.cpp.obj + 0001:00025028 $LN454 10026028 main.cpp.obj + 0001:00025884 $LN455 10026884 main.cpp.obj + 0001:00025898 $LN454 10026898 main.cpp.obj + 0001:000260f4 $LN455 100270f4 main.cpp.obj + 0001:00026108 $LN454 10027108 main.cpp.obj + 0001:00026964 $LN455 10027964 main.cpp.obj + 0001:00026978 $LN454 10027978 main.cpp.obj + 0001:000271d4 $LN455 100281d4 main.cpp.obj + 0001:000271e8 $LN454 100281e8 main.cpp.obj + 0001:00027a44 $LN455 10028a44 main.cpp.obj + 0001:00027a58 $LN454 10028a58 main.cpp.obj + 0001:000282b4 $LN455 100292b4 main.cpp.obj + 0001:000282c8 $LN454 100292c8 main.cpp.obj + 0001:00028b24 $LN455 10029b24 main.cpp.obj + 0001:00028b38 $LN454 10029b38 main.cpp.obj + 0001:00029394 $LN455 1002a394 main.cpp.obj + 0001:000293a8 $LN454 1002a3a8 main.cpp.obj + 0001:00029c04 $LN455 1002ac04 main.cpp.obj + 0001:00029c18 $LN454 1002ac18 main.cpp.obj + 0001:0002a474 $LN455 1002b474 main.cpp.obj + 0001:0002a488 $LN454 1002b488 main.cpp.obj + 0001:0002ace4 $LN455 1002bce4 main.cpp.obj + 0001:0002acf8 $LN454 1002bcf8 main.cpp.obj + 0001:0002b554 $LN455 1002c554 main.cpp.obj + 0001:0002b568 $LN454 1002c568 main.cpp.obj + 0001:0002bdc4 $LN455 1002cdc4 main.cpp.obj + 0001:0002bdd8 $LN454 1002cdd8 main.cpp.obj + 0001:0002c634 $LN455 1002d634 main.cpp.obj + 0001:0002c648 $LN454 1002d648 main.cpp.obj + 0001:0002cea4 $LN455 1002dea4 main.cpp.obj + 0001:0002ceb8 $LN454 1002deb8 main.cpp.obj + 0001:0002d714 $LN455 1002e714 main.cpp.obj + 0001:0002d728 $LN454 1002e728 main.cpp.obj + 0001:0002df84 $LN455 1002ef84 main.cpp.obj + 0001:0002df98 $LN454 1002ef98 main.cpp.obj + 0001:0002e7f4 $LN455 1002f7f4 main.cpp.obj + 0001:0002e808 $LN454 1002f808 main.cpp.obj + 0001:0002f064 $LN455 10030064 main.cpp.obj + 0001:0002f078 $LN454 10030078 main.cpp.obj + 0001:0002f8d4 $LN455 100308d4 main.cpp.obj + 0001:0002f8e8 $LN454 100308e8 main.cpp.obj + 0001:00030144 $LN455 10031144 main.cpp.obj + 0001:00030158 $LN454 10031158 main.cpp.obj + 0001:000309b4 $LN455 100319b4 main.cpp.obj + 0001:000309c8 $LN454 100319c8 main.cpp.obj + 0001:00031224 $LN455 10032224 main.cpp.obj + 0001:00031238 $LN454 10032238 main.cpp.obj + 0001:00031a94 $LN455 10032a94 main.cpp.obj + 0001:00031aa8 $LN454 10032aa8 main.cpp.obj + 0001:00032324 $LN455 10033324 main.cpp.obj + 0001:00032338 $LN454 10033338 main.cpp.obj + 0001:00032b94 $LN455 10033b94 main.cpp.obj + 0001:00032ba8 $LN454 10033ba8 main.cpp.obj + 0001:00033404 $LN455 10034404 main.cpp.obj + 0001:00033418 $LN454 10034418 main.cpp.obj + 0001:00033c74 $LN455 10034c74 main.cpp.obj + 0001:00033c88 $LN454 10034c88 main.cpp.obj + 0001:000344e4 $LN455 100354e4 main.cpp.obj + 0001:000344f8 $LN454 100354f8 main.cpp.obj + 0001:00034d54 $LN455 10035d54 main.cpp.obj + 0001:00034d68 $LN454 10035d68 main.cpp.obj + 0001:000355c4 $LN455 100365c4 main.cpp.obj + 0001:000355d8 $LN454 100365d8 main.cpp.obj + 0001:00035779 __catch$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$0 10036779 f i main.cpp.obj + 0001:00035821 __catch$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$0 10036821 f i main.cpp.obj + 0001:0003597e __catch$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$0 1003697e f i main.cpp.obj + 0001:00035a5e __catch$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$0 10036a5e f i main.cpp.obj + 0001:000361a3 __catch$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$0 100371a3 f i main.cpp.obj + 0001:0003da59 __catch$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003ea59 f i main.cpp.obj + 0001:0003db39 __catch$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$0 1003eb39 f i main.cpp.obj + 0001:0003dc19 __catch$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003ec19 f i main.cpp.obj + 0001:0003dcf9 __catch$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$0 1003ecf9 f i main.cpp.obj + 0001:0003ddd9 __catch$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$0 1003edd9 f i main.cpp.obj + 0001:0003deb9 __catch$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$0 1003eeb9 f i main.cpp.obj + 0001:0003df99 __catch$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$0 1003ef99 f i main.cpp.obj + 0001:0003e079 __catch$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$0 1003f079 f i main.cpp.obj + 0001:0003e159 __catch$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$0 1003f159 f i main.cpp.obj + 0001:0003e239 __catch$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$0 1003f239 f i main.cpp.obj + 0001:0003e319 __catch$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$0 1003f319 f i main.cpp.obj + 0001:0003e3f9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$0 1003f3f9 f i main.cpp.obj + 0001:0003e4d9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$0 1003f4d9 f i main.cpp.obj + 0001:0003e5b9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$0 1003f5b9 f i main.cpp.obj + 0001:0003e699 __catch$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$0 1003f699 f i main.cpp.obj + 0001:0003e779 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$0 1003f779 f i main.cpp.obj + 0001:0003e859 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$0 1003f859 f i main.cpp.obj + 0001:0003e939 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$0 1003f939 f i main.cpp.obj + 0001:0003ea19 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$0 1003fa19 f i main.cpp.obj + 0001:0003eaf9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$0 1003faf9 f i main.cpp.obj + 0001:0003ebd9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$0 1003fbd9 f i main.cpp.obj + 0001:0003ecb9 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003fcb9 f i main.cpp.obj + 0001:0003ed99 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$0 1003fd99 f i main.cpp.obj + 0001:0003ee79 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 1003fe79 f i main.cpp.obj + 0001:0003ef59 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$0 1003ff59 f i main.cpp.obj + 0001:0003f039 __catch$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$0 10040039 f i main.cpp.obj + 0001:0003f119 __catch$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$0 10040119 f i main.cpp.obj + 0001:0003f1f9 __catch$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$0 100401f9 f i main.cpp.obj + 0001:0003f2d9 __catch$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$0 100402d9 f i main.cpp.obj + 0001:0003f3b9 __catch$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$0 100403b9 f i main.cpp.obj + 0001:0003f499 __catch$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$0 10040499 f i main.cpp.obj + 0001:0003f579 __catch$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$0 10040579 f i main.cpp.obj + 0001:0003f659 __catch$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$0 10040659 f i main.cpp.obj + 0001:0003f797 __catch$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$0 10040797 f i main.cpp.obj + 0001:0003f976 __catch$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$0 10040976 f i main.cpp.obj + 0001:0003fa0c __catch$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$0 10040a0c f i main.cpp.obj + 0001:00040cc4 __catch$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$0 10041cc4 f i main.cpp.obj + 0001:00043452 __catch$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ$0 10044452 f i main.cpp.obj + 0001:00045ecd __catch$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$0 10046ecd f i main.cpp.obj + 0001:000460b7 __catch$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$0 100470b7 f i main.cpp.obj + 0001:0004a209 __catch$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$0 1004b209 f i main.cpp.obj + 0001:0004c0f0 __catch$_Load$0 1004d0f0 f main.cpp.obj + 0001:0004c18f __catch$_Load$1 1004d18f f main.cpp.obj + 0001:0004c2f0 ??$_Find_last@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@I@Z 1004d2f0 f helper.cpp.obj + 0001:0004c450 ??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004d450 f helper.cpp.obj + 0001:0004c860 ??$fill@PAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@std@@V12@@std@@YAXQAV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@0@0ABV10@@Z 1004d860 f helper.cpp.obj + 0001:0004c8c0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@@std@@@std@@QAE@XZ 1004d8c0 f helper.cpp.obj + 0001:0004c900 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@QAE@XZ 1004d900 f helper.cpp.obj + 0001:0004c9f0 ??1?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@std@@@std@@@std@@QAE@XZ 1004d9f0 f helper.cpp.obj + 0001:0004ca50 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@@std@@@std@@QAE@XZ 1004da50 f helper.cpp.obj + 0001:0004ca80 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@@std@@QAE@XZ 1004da80 f helper.cpp.obj + 0001:0004cb10 ??1?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@QAE@XZ 1004db10 f helper.cpp.obj + 0001:0004cba0 ??1CachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@QAE@XZ 1004dba0 f helper.cpp.obj + 0001:0004cbf0 ??R@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 1004dbf0 f helper.cpp.obj + 0001:0004d7f0 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@std@@@std@@@2@@Z 1004e7f0 f helper.cpp.obj + 0001:0004d9d0 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004e9d0 f helper.cpp.obj + 0001:0004dee4 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$0 1004eee4 f i spellcast.cpp.obj + 0001:00051d5c $LN19 10052d5c spellevents.cpp.obj + 0001:00051d70 $LN18 10052d70 spellevents.cpp.obj + 0001:000529f0 $LN218 100539f0 spellevents.cpp.obj + 0001:000529f8 $LN217 100539f8 spellevents.cpp.obj + 0001:00054258 $LN47 10055258 spellevents.cpp.obj + 0001:00054260 $LN46 10055260 spellevents.cpp.obj + 0001:00054be4 $LN85 10055be4 item_scripts.cpp.obj + 0001:00054be4 $LN85 10055be4 misc_scripts.cpp.obj + 0001:00054be4 $LN85 10055be4 spell_scripts.cpp.obj + 0001:000551a0 ??R@@QBE_KI@Z 100561a0 f misc_scripts.cpp.obj + 0001:00056a14 $LN53 10057a14 misc_scripts.cpp.obj + 0001:00056a28 $LN54 10057a28 misc_scripts.cpp.obj + 0001:00056d80 $LN101 10057d80 misc_scripts.cpp.obj + 0001:00057e7d __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$0 10058e7d f i file_scripts.cpp.obj + 0001:00057f32 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$2 10058f32 f i file_scripts.cpp.obj + 0001:00058110 ?BuildPath@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD0_N@Z 10059110 f file_scripts.cpp.obj + 0001:00058250 ?DecryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 10059250 f file_scripts.cpp.obj + 0001:00058430 ?EncryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 10059430 f file_scripts.cpp.obj + 0001:00058640 ?GetEnvVar@Nampower@@YA_NPBDAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10059640 f file_scripts.cpp.obj + 0001:00058740 ?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z 10059740 f file_scripts.cpp.obj + 0001:00058c40 ?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10059c40 f file_scripts.cpp.obj + 0001:00059bc0 ?TryGetFullPath@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV23@@Z 1005abc0 f file_scripts.cpp.obj + 0001:00059c60 ?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z 1005ac60 f file_scripts.cpp.obj + 0001:0005b354 $LN67 1005c354 spell_scripts.cpp.obj + 0001:0005b36c $LN68 1005c36c spell_scripts.cpp.obj + 0001:0005b85c $LN166 1005c85c spell_scripts.cpp.obj + 0001:0005b874 $LN167 1005c874 spell_scripts.cpp.obj + 0001:0005ce20 ??R@@QBE@HIPAUCGItem_C@game@@@Z 1005de20 f item_scripts.cpp.obj + 0001:0005ee6c $LN59 1005fe6c item_scripts.cpp.obj + 0001:0005ee84 $LN60 1005fe84 item_scripts.cpp.obj + 0001:0005f2d0 $LN160 100602d0 item_scripts.cpp.obj + 0001:0005f2e8 $LN161 100602e8 item_scripts.cpp.obj + 0001:00062050 ?CountsAsEmptyForLua@Nampower@@YA_NPBUUnitFields@game@@I@Z 10063050 f auras.cpp.obj + 0001:0006452c $LN46 1006552c unit.cpp.obj + 0001:00064560 $LN45 10065560 unit.cpp.obj + 0001:000646ec ?_FilterSetCurrentException@@YAKPAU_EXCEPTION_POINTERS@@E@Z 100656ec f libvcruntime:ehhelpers.obj + 0001:00064c90 $$000000 10065c90 libvcruntime:memcpy.obj + 0001:00064c90 $$000000 10065c90 libvcruntime:memmove.obj + 0001:00064cb0 CopyUp 10065cb0 libvcruntime:memcpy.obj + 0001:00064cb0 CopyUp 10065cb0 libvcruntime:memmove.obj + 0001:00064cd4 CopyUpLargeMov 10065cd4 libvcruntime:memcpy.obj + 0001:00064cd4 CopyUpLargeMov 10065cd4 libvcruntime:memmove.obj + 0001:00064ce7 CopyUpSSE2Check 10065ce7 libvcruntime:memcpy.obj + 0001:00064ce7 CopyUpSSE2Check 10065ce7 libvcruntime:memmove.obj + 0001:00064d00 AtomChk 10065d00 libvcruntime:memcpy.obj + 0001:00064d00 AtomChk 10065d00 libvcruntime:memmove.obj + 0001:00064d26 PalignHead4 10065d26 libvcruntime:memcpy.obj + 0001:00064d26 PalignHead4 10065d26 libvcruntime:memmove.obj + 0001:00064d39 PalignHead8 10065d39 libvcruntime:memcpy.obj + 0001:00064d39 PalignHead8 10065d39 libvcruntime:memmove.obj + 0001:00064d50 PalignLoop 10065d50 libvcruntime:memcpy.obj + 0001:00064d50 PalignLoop 10065d50 libvcruntime:memmove.obj + 0001:00064d62 MovPalign12 10065d62 libvcruntime:memcpy.obj + 0001:00064d62 MovPalign12 10065d62 libvcruntime:memmove.obj + 0001:00064d6c PalignLoop12 10065d6c libvcruntime:memcpy.obj + 0001:00064d6c PalignLoop12 10065d6c libvcruntime:memmove.obj + 0001:00064dbd MovPalign8 10065dbd libvcruntime:memcpy.obj + 0001:00064dbd MovPalign8 10065dbd libvcruntime:memmove.obj + 0001:00064dc8 PalignLoop8 10065dc8 libvcruntime:memcpy.obj + 0001:00064dc8 PalignLoop8 10065dc8 libvcruntime:memmove.obj + 0001:00064e16 MovPalign4 10065e16 libvcruntime:memcpy.obj + 0001:00064e16 MovPalign4 10065e16 libvcruntime:memmove.obj + 0001:00064e20 PalignLoop4 10065e20 libvcruntime:memcpy.obj + 0001:00064e20 PalignLoop4 10065e20 libvcruntime:memmove.obj + 0001:00064e6c PalignTail 10065e6c libvcruntime:memcpy.obj + 0001:00064e6c PalignTail 10065e6c libvcruntime:memmove.obj + 0001:00064e84 PalignTail4 10065e84 libvcruntime:memcpy.obj + 0001:00064e84 PalignTail4 10065e84 libvcruntime:memmove.obj + 0001:00064e97 PalignTail8 10065e97 libvcruntime:memcpy.obj + 0001:00064e97 PalignTail8 10065e97 libvcruntime:memmove.obj + 0001:00064eae PalignTailLE3 10065eae libvcruntime:memcpy.obj + 0001:00064eae PalignTailLE3 10065eae libvcruntime:memmove.obj + 0001:00064eb7 Dword_align 10065eb7 libvcruntime:memcpy.obj + 0001:00064eb7 Dword_align 10065eb7 libvcruntime:memmove.obj + 0001:00064ebf Dword_up_align_loop 10065ebf libvcruntime:memcpy.obj + 0001:00064ebf Dword_up_align_loop 10065ebf libvcruntime:memmove.obj + 0001:00064ed2 Dword_align_Ok 10065ed2 libvcruntime:memcpy.obj + 0001:00064ed2 Dword_align_Ok 10065ed2 libvcruntime:memmove.obj + 0001:00064eec ByteCopyUp 10065eec libvcruntime:memcpy.obj + 0001:00064eec ByteCopyUp 10065eec libvcruntime:memmove.obj + 0001:00064ef4 TrailingUpVec 10065ef4 libvcruntime:memcpy.obj + 0001:00064ef4 TrailingUpVec 10065ef4 libvcruntime:memmove.obj + 0001:00064f04 TrailingUp0 10065f04 libvcruntime:memcpy.obj + 0001:00064f04 TrailingUp0 10065f04 libvcruntime:memmove.obj + 0001:00064f0c TrailingUp1 10065f0c libvcruntime:memcpy.obj + 0001:00064f0c TrailingUp1 10065f0c libvcruntime:memmove.obj + 0001:00064f18 TrailingUp2 10065f18 libvcruntime:memcpy.obj + 0001:00064f18 TrailingUp2 10065f18 libvcruntime:memmove.obj + 0001:00064f2c TrailingUp3 10065f2c libvcruntime:memcpy.obj + 0001:00064f2c TrailingUp3 10065f2c libvcruntime:memmove.obj + 0001:00064f44 CopyDown 10065f44 libvcruntime:memcpy.obj + 0001:00064f44 CopyDown 10065f44 libvcruntime:memmove.obj + 0001:00064f69 CopyDownNotAligned 10065f69 libvcruntime:memcpy.obj + 0001:00064f69 CopyDownNotAligned 10065f69 libvcruntime:memmove.obj + 0001:00064f70 CopyDownAlignLoop 10065f70 libvcruntime:memcpy.obj + 0001:00064f70 CopyDownAlignLoop 10065f70 libvcruntime:memmove.obj + 0001:00064f7d CopyDownAligned 10065f7d libvcruntime:memcpy.obj + 0001:00064f7d CopyDownAligned 10065f7d libvcruntime:memmove.obj + 0001:00064fa0 TrailingDownVec 10065fa0 libvcruntime:memcpy.obj + 0001:00064fa0 TrailingDownVec 10065fa0 libvcruntime:memmove.obj + 0001:00064fb0 TrailingDown0 10065fb0 libvcruntime:memcpy.obj + 0001:00064fb0 TrailingDown0 10065fb0 libvcruntime:memmove.obj + 0001:00064fb8 TrailingDown1 10065fb8 libvcruntime:memcpy.obj + 0001:00064fb8 TrailingDown1 10065fb8 libvcruntime:memmove.obj + 0001:00064fc8 TrailingDown2 10065fc8 libvcruntime:memcpy.obj + 0001:00064fc8 TrailingDown2 10065fc8 libvcruntime:memmove.obj + 0001:00064fdc TrailingDown3 10065fdc libvcruntime:memcpy.obj + 0001:00064fdc TrailingDown3 10065fdc libvcruntime:memmove.obj + 0001:00064ff5 XmmMovLargeAlignTest 10065ff5 libvcruntime:memcpy.obj + 0001:00064ff5 XmmMovLargeAlignTest 10065ff5 libvcruntime:memmove.obj + 0001:00064ffd XmmMovAlignLoop 10065ffd libvcruntime:memcpy.obj + 0001:00064ffd XmmMovAlignLoop 10065ffd libvcruntime:memmove.obj + 0001:0006500c XmmMovLargeLoop 1006600c libvcruntime:memcpy.obj + 0001:0006500c XmmMovLargeLoop 1006600c libvcruntime:memmove.obj + 0001:0006507c XmmMovSmallTest 1006607c libvcruntime:memcpy.obj + 0001:0006507c XmmMovSmallTest 1006607c libvcruntime:memmove.obj + 0001:00065081 XmmMovSmallLoop 10066081 libvcruntime:memcpy.obj + 0001:00065081 XmmMovSmallLoop 10066081 libvcruntime:memmove.obj + 0001:000650a4 CopyDownSmall 100660a4 libvcruntime:memcpy.obj + 0001:000650a4 CopyDownSmall 100660a4 libvcruntime:memmove.obj + 0001:000650ac CopyDownDwordLoop 100660ac libvcruntime:memcpy.obj + 0001:000650ac CopyDownDwordLoop 100660ac libvcruntime:memmove.obj + 0001:000650c1 CopyDownByteTest 100660c1 libvcruntime:memcpy.obj + 0001:000650c1 CopyDownByteTest 100660c1 libvcruntime:memmove.obj + 0001:000650c5 CopyDownByteLoop 100660c5 libvcruntime:memcpy.obj + 0001:000650c5 CopyDownByteLoop 100660c5 libvcruntime:memmove.obj + 0001:000650d4 CopyDownReturn 100660d4 libvcruntime:memcpy.obj + 0001:000650d4 CopyDownReturn 100660d4 libvcruntime:memmove.obj + 0001:000650e0 XmmCopy 100660e0 libvcruntime:memcpy.obj + 0001:000650e0 XmmCopy 100660e0 libvcruntime:memmove.obj + 0001:000650ed XmmCopyAligned 100660ed libvcruntime:memcpy.obj + 0001:000650ed XmmCopyAligned 100660ed libvcruntime:memmove.obj + 0001:00065100 XmmCopyLargeLoop 10066100 libvcruntime:memcpy.obj + 0001:00065100 XmmCopyLargeLoop 10066100 libvcruntime:memmove.obj + 0001:0006515d XmmCopySmallTest 1006615d libvcruntime:memcpy.obj + 0001:0006515d XmmCopySmallTest 1006615d libvcruntime:memmove.obj + 0001:00065170 XmmCopySmallLoop 10066170 libvcruntime:memcpy.obj + 0001:00065170 XmmCopySmallLoop 10066170 libvcruntime:memmove.obj + 0001:0006518b CopyUpDwordMov 1006618b libvcruntime:memcpy.obj + 0001:0006518b CopyUpDwordMov 1006618b libvcruntime:memmove.obj + 0001:00065190 CopyUpDwordTest 10066190 libvcruntime:memcpy.obj + 0001:00065190 CopyUpDwordTest 10066190 libvcruntime:memmove.obj + 0001:00065197 CopyUpDwordLoop 10066197 libvcruntime:memcpy.obj + 0001:00065197 CopyUpDwordLoop 10066197 libvcruntime:memmove.obj + 0001:000651a6 CopyUpByteTest 100661a6 libvcruntime:memcpy.obj + 0001:000651a6 CopyUpByteTest 100661a6 libvcruntime:memmove.obj + 0001:000651ad CopyUpByteLoop 100661ad libvcruntime:memcpy.obj + 0001:000651ad CopyUpByteLoop 100661ad libvcruntime:memmove.obj + 0001:000651c0 CopyUpReturn 100661c0 libvcruntime:memcpy.obj + 0001:000651c0 CopyUpReturn 100661c0 libvcruntime:memmove.obj + 0001:000651d0 XmmCopyUnaligned 100661d0 libvcruntime:memcpy.obj + 0001:000651d0 XmmCopyUnaligned 100661d0 libvcruntime:memmove.obj + 0001:000651e3 XmmAlignByte 100661e3 libvcruntime:memcpy.obj + 0001:000651e3 XmmAlignByte 100661e3 libvcruntime:memmove.obj + 0001:000651ec XmmAlignDwordTest 100661ec libvcruntime:memcpy.obj + 0001:000651ec XmmAlignDwordTest 100661ec libvcruntime:memmove.obj + 0001:000651f1 XmmAlignDwordLoop 100661f1 libvcruntime:memcpy.obj + 0001:000651f1 XmmAlignDwordLoop 100661f1 libvcruntime:memmove.obj + 0001:000651fe XmmAlignAdjustCnt 100661fe libvcruntime:memcpy.obj + 0001:000651fe XmmAlignAdjustCnt 100661fe libvcruntime:memmove.obj + 0001:00065273 ?FindMITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 10066273 f libvcruntime:rtti.obj + 0001:0006535c ?FindSITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@1@Z 1006635c f libvcruntime:rtti.obj + 0001:00065445 ?FindVITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 10066445 f libvcruntime:rtti.obj + 0001:000655ad ?PMDtoOffset@@YAHPAXABUPMD@@@Z 100665ad f libvcruntime:rtti.obj + 0001:000655d1 ?TypeidsEqual@@YA_NQBUTypeDescriptor@@0@Z 100665d1 f libvcruntime:rtti.obj + 0001:000657eb ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@I@Z 100667eb f libvcruntime:std_type_info.obj + 0001:000657f4 ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@QAX@Z 100667f4 f libvcruntime:std_type_info.obj + 0001:00065920 $$000000 10066920 libvcruntime:memset.obj + 0001:00065965 XMMMov 10066965 libvcruntime:memset.obj + 0001:000659a0 LargeRangeBytes 100669a0 libvcruntime:memset.obj + 0001:000659dd XmmMovSmall 100669dd libvcruntime:memset.obj + 0001:000659f0 XmmSmallLoop 100669f0 libvcruntime:memset.obj + 0001:000659f5 MidRangeBytes 100669f5 libvcruntime:memset.obj + 0001:00065a11 XMMTrailingBytes 10066a11 libvcruntime:memset.obj + 0001:00065a25 SmallMov 10066a25 libvcruntime:memset.obj + 0001:00065a2d ByteLoop 10066a2d libvcruntime:memset.obj + 0001:00065a3b DwordTest 10066a3b libvcruntime:memset.obj + 0001:00065a4b QwordTest 10066a4b libvcruntime:memset.obj + 0001:00065a60 QwordLoop 10066a60 libvcruntime:memset.obj + 0001:00065a73 toend 10066a73 libvcruntime:memset.obj + 0001:00065a80 $$000000 10066a80 libvcruntime:strstr.obj + 0001:00065ac3 strstr_sse_safeloop 10066ac3 libvcruntime:strstr.obj + 0001:00065aea strstr_sse_search 10066aea libvcruntime:strstr.obj + 0001:00065aea strstr_sse_unsafe 10066aea libvcruntime:strstr.obj + 0001:00065aee strstr_sse_srchloop 10066aee libvcruntime:strstr.obj + 0001:00065b24 strstr_sse_srchchar 10066b24 libvcruntime:strstr.obj + 0001:00065b3b strstr_sse_cmploop 10066b3b libvcruntime:strstr.obj + 0001:00065b76 strstr_sse_cmpchars 10066b76 libvcruntime:strstr.obj + 0001:00065b7d strstr_sse_cmpunsafe 10066b7d libvcruntime:strstr.obj + 0001:00065b94 strstr_sse_match 10066b94 libvcruntime:strstr.obj + 0001:00065b99 strstr_sse_not_found 10066b99 libvcruntime:strstr.obj + 0001:00065b9b strstr_sse_exit 10066b9b libvcruntime:strstr.obj + 0001:00065b9f strstr_sttni 10066b9f libvcruntime:strstr.obj + 0001:00065bbb strstr_sttni_setchars 10066bbb libvcruntime:strstr.obj + 0001:00065bc0 strstr_sttni_setloopchar 10066bc0 libvcruntime:strstr.obj + 0001:00065bc6 strstr_sttni_setloopnochar 10066bc6 libvcruntime:strstr.obj + 0001:00065bda strstr_sttni_srchnext 10066bda libvcruntime:strstr.obj + 0001:00065bdd strstr_sttni_srch 10066bdd libvcruntime:strstr.obj + 0001:00065be1 strstr_sttni_srchloop 10066be1 libvcruntime:strstr.obj + 0001:00065c00 strstr_sttni_srchxmm 10066c00 libvcruntime:strstr.obj + 0001:00065c13 strstr_sttni_srchcheck 10066c13 libvcruntime:strstr.obj + 0001:00065c17 strstr_sttni_cmploop 10066c17 libvcruntime:strstr.obj + 0001:00065c4f strstr_sttni_cmpchar 10066c4f libvcruntime:strstr.obj + 0001:00065c6a strstr_no_sse 10066c6a libvcruntime:strstr.obj + 0001:00065c7d findnext 10066c7d libvcruntime:strstr.obj + 0001:00065c90 loop_start 10066c90 libvcruntime:strstr.obj + 0001:00065c95 in_loop 10066c95 libvcruntime:strstr.obj + 0001:00065c9d not_found 10066c9d libvcruntime:strstr.obj + 0001:00065ca3 first_char_found 10066ca3 libvcruntime:strstr.obj + 0001:00065cac two_first_chars_equal 10066cac libvcruntime:strstr.obj + 0001:00065caf compare_loop 10066caf libvcruntime:strstr.obj + 0001:00065cd2 strchr_call 10066cd2 libvcruntime:strstr.obj + 0001:00065cde match 10066cde libvcruntime:strstr.obj + 0001:00065ce5 empty_str2 10066ce5 libvcruntime:strstr.obj + 0001:00065cf0 $$000000 10066cf0 libvcruntime:memchr.obj + 0001:00065d0b str_misaligned 10066d0b libvcruntime:memchr.obj + 0001:00065d21 main_loop_start 10066d21 libvcruntime:memchr.obj + 0001:00065d37 return_from_main 10066d37 libvcruntime:memchr.obj + 0001:00065d38 tail_less_then_4 10066d38 libvcruntime:memchr.obj + 0001:00065d3d tail_loop 10066d3d libvcruntime:memchr.obj + 0001:00065d4b retnull 10066d4b libvcruntime:memchr.obj + 0001:00065d4d main_loop 10066d4d libvcruntime:memchr.obj + 0001:00065d52 main_loop_entry 10066d52 libvcruntime:memchr.obj + 0001:00065d6d char_is_found 10066d6d libvcruntime:memchr.obj + 0001:00065d85 byte_3 10066d85 libvcruntime:memchr.obj + 0001:00065d86 found 10066d86 libvcruntime:memchr.obj + 0001:00065d8b byte_2 10066d8b libvcruntime:memchr.obj + 0001:00065d91 byte_1 10066d91 libvcruntime:memchr.obj + 0001:00065d97 byte_0 10066d97 libvcruntime:memchr.obj + 0001:00065da0 $$000000 10066da0 libvcruntime:strrchr.obj + 0001:00065ddd strrchr_sse_loop 10066ddd libvcruntime:strrchr.obj + 0001:00065e0d strrchr_sse_break 10066e0d libvcruntime:strrchr.obj + 0001:00065e2d strrchr_sttni 10066e2d libvcruntime:strrchr.obj + 0001:00065e3f strrchr_sttni_chars 10066e3f libvcruntime:strrchr.obj + 0001:00065e54 strrchr_sttni_aligned 10066e54 libvcruntime:strrchr.obj + 0001:00065e58 strrchr_sttni_xmm 10066e58 libvcruntime:strrchr.obj + 0001:00065e6b exit 10066e6b libvcruntime:strrchr.obj + 0001:00065e6e strrchr_zero 10066e6e libvcruntime:strrchr.obj + 0001:00065e93 strchr_zero_loop 10066e93 libvcruntime:strrchr.obj + 0001:00065ea7 strchr_zero_result 10066ea7 libvcruntime:strrchr.obj + 0001:00065eae strrchr_no_sse 10066eae libvcruntime:strrchr.obj + 0001:00065ed1 returndi 10066ed1 libvcruntime:strrchr.obj + 0001:00065ed3 toend 10066ed3 libvcruntime:strrchr.obj + 0001:00066050 _ValidateLocalCookies 10067050 f libvcruntime:chandler4.obj + 0001:000661ee ??$BuildCatchObjectHelperInternal@V__FrameHandler3@@@@YAHPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100671ee f libvcruntime:frame.obj + 0001:0006632c ??$BuildCatchObjectInternal@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 1006732c f libvcruntime:frame.obj + 0001:000663c5 ??$CatchIt@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@PBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_TryBlockMapEntry@@H1EE@Z 100673c5 f libvcruntime:frame.obj + 0001:00066445 ??$FindHandler@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@EH1@Z 10067445 f libvcruntime:frame.obj + 0001:000667ea ??$FindHandlerForForeignException@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@HH1@Z 100677ea f libvcruntime:frame.obj + 0001:00066ab9 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PBU_s_FuncInfo@@PAXHK@Z 10067ab9 f libvcruntime:frame.obj + 0001:00066c88 ?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 10067c88 f libvcruntime:frame.obj + 0001:00066ca8 __catch$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z$0 10067ca8 f libvcruntime:frame.obj + 0001:00066cc7 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 10067cc7 f libvcruntime:frame.obj + 0001:00066e11 ?IsInExceptionSpec@@YAEPAUEHExceptionRecord@@PBU_s_ESTypeList@@@Z 10067e11 f libvcruntime:frame.obj + 0001:00066ee0 $$000000 10067ee0 libvcruntime:lowhelpr.obj + 0001:00066f1f _NLG_Continue 10067f1f libvcruntime:lowhelpr.obj + 0001:00067120 ??$get_encoding@M@@YA?A_P_K@Z 10068120 f libvcruntime:undname.obj + 0001:00067180 ??$get_encoding@N@@YA?A_P_K@Z 10068180 f libvcruntime:undname.obj + 0001:000674b5 ??1TrackRecursion@?1??getDecoratedName@UnDecorator@@CA?AVDName@@XZ@QAE@XZ 100684b5 f libvcruntime:undname.obj + 0001:000690f1 $LN197 1006a0f1 libvcruntime:undname.obj + 0001:00069115 $LN196 1006a115 libvcruntime:undname.obj + 0001:00069129 $LN198 1006a129 libvcruntime:undname.obj + 0001:0006a02d $LN40 1006b02d libvcruntime:undname.obj + 0001:0006b1c4 $LN400 1006c1c4 libvcruntime:undname.obj + 0001:0006b1d0 $LN399 1006c1d0 libvcruntime:undname.obj + 0001:0006b1e8 $LN402 1006c1e8 libvcruntime:undname.obj + 0001:0006b204 $LN401 1006c204 libvcruntime:undname.obj + 0001:0006b21c $LN404 1006c21c libvcruntime:undname.obj + 0001:0006b22c $LN403 1006c22c libvcruntime:undname.obj + 0001:0006c798 $LN88 1006d798 libvcruntime:undname.obj + 0001:0006c7b8 $LN87 1006d7b8 libvcruntime:undname.obj + 0001:0006cc3f $LN145 1006dc3f libvcruntime:undname.obj + 0001:0006d5a6 ?und_memcpy@@YAXPADPBDI@Z 1006e5a6 f libvcruntime:undname.obj + 0001:0006d5c7 ?und_strncmp@@YAIPBD0I@Z 1006e5c7 f libvcruntime:undname.obj + 0001:0006d6c0 $$000000 1006e6c0 libvcruntime:strchr.obj + 0001:0006d6f3 strchr_sse_loop 1006e6f3 libvcruntime:strchr.obj + 0001:0006d717 strchr_sse_break 1006e717 libvcruntime:strchr.obj + 0001:0006d728 strchr_no_sse2 1006e728 libvcruntime:strchr.obj + 0001:0006d740 str_misaligned 1006e740 libvcruntime:strchr.obj + 0001:0006d755 main_loop_start 1006e755 libvcruntime:strchr.obj + 0001:0006d760 main_loop 1006e760 libvcruntime:strchr.obj + 0001:0006d79c retnull 1006e79c libvcruntime:strchr.obj + 0001:0006d79e retnull_bx 1006e79e libvcruntime:strchr.obj + 0001:0006d7a2 found_bx 1006e7a2 libvcruntime:strchr.obj + 0001:0006d7a7 chr_is_found 1006e7a7 libvcruntime:strchr.obj + 0001:0006d7cf byte_3 1006e7cf libvcruntime:strchr.obj + 0001:0006d7d6 byte_2 1006e7d6 libvcruntime:strchr.obj + 0001:0006d7dd byte_1 1006e7dd libvcruntime:strchr.obj + 0001:0006d7e4 byte_0 1006e7e4 libvcruntime:strchr.obj + 0001:0006d7eb ?try_get_function@@YAPAXW4function_id@?A0x14174aea@@QBDQBW4module_id@2@2@Z 1006e7eb f libvcruntime:winapi_downlevel.obj + 0001:0006d88b ?try_load_library_from_system_directory@@YAPAUHINSTANCE__@@QB_W@Z 1006e88b f libvcruntime:winapi_downlevel.obj + 0001:0006da10 $$000000 1006ea10 libvcruntime:exsup4.obj + 0001:0006da42 _lu_top 1006ea42 libvcruntime:exsup4.obj + 0001:0006daa1 _lu_done 1006eaa1 libvcruntime:exsup4.obj + 0001:0006dab0 $$000000 1006eab0 libvcruntime:exsup4.obj + 0001:0006dab0 __unwind_handler4 1006eab0 f libvcruntime:exsup4.obj + 0001:0006db00 $$000000 1006eb00 libvcruntime:exsup4.obj + 0001:0006db20 $$000000 1006eb20 libvcruntime:exsup4.obj + 0001:0006db40 $$000000 1006eb40 libvcruntime:exsup4.obj + 0001:0006db55 ReturnPoint 1006eb55 libvcruntime:exsup4.obj + 0001:0006db60 $$000000 1006eb60 libvcruntime:exsup4.obj + 0001:0006dbc0 $$000000 1006ebc0 libvcruntime:exsup.obj + 0001:0006dbd0 $$000000 1006ebd0 libvcruntime:exsup.obj + 0001:0006dbdb __NLG_Go 1006ebdb libvcruntime:exsup.obj + 0001:0006dbf0 $$000000 1006ebf0 libvcruntime:exsup.obj + 0001:0006e187 ?_fclose_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1006f187 f libucrt:fclose.obj + 0001:0006e21e ?_fclose_nolock_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1006f21e f libucrt:fclose.obj + 0001:0006e2dc ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1006f2dc f libucrt:fflush.obj + 0001:0006e368 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1006f368 f libucrt:fflush.obj + 0001:0006e414 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1006f414 f libucrt:fflush.obj + 0001:0006e474 ?common_flush_all@@YAH_N@Z 1006f474 f libucrt:fflush.obj + 0001:0006e4c1 ?common_flush_all_should_try_to_flush_stream@@YA_NV__crt_stdio_stream@@QAH@Z 1006f4c1 f libucrt:fflush.obj + 0001:0006e4f2 ?is_stream_flushable_or_commitable@@YA_NJ@Z 1006f4f2 f libucrt:fflush.obj + 0001:0006e7ef ?_fputc_internal@@YAHHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1006f7ef f libucrt:fputc.obj + 0001:0006ec17 _memcpy_s 1006fc17 f libucrt:cfout.obj + 0001:0006ec17 _memcpy_s 1006fc17 f libucrt:strtod.obj + 0001:0006ec17 _memcpy_s 1006fc17 f libucrt:mbctype.obj + 0001:0006ec17 _memcpy_s 1006fc17 f libucrt:fread.obj + 0001:0006ed4d ?common_fseek@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 1006fd4d f libucrt:fseek.obj + 0001:0006edf7 ?common_fseek_binary_mode_read_only_fast_track_nolock@@YA_NV__crt_stdio_stream@@_JH@Z 1006fdf7 f libucrt:fseek.obj + 0001:0006eed0 ?common_fseek_nolock@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 1006fed0 f libucrt:fseek.obj + 0001:0006f030 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@I@@QAEI$$QAV@@AAV@@$$QAV@@@Z 10070030 f libucrt:fwrite.obj + 0001:0006f08b ??R@@QBEIXZ 1007008b f libucrt:fwrite.obj + 0001:0006f32f ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1007032f f libucrt:setvbuf.obj + 0001:0006f38a ??R@@QBE@XZ 1007038a f libucrt:setvbuf.obj + 0001:0006f42a ?_setvbuf_internal@@YAHQAU_iobuf@@QADHIAAV__crt_cached_ptd_host@@@Z 1007042a f libucrt:setvbuf.obj + 0001:0006f4c0 ?set_buffer@@YAHV__crt_stdio_stream@@QADIH@Z 100704c0 f libucrt:setvbuf.obj + 0001:0006f965 ??$common_vsprintf@Vformat_validation_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 10070965 f libucrt:output.obj + 0001:0006fad9 ??$common_vsprintf@Vstandard_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 10070ad9 f libucrt:output.obj + 0001:0006fc4d ??$common_vsprintf_s@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 10070c4d f libucrt:output.obj + 0001:00070cfe $LN140 10071cfe libucrt:output.obj + 0001:00070fd2 $LN130 10071fd2 libucrt:output.obj + 0001:000714de $LN18 100724de libucrt:output.obj + 0001:000714f2 $LN17 100724f2 libucrt:output.obj + 0001:00072960 ??$common_strtod_l@MD@@YAMQBDQAPADQAU__crt_locale_pointers@@@Z 10073960 f libucrt:strtod.obj + 0001:0007323c $LN32 1007423c libucrt:strtod.obj + 0001:00075b80 $$000000 10076b80 libucrt:strcspn.obj + 0001:00075bd0 $$000000 10076bd0 libucrt:strncmp.obj + 0001:00075c48 ??$common_localtime_s@_J@@YAHQAUtm@@QB_J@Z 10076c48 f libucrt:localtime.obj + 0001:000764c0 $$000000 100774c0 libucrt:sqrt_sse2_precise.obj + 0001:000765c0 $$000000 100775c0 libucrt:ceil_pentium4.obj + 0001:000769d0 $$000000 100779d0 libucrt:strpbrk.obj + 0001:00076aeb ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10077aeb f libucrt:per_thread_data.obj + 0001:00076b3d ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10077b3d f libucrt:per_thread_data.obj + 0001:00076ba8 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10077ba8 f libucrt:per_thread_data.obj + 0001:00076bfd ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10077bfd f libucrt:per_thread_data.obj + 0001:00076c57 ?construct_ptd@@YAXQAU__acrt_ptd@@QAPAU__crt_locale_data@@@Z 10077c57 f libucrt:per_thread_data.obj + 0001:00076cf0 ?destroy_fls@@YGXPAX@Z 10077cf0 f libucrt:per_thread_data.obj + 0001:00076d11 ?destroy_ptd@@YAXQAU__acrt_ptd@@@Z 10077d11 f libucrt:per_thread_data.obj + 0001:00076dde ?replace_current_thread_locale_nolock@@YAXQAU__acrt_ptd@@QAU__crt_locale_data@@@Z 10077dde f libucrt:per_thread_data.obj + 0001:00077140 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10078140 f libucrt:wsetlocale.obj + 0001:0007718d ??$?RV@@AAV@@AAV@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@AAV@@@Z 1007818d f libucrt:wsetlocale.obj + 0001:000771d2 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100781d2 f libucrt:wsetlocale.obj + 0001:000772ba ??R@@QBE@XZ 100782ba f libucrt:wsetlocale.obj + 0001:00077324 ??R@@QBE@XZ 10078324 f libucrt:wsetlocale.obj + 0001:000776da __copytlocinfo_nolock 100786da f libucrt:wsetlocale.obj + 0001:00077709 __expandlocale 10078709 f libucrt:wsetlocale.obj + 0001:00077b93 __wsetlocale_get_all 10078b93 f libucrt:wsetlocale.obj + 0001:00077d2e __wsetlocale_nolock 10078d2e f libucrt:wsetlocale.obj + 0001:0007801e __wsetlocale_set_cat 1007901e f libucrt:wsetlocale.obj + 0001:000783de _get_default_code_page 100793de f libucrt:wsetlocale.obj + 0001:0007840d _parse_bcp47 1007940d f libucrt:wsetlocale.obj + 0001:000785e7 _parse_bcp47_code_page 100795e7 f libucrt:wsetlocale.obj + 0001:00078626 _parse_bcp47_language 10079626 f libucrt:wsetlocale.obj + 0001:00078698 _parse_bcp47_region 10079698 f libucrt:wsetlocale.obj + 0001:00078756 _parse_bcp47_script 10079756 f libucrt:wsetlocale.obj + 0001:000787c6 _string_is_alpha 100797c6 f libucrt:wsetlocale.obj + 0001:0007889c ?@@@CG@PA_W@Z 1007989c f libucrt:winapi_thunks.obj + 0001:000788a9 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100798a9 f libucrt:winapi_thunks.obj + 0001:00078944 ??R@@QBE@PA_W@Z 10079944 f libucrt:winapi_thunks.obj + 0001:00078977 ?try_get_AreFileApisANSI@@YAP6GHXZXZ 10079977 f libucrt:winapi_thunks.obj + 0001:00078991 ?try_get_CompareStringEx@@YAP6GHPB_WK0H0HPAU_nlsversioninfo@@PAXJ@ZXZ 10079991 f libucrt:winapi_thunks.obj + 0001:000789ab ?try_get_EnumSystemLocalesEx@@YAP6GHP6GHPA_WKJ@ZKJPAX@ZXZ 100799ab f libucrt:winapi_thunks.obj + 0001:000789c5 ?try_get_GetDateFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH0@ZXZ 100799c5 f libucrt:winapi_thunks.obj + 0001:000789df ?try_get_GetLocaleInfoEx@@YAP6GHPB_WKPA_WH@ZXZ 100799df f libucrt:winapi_thunks.obj + 0001:000789f9 ?try_get_GetTimeFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH@ZXZ 100799f9 f libucrt:winapi_thunks.obj + 0001:00078a13 ?try_get_GetUserDefaultLocaleName@@YAP6GHPA_WH@ZXZ 10079a13 f libucrt:winapi_thunks.obj + 0001:00078a2d ?try_get_IsValidLocaleName@@YAP6GHPB_W@ZXZ 10079a2d f libucrt:winapi_thunks.obj + 0001:00078a47 ?try_get_LCIDToLocaleName@@YAP6GHKPA_WHK@ZXZ 10079a47 f libucrt:winapi_thunks.obj + 0001:00078a61 ?try_get_LCMapStringEx@@YAP6GHPB_WK0HPA_WHPAU_nlsversioninfo@@PAXJ@ZXZ 10079a61 f libucrt:winapi_thunks.obj + 0001:00078a7b ?try_get_LocaleNameToLCID@@YAP6GKPB_WK@ZXZ 10079a7b f libucrt:winapi_thunks.obj + 0001:00078a95 ?try_get_first_available_module@@YAPAUHINSTANCE__@@QBW4module_id@?A0x391cf84c@@0@Z 10079a95 f libucrt:winapi_thunks.obj + 0001:00078b60 ?try_get_function@@YAPAXW4function_id@?A0x391cf84c@@QBDQBW4module_id@2@2@Z 10079b60 f libucrt:winapi_thunks.obj + 0001:000791d5 ?initialize_inherited_file_handles_nolock@@YAXXZ 1007a1d5 f libucrt:ioinit.obj + 0001:0007928b ?initialize_stdio_handles_nolock@@YAXXZ 1007a28b f libucrt:ioinit.obj + 0001:000793ee ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1007a3ee f libucrt:close.obj + 0001:00079696 ?find_or_allocate_unused_stream_nolock@@YA?AV__crt_stdio_stream@@XZ 1007a696 f libucrt:stream.obj + 0001:0007980f ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1007a80f f libucrt:commit.obj + 0001:0007992e ?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 1007a92e f libucrt:write.obj + 0001:00079cf5 ?write_double_translated_unicode_nolock@@YA?AUwrite_result@?A0x17268360@@QBDI@Z 1007acf5 f libucrt:write.obj + 0001:00079d5d ?write_requires_double_translation_nolock@@YA_NHAAV__crt_cached_ptd_host@@@Z 1007ad5d f libucrt:write.obj + 0001:00079dda ?write_text_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1007adda f libucrt:write.obj + 0001:00079eb5 ?write_text_utf16le_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1007aeb5 f libucrt:write.obj + 0001:00079f9e ?write_text_utf8_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1007af9e f libucrt:write.obj + 0001:0007a434 ??$common_refill_and_read_nolock@D@@YAHV__crt_stdio_stream@@@Z 1007b434 f libucrt:_filbuf.obj + 0001:0007a5ce ??$common_ftell@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1007b5ce f libucrt:ftell.obj + 0001:0007a65d ??$common_ftell_nolock@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1007b65d f libucrt:ftell.obj + 0001:0007a7fe ?common_ftell_read_mode_nolock@@YA_JV__crt_stdio_stream@@_J1AAV__crt_cached_ptd_host@@@Z 1007b7fe f libucrt:ftell.obj + 0001:0007a9c9 ?common_ftell_translated_utf8_nolock@@YA_JV__crt_stdio_stream@@_JAAV__crt_cached_ptd_host@@@Z 1007b9c9 f libucrt:ftell.obj + 0001:0007ab74 ?count_newline_bytes@@YA_JQBD0W4__crt_lowio_text_mode@@@Z 1007bb74 f libucrt:ftell.obj + 0001:0007ac06 ??$common_flush_and_write_nolock@D@@YAHHV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1007bc06 f libucrt:_flsbuf.obj + 0001:0007acfc ??$write_buffer_nolock@D@@YA_NDV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1007bcfc f libucrt:_flsbuf.obj + 0001:0007adce ?stream_is_at_end_of_file_nolock@@YA_NV__crt_stdio_stream@@@Z 1007bdce f libucrt:_flsbuf.obj + 0001:0007ae5e ??$translate_text_mode_nolock@D@@YAHHQADI@Z 1007be5e f libucrt:read.obj + 0001:0007afab ??$translate_text_mode_nolock@_W@@YAHHQA_WI@Z 1007bfab f libucrt:read.obj + 0001:0007b165 ?translate_ansi_or_utf8_nolock@@YAHHQADIQA_WI@Z 1007c165 f libucrt:read.obj + 0001:0007b2bc ?translate_utf16_from_console_nolock@@YAHHQA_WI@Z 1007c2bc f libucrt:read.obj + 0001:0007b7de ??$common_lseek@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 1007c7de f libucrt:lseek.obj + 0001:0007b903 ??$common_lseek_nolock@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 1007c903 f libucrt:lseek.obj + 0001:0007bc13 ?filter_mbtowcs_flags@@YAKIK@Z 1007cc13 f libucrt:multibytetowidechar.obj + 0001:0007c0f2 ?fe_to_nearest@@YA_NQBN_KF@Z 1007d0f2 f libucrt:cvt.obj + 0001:0007c195 ?fp_format_a@@YAHQBNPADIQADIH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007d195 f libucrt:cvt.obj + 0001:0007c4c2 ?fp_format_e@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007d4c2 f libucrt:cvt.obj + 0001:0007c566 ?fp_format_e_internal@@YAHQADIH_NIQAU_strflt@@1AAV__crt_cached_ptd_host@@@Z 1007d566 f libucrt:cvt.obj + 0001:0007c6b9 ?fp_format_f@@YAHQBNQADI1IHW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007d6b9 f libucrt:cvt.obj + 0001:0007c74f ?fp_format_f_internal@@YAHQADIHQAU_strflt@@_NAAV__crt_cached_ptd_host@@@Z 1007d74f f libucrt:cvt.obj + 0001:0007c83d ?fp_format_g@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1007d83d f libucrt:cvt.obj + 0001:0007c90c ?fp_format_nan_or_infinity@@YAHW4__acrt_fp_class@@_NPADI1@Z 1007d90c f libucrt:cvt.obj + 0001:0007c9a1 ?shift_bytes@@YAXQADI0H@Z 1007d9a1 f libucrt:cvt.obj + 0001:0007c9d5 ?should_round_up@@YA_NQBN_KFW4__acrt_rounding_mode@@@Z 1007d9d5 f libucrt:cvt.obj + 0001:0007d888 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1007e888 f libucrt:exit.obj + 0001:0007d8f0 ??R@@QBE@XZ 1007e8f0 f libucrt:exit.obj + 0001:0007d9d8 ?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 1007e9d8 f libucrt:exit.obj + 0001:0007da6f ?exit_or_terminate_process@@YAXI@Z 1007ea6f f libucrt:exit.obj + 0001:0007daa0 ?is_managed_app@@YA_NXZ 1007eaa0 f libucrt:exit.obj + 0001:0007dae2 ?should_call_terminate_process@@YA_NXZ 1007eae2 f libucrt:exit.obj + 0001:0007dafb ?try_cor_exit_process@@YAXI@Z 1007eafb f libucrt:exit.obj + 0001:0007dbb8 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@P6AXH@Z@@QAEP6AXH@Z$$QAV@@AAV@@$$QAV@@@Z 1007ebb8 f libucrt:signal.obj + 0001:0007dc20 ?get_global_action_nolock@@YAPAP6AXH@ZH@Z 1007ec20 f libucrt:signal.obj + 0001:0007dc62 ?siglookup@@YAPAU__crt_signal_action_t@@HQAU1@@Z 1007ec62 f libucrt:signal.obj + 0001:0007e17a ??$common_gmtime_s@_J@@YAHQAUtm@@QB_J@Z 1007f17a f libucrt:gmtime.obj + 0001:0007e2c4 ?compute_year@@YAHAA_JAA_N@Z 1007f2c4 f libucrt:gmtime.obj + 0001:0007e388 ?_isindst_nolock@@YAHQAUtm@@@Z 1007f388 f libucrt:tzset.obj + 0001:0007e5a2 ?cvtdate@@YAXW4transition_type@?A0x7639d0b4@@W4date_type@2@HHHHHHHHH@Z 1007f5a2 f libucrt:tzset.obj + 0001:0007e6e5 ?get_tz_environment_variable@@YAPA_WAAY0BAA@_W@Z 1007f6e5 f libucrt:tzset.obj + 0001:0007e75c ?tzset_env_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1007f75c f libucrt:tzset.obj + 0001:0007e7a3 ?tzset_from_environment_nolock@@YAXPA_W@Z 1007f7a3 f libucrt:tzset.obj + 0001:0007ea35 ?tzset_from_system_nolock@@YAXXZ 1007fa35 f libucrt:tzset.obj + 0001:0007eb8f ?tzset_nolock@@YAXXZ 1007fb8f f libucrt:tzset.obj + 0001:0007ec05 ?tzset_os_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1007fc05 f libucrt:tzset.obj + 0001:0007ecf8 ?filter_wcstomb_flags@@YAKIK@Z 1007fcf8 f libucrt:widechartomultibyte.obj + 0001:0007edfd ?compute_iso_week@@YAHHHH@Z 1007fdfd f libucrt:wcsftime.obj + 0001:0007ee46 ?compute_iso_week_internal@@YAHHHH@Z 1007fe46 f libucrt:wcsftime.obj + 0001:0007eedb ?compute_iso_year@@YAHHHH@Z 1007fedb f libucrt:wcsftime.obj + 0001:0007ef06 ?expand_time@@YA_NPAU__crt_locale_pointers@@_WPBUtm@@PAPA_WPAIPBU__crt_lc_time_data@@_N@Z 1007ff06 f libucrt:wcsftime.obj + 0001:0007f8ba $LN191 100808ba libucrt:wcsftime.obj + 0001:0007f8da ?store_number@@YAXHHQAPA_WQAI_W@Z 100808da f libucrt:wcsftime.obj + 0001:0007f96e ?store_number_without_lead_zeroes@@YAXHQAPA_WQAI@Z 1008096e f libucrt:wcsftime.obj + 0001:0007f9e8 ?store_string@@YAXPB_WQAPA_WQAI@Z 100809e8 f libucrt:wcsftime.obj + 0001:0007fa1b ?store_winword@@YA_NQAU__crt_locale_pointers@@HQBUtm@@QAPA_WQAIQBU__crt_lc_time_data@@@Z 10080a1b f libucrt:wcsftime.obj + 0001:00080743 ?__acrt_LCMapStringA_stat@@YAHPAU__crt_locale_pointers@@PB_WKPBDHPADHHH@Z 10081743 f libucrt:lcmapstringa.obj + 0001:00080b70 $$000000 10081b70 libucrt:sqrt.obj + 0001:00080c50 $$000000 10081c50 libucrt:_strnicm.obj + 0001:0008104b ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1008204b f libucrt:mbctype.obj + 0001:00081098 ??R@@QBE@XZ 10082098 f libucrt:mbctype.obj + 0001:0008111b ?CPtoLocaleName@@YAPB_WH@Z 1008211b f libucrt:mbctype.obj + 0001:00081159 ?getSystemCP@@YAHH@Z 10082159 f libucrt:mbctype.obj + 0001:000811ca ?setSBCS@@YAXPAU__crt_multibyte_data@@@Z 100821ca f libucrt:mbctype.obj + 0001:0008122d ?setSBUpLow@@YAXPAU__crt_multibyte_data@@@Z 1008222d f libucrt:mbctype.obj + 0001:000813d2 ?setmbcp_internal@@YAHH_NQAU__acrt_ptd@@QAPAU__crt_multibyte_data@@@Z 100823d2 f libucrt:mbctype.obj + 0001:00081527 ?update_thread_multibyte_data_internal@@YAPAU__crt_multibyte_data@@QAU__acrt_ptd@@QAPAU1@@Z 10082527 f libucrt:mbctype.obj + 0001:00082540 ?free_crt_array_internal@@YAXQAPBXI@Z 10083540 f libucrt:inittime.obj + 0001:00082565 ?initialize_lc_time@@YA_NQAU__crt_lc_time_data@@QAU__crt_locale_data@@@Z 10083565 f libucrt:inittime.obj + 0001:00082a13 ??$common_tcsncat_s@_W@@YAHQA_WIQB_WI@Z 10083a13 f libucrt:wcsncat_s.obj + 0001:00082b06 ??$common_tcsncpy_s@_W@@YAHQA_WIQB_WI@Z 10083b06 f libucrt:wcsncpy_s.obj + 0001:00082d87 _GetLocaleNameFromDefault 10083d87 f libucrt:get_qualified_locale.obj + 0001:00082e0e _GetLocaleNameFromLangCountry 10083e0e f libucrt:get_qualified_locale.obj + 0001:00082ea7 _GetLocaleNameFromLanguage 10083ea7 f libucrt:get_qualified_locale.obj + 0001:00082f00 _GetPrimaryLen 10083f00 f libucrt:get_qualified_locale.obj + 0001:00082f34 _LangCountryEnumProcEx@12 10083f34 f libucrt:get_qualified_locale.obj + 0001:00083215 _LanguageEnumProcEx@12 10084215 f libucrt:get_qualified_locale.obj + 0001:000832d4 _ProcessCodePage 100842d4 f libucrt:get_qualified_locale.obj + 0001:000833c4 _TestDefaultCountry 100843c4 f libucrt:get_qualified_locale.obj + 0001:00083411 _TranslateName 10084411 f libucrt:get_qualified_locale.obj + 0001:00083683 _CountryEnumProc@4 10084683 f libucrt:getqloc_downlevel.obj + 0001:0008372a _GetLcidFromCountry 1008472a f libucrt:getqloc_downlevel.obj + 0001:00083775 _GetLcidFromLangCountry 10084775 f libucrt:getqloc_downlevel.obj + 0001:00083810 _GetLcidFromLanguage 10084810 f libucrt:getqloc_downlevel.obj + 0001:0008386f _GetPrimaryLen 1008486f f libucrt:getqloc_downlevel.obj + 0001:0008389b _LangCountryEnumProc@4 1008489b f libucrt:getqloc_downlevel.obj + 0001:00083aee _LanguageEnumProc@4 10084aee f libucrt:getqloc_downlevel.obj + 0001:00083bc3 _LcidFromHexString 10084bc3 f libucrt:getqloc_downlevel.obj + 0001:00083c17 _ProcessCodePage 10084c17 f libucrt:getqloc_downlevel.obj + 0001:00083cf8 _TestDefaultCountry 10084cf8 f libucrt:getqloc_downlevel.obj + 0001:00083d1d _TestDefaultLanguage 10084d1d f libucrt:getqloc_downlevel.obj + 0001:00083d92 _TranslateName 10084d92 f libucrt:getqloc_downlevel.obj + 0001:00084097 ?GetTableIndexFromLocaleName@@YAHPB_W@Z 10085097 f libucrt:lcidtoname_downlevel.obj + 0001:00084667 ??R@@QBEIPBD@Z 10085667 f libucrt:mbrtowc.obj + 0001:00084810 ?check_trailing@@YA_NPBDW4__acrt_has_trailing_digits@@@Z 10085810 f libucrt:_fptostr.obj + 0001:00084833 ?should_round_up@@YA_NQBD0HW4__acrt_has_trailing_digits@@W4__acrt_rounding_mode@@@Z 10085833 f libucrt:_fptostr.obj + 0001:0008610e ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1008710e f libucrt:onexit.obj + 0001:00086169 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 10087169 f libucrt:onexit.obj + 0001:000861c4 ??R@@QBE@XZ 100871c4 f libucrt:onexit.obj + 0001:000862c6 ??R@@QBE@XZ 100872c6 f libucrt:onexit.obj + 0001:0008648e ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_sse_control@@@Z 1008748e f libucrt:_fenvutils.obj + 0001:0008653e ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_x87_control@@@Z 1008753e f libucrt:_fenvutils.obj + 0001:000865eb ?to_machine_sse_control@@YA?AW4__acrt_fenv_machine_sse_control@@W4__acrt_fenv_abstract_control@@@Z 100875eb f libucrt:_fenvutils.obj + 0001:000866a1 ?to_machine_x87_control@@YA?AW4__acrt_fenv_machine_x87_control@@W4__acrt_fenv_abstract_control@@@Z 100876a1 f libucrt:_fenvutils.obj + 0001:00086a1a ??$common_getenv_nolock@_W@@YAPA_WQB_W@Z 10087a1a f libucrt:getenv.obj + 0001:00086a9e ??$common_getenv_s@_W@@YAHQAIQA_WIQB_W@Z 10087a9e f libucrt:getenv.obj + 0001:00086afd ??$common_getenv_s_nolock@_W@@YAHQAIQA_WIQB_W@Z 10087afd f libucrt:getenv.obj + 0001:00086d50 $$000000 10087d50 libucrt:common.obj + 0001:00086ee0 $$000000 10087ee0 libucrt:sqrt_impl.obj + 0001:00086fa5 ?initialize_multibyte@@YAHXZ 10087fa5 f libucrt:multibyte_initializer.obj + 0001:00086fb4 ?InternalGetLocaleInfoA@@YAHQAU__crt_locale_pointers@@QB_WKQADH@Z 10087fb4 f libucrt:getlocaleinfoa.obj + 0001:00087243 ??$common_xtox@K_W@@YAHKQA_WII_N@Z 10088243 f libucrt:xtoa.obj + 0001:000872ff ??$common_xtox_s@K_W@@YAHKQA_WII_N@Z 100882ff f libucrt:xtoa.obj + 0001:000876c9 ?__dcrt_lowio_initialize_console_output@@YAXXZ 100886c9 f libucrt:initcon.obj + 0001:00087890 $$000000 10088890 libucrt:log10_impl.obj + 0001:00087b70 ??$common_get_or_create_environment_nolock@_W@@YAPAPA_WXZ 10088b70 f libucrt:environment_initialization.obj + 0001:00087b9c ??$common_initialize_environment_nolock@D@@YAHXZ 10088b9c f libucrt:environment_initialization.obj + 0001:00087bf6 ??$common_initialize_environment_nolock@_W@@YAHXZ 10088bf6 f libucrt:environment_initialization.obj + 0001:00087c4b ??$create_environment@D@@YAQAPADQAD@Z 10088c4b f libucrt:environment_initialization.obj + 0001:00087d2d ??$create_environment@_W@@YAQAPA_WQA_W@Z 10088d2d f libucrt:environment_initialization.obj + 0001:00087e4b ??$free_environment@D@@YAXQAPAD@Z 10088e4b f libucrt:environment_initialization.obj + 0001:00087e4b ??$free_environment@_W@@YAXQAPA_W@Z 10088e4b f libucrt:environment_initialization.obj + 0001:00087e7a ??$initialize_environment_by_cloning_nolock@_W@@YAHXZ 10088e7a f libucrt:environment_initialization.obj + 0001:00087efb ??$uninitialize_environment_internal@D@@YAXAAPAPAD@Z 10088efb f libucrt:environment_initialization.obj + 0001:00087f16 ??$uninitialize_environment_internal@_W@@YAXAAPAPA_W@Z 10088f16 f libucrt:environment_initialization.obj + 0001:00088060 $$000000 10089060 libucrt:genexcep.obj + 0001:000880c0 $$000000 100890c0 libucrt:87disp.obj + 0001:00088314 ??$common_tcsncpy_s@D@@YAHQADIQBDI@Z 10089314 f libucrt:strncpy_s.obj + 0001:000883d6 ___hw_cw_sse2 100893d6 f libucrt:ieee87.obj + 0001:0008885c __hw_cw 1008985c f libucrt:ieee87.obj + 0001:00088900 $$000000 10089900 libucrt:log10_pentium4.obj + 0001:00088b90 $$000000 10089b90 libucrt:87tran.obj + 0001:00088e97 ?find_end_of_double_null_terminated_sequence@@YAPB_WQB_W@Z 10089e97 f libucrt:get_environment_from_os.obj + 0001:00088fbc ??$common_set_variable_in_environment_nolock@_W@@YAHQA_WH@Z 10089fbc f libucrt:setenv.obj + 0001:00089247 ??$copy_environment@_W@@YAPAPA_WQAPA_W@Z 1008a247 f libucrt:setenv.obj + 0001:00089305 ??$ensure_current_environment_is_not_initial_environment_nolock@_W@@YAXXZ 1008a305 f libucrt:setenv.obj + 0001:0008931f ??$find_in_environment_nolock@_W@@YAHQB_WI@Z 1008a31f f libucrt:setenv.obj + 0001:00089663 ?_mbstowcs_internal@@YAHPAIPA_WIPBDIAAV__crt_cached_ptd_host@@@Z 1008a663 f libucrt:mbstowcs.obj + 0001:0008973f ?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 1008a73f f libucrt:mbstowcs.obj + 0001:00089feb _tidy_global 1008afeb f libcpmt:locale0.obj + 0001:0008a4ca ??$_Xfiopen@D@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z 1008b4ca f libcpmt:fiopen.obj + 0001:0008a56a ?swfun@std@@YAXAAVios_base@1@_J@Z 1008b56a f libcpmt:iomanip.obj + 0001:0008a820 ?initialize_pointers@@YAHXZ 1008b820 f libcpmt:winapisupp.obj + 0001:0008a8fd ?find_pe_section@@YAPAU_IMAGE_SECTION_HEADER@@QAEI@Z 1008b8fd f LIBCMT:utility.obj + 0001:0008ac60 $$000000 1008bc60 LIBCMT:llshl.obj + 0001:0008ac70 MORE32 1008bc70 LIBCMT:llshl.obj + 0001:0008ac7a RETZERO 1008bc7a LIBCMT:llshl.obj + 0001:0008ac80 $$000000 1008bc80 LIBCMT:ullshr.obj + 0001:0008ac90 MORE32 1008bc90 LIBCMT:ullshr.obj + 0001:0008ac9a RETZERO 1008bc9a LIBCMT:ullshr.obj + 0001:0008ad80 $$000000 1008bd80 LIBCMT:lldiv.obj + 0001:0008ada1 L1 1008bda1 LIBCMT:lldiv.obj + 0001:0008adbd L2 1008bdbd LIBCMT:lldiv.obj + 0001:0008add9 L3 1008bdd9 LIBCMT:lldiv.obj + 0001:0008ade7 L5 1008bde7 LIBCMT:lldiv.obj + 0001:0008ae15 L6 1008be15 LIBCMT:lldiv.obj + 0001:0008ae16 L7 1008be16 LIBCMT:lldiv.obj + 0001:0008ae1a L4 1008be1a LIBCMT:lldiv.obj + 0001:0008ae24 L8 1008be24 LIBCMT:lldiv.obj + 0001:0008ae30 $$000000 1008be30 LIBCMT:lldvrm.obj + 0001:0008ae54 L1 1008be54 LIBCMT:lldvrm.obj + 0001:0008ae70 L2 1008be70 LIBCMT:lldvrm.obj + 0001:0008ae9c L3 1008be9c LIBCMT:lldvrm.obj + 0001:0008aeaa L5 1008beaa LIBCMT:lldvrm.obj + 0001:0008aed8 L6 1008bed8 LIBCMT:lldvrm.obj + 0001:0008aee1 L7 1008bee1 LIBCMT:lldvrm.obj + 0001:0008aee3 L4 1008bee3 LIBCMT:lldvrm.obj + 0001:0008aef5 L9 1008bef5 LIBCMT:lldvrm.obj + 0001:0008af09 L8 1008bf09 LIBCMT:lldvrm.obj + 0001:0008af10 $$000000 1008bf10 LIBCMT:llmul.obj + 0001:0008af29 hard 1008bf29 LIBCMT:llmul.obj + 0001:0008af50 $$000000 1008bf50 LIBCMT:llrem.obj + 0001:0008af70 L1 1008bf70 LIBCMT:llrem.obj + 0001:0008af8b L2 1008bf8b LIBCMT:llrem.obj + 0001:0008afaa L3 1008bfaa LIBCMT:llrem.obj + 0001:0008afb8 L5 1008bfb8 LIBCMT:llrem.obj + 0001:0008afe3 L6 1008bfe3 LIBCMT:llrem.obj + 0001:0008afeb L7 1008bfeb LIBCMT:llrem.obj + 0001:0008aff6 L4 1008bff6 LIBCMT:llrem.obj + 0001:0008affd L8 1008bffd LIBCMT:llrem.obj + 0001:0008b020 $$000000 1008c020 LIBCMT:ftol3.obj + 0001:0008b03f _ftol3_default 1008c03f LIBCMT:ftol3.obj + 0001:0008b053 _ftol3_notsafe 1008c053 LIBCMT:ftol3.obj + 0001:0008b073 _ftol3_mincheck 1008c073 LIBCMT:ftol3.obj + 0001:0008b079 _ftol3_NaN 1008c079 LIBCMT:ftol3.obj + 0001:0008b081 _ftol3_retmin 1008c081 LIBCMT:ftol3.obj + 0001:0008b090 $$000000 1008c090 LIBCMT:ftol3.obj + 0001:0008b0ae _dtoul3_default 1008c0ae LIBCMT:ftol3.obj + 0001:0008b0d9 _dtoul3_notsafe 1008c0d9 LIBCMT:ftol3.obj + 0001:0008b102 _dtoul3_exact 1008c102 LIBCMT:ftol3.obj + 0001:0008b109 _dtoul3_large 1008c109 LIBCMT:ftol3.obj + 0001:0008b114 _dtoul3_neg 1008c114 LIBCMT:ftol3.obj + 0001:0008b125 _dtoul3_NaN 1008c125 LIBCMT:ftol3.obj + 0001:0008b140 $$000000 1008c140 LIBCMT:ftol3.obj + 0001:0008b15e _dtoul3l_notsafe 1008c15e LIBCMT:ftol3.obj + 0001:0008b170 $$000000 1008c170 LIBCMT:ftol3.obj + 0001:0008b18e _dtol3_default 1008c18e LIBCMT:ftol3.obj + 0001:0008b1b8 _dtol3_getbits 1008c1b8 LIBCMT:ftol3.obj + 0001:0008b1e1 _dtol3_trunc 1008c1e1 LIBCMT:ftol3.obj + 0001:0008b1e8 _dtol3_lshift 1008c1e8 LIBCMT:ftol3.obj + 0001:0008b1ee _dtol3_notsafe 1008c1ee LIBCMT:ftol3.obj + 0001:0008b207 _dtol3_large 1008c207 LIBCMT:ftol3.obj + 0001:0008b20f _dtol3_NaN 1008c20f LIBCMT:ftol3.obj + 0001:0008b217 _dtol3_retmin 1008c217 LIBCMT:ftol3.obj + 0001:0008b220 $$000000 1008c220 LIBCMT:ftol3.obj + 0001:0008b23a _ultod3_default 1008c23a LIBCMT:ftol3.obj + 0001:0008b268 _ultod3_uint32 1008c268 LIBCMT:ftol3.obj + 0001:0008b270 $$000000 1008c270 LIBCMT:ftol3.obj + 0001:0008b28a _ltod3_default 1008c28a LIBCMT:ftol3.obj + 0001:0008b2b1 _ltod3_lt33 1008c2b1 LIBCMT:ftol3.obj + 0001:0008b2b2 ?dllmain_crt_dispatch@@YGHQAUHINSTANCE__@@KQAX@Z 1008c2b2 f LIBCMT:dll_dllmain.obj + 0001:0008b305 ?dllmain_crt_process_attach@@YAHQAUHINSTANCE__@@QAX@Z 1008c305 f LIBCMT:dll_dllmain.obj + 0001:0008b40c ?dllmain_crt_process_detach@@YAH_N@Z 1008c40c f LIBCMT:dll_dllmain.obj + 0001:0008b4bc ?dllmain_dispatch@@YAHQAUHINSTANCE__@@KQAX@Z 1008c4bc f LIBCMT:dll_dllmain.obj + 0001:0008b5c7 ?dllmain_raw@@YGHQAUHINSTANCE__@@KQAX@Z 1008c5c7 f LIBCMT:dll_dllmain.obj + 0001:0008b620 $$000000 1008c620 LIBCMT:sehprolg4.obj + 0001:0008bb60 $$000000 1008cb60 LIBCMT:ulldvrm.obj + 0001:0008bb91 L1 1008cb91 LIBCMT:ulldvrm.obj + 0001:0008bb9f L3 1008cb9f LIBCMT:ulldvrm.obj + 0001:0008bbcd L4 1008cbcd LIBCMT:ulldvrm.obj + 0001:0008bbd6 L5 1008cbd6 LIBCMT:ulldvrm.obj + 0001:0008bbd8 L2 1008cbd8 LIBCMT:ulldvrm.obj + 0001:0008bd20 $$000000 1008cd20 LIBCMT:ulldiv.obj + 0001:0008bd42 L1 1008cd42 LIBCMT:ulldiv.obj + 0001:0008bd50 L3 1008cd50 LIBCMT:ulldiv.obj + 0001:0008bd7e L4 1008cd7e LIBCMT:ulldiv.obj + 0001:0008bd7f L5 1008cd7f LIBCMT:ulldiv.obj + 0001:0008bd83 L2 1008cd83 LIBCMT:ulldiv.obj + 0001:0008bd90 $$000000 1008cd90 LIBCMT:ullrem.obj + 0001:0008bdb1 L1 1008cdb1 LIBCMT:ullrem.obj + 0001:0008bdbf L3 1008cdbf LIBCMT:ullrem.obj + 0001:0008bdea L4 1008cdea LIBCMT:ullrem.obj + 0001:0008bdf2 L5 1008cdf2 LIBCMT:ullrem.obj + 0001:0008be01 L2 1008ce01 LIBCMT:ullrem.obj + 0001:0008c010 $$000000 1008d010 LIBCMT:chkstk.obj + 0001:0008c024 cs10 1008d024 LIBCMT:chkstk.obj + 0001:0008c032 cs20 1008d032 LIBCMT:chkstk.obj + 0001:0008c040 $$000000 1008d040 LIBCMT:alloca16.obj + 0001:0008c056 alloca_8 1008d056 LIBCMT:alloca16.obj + 0001:0008c070 $$000000 1008d070 LIBCMT:ftol2.obj + 0001:0008c080 $$000000 1008d080 LIBCMT:ftol2.obj + 0001:0008c091 L3B 1008d091 LIBCMT:ftol2.obj + 0001:0008c0d4 L3F 1008d0d4 LIBCMT:ftol2.obj + 0001:0008c0dc L40 1008d0dc LIBCMT:ftol2.obj + 0001:0008c0ef L41 1008d0ef LIBCMT:ftol2.obj + 0001:0008c125 ___get_entropy 1008d125 f LIBCMT:gs_support.obj + 0001:0008d858 $LN1250 1008e858 libvcruntime:memcmp.obj + 0001:0008d9de ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@PAD@@QAEPAD$$QAV@@AAV@@$$QAV@@@Z 1008e9de f libucrt:setlocale.obj + 0001:0008da39 ??R@@QBEPADXZ 1008ea39 f libucrt:setlocale.obj + 0001:0008db98 _call_wsetlocale 1008eb98 f libucrt:setlocale.obj + 0001:0008dcca ??$common_fsopen@D@@YAPAU_iobuf@@QBD0H@Z 1008ecca f libucrt:fopen.obj + 0001:0008dd8c ??$common_configure_argv@D@@YAHW4_crt_argv_mode@@@Z 1008ed8c f libucrt:argv_parsing.obj + 0001:0008dec9 ??$parse_command_line@D@@YAXPADPAPAD0PAI2@Z 1008eec9 f libucrt:argv_parsing.obj + 0001:0008e097 _initialize_global_variables 1008f097 f libucrt:initialization.obj + 0001:0008e0a4 _initialize_c 1008f0a4 f libucrt:initialization.obj + 0001:0008e0be _uninitialize_environment 1008f0be f libucrt:initialization.obj + 0001:0008e0c6 _initialize_pointers 1008f0c6 f libucrt:initialization.obj + 0001:0008e0f4 _uninitialize_vcruntime 1008f0f4 f libucrt:initialization.obj + 0001:0008e0fd _uninitialize_allocated_memory 1008f0fd f libucrt:initialization.obj + 0001:0008e114 _uninitialize_allocated_io_buffers 1008f114 f libucrt:initialization.obj + 0001:0008e164 ??R@@QBE@AAPAU__crt_multibyte_data@@@Z 1008f164 f libucrt:initialization.obj + 0001:0008e1f9 ?_wcstombs_internal@@YAHPAIPADIPB_WIAAV__crt_cached_ptd_host@@@Z 1008f1f9 f libucrt:wcstombs.obj + 0001:0008e2ce ?_wcstombs_l_helper@@YAIPADPB_WIAAV__crt_cached_ptd_host@@@Z 1008f2ce f libucrt:wcstombs.obj + 0001:0008e7dd ??$common_openfile@D@@YAPAU_iobuf@@QBD0HV__crt_stdio_stream@@@Z 1008f7dd f libucrt:openfile.obj + 0001:0008e97f ?@@@CAHPBX0@Z 1008f97f f libucrt:argv_wildcards.obj + 0001:0008ea5d ??$common_expand_argv_wildcards@D@@YAHQAPADQAPAPAD@Z 1008fa5d f libucrt:argv_wildcards.obj + 0001:0008ebda ??$copy_and_add_argument_to_buffer@D@@YAHQBD0IAAV?$argument_list@D@?A0x5f5c8891@@@Z 1008fbda f libucrt:argv_wildcards.obj + 0001:0008ec8b ??$expand_argument_wildcards@D@@YAHQAD0AAV?$argument_list@D@?A0x5f5c8891@@@Z 1008fc8b f libucrt:argv_wildcards.obj + 0001:0008ef10 ??1?$argument_list@D@?A0x5f5c8891@@QAE@XZ 1008ff10 f libucrt:argv_wildcards.obj + 0001:0008ef71 ?expand_if_necessary@?$argument_list@D@?A0x5f5c8891@@AAEHXZ 1008ff71 f libucrt:argv_wildcards.obj + 0001:0008f0a4 ?x_ismbbtype_l@@YAHPAU__crt_locale_pointers@@IHH@Z 100900a4 f libucrt:ismbbyte.obj + 0001:0008f2cd ??$common_sopen_dispatch@D@@YAHQBDHHHQAHH@Z 100902cd f libucrt:open.obj + 0001:0008f3a8 ?configure_text_mode@@YAHHUfile_options@?A0xa9d50aae@@HAAW4__crt_lowio_text_mode@@@Z 100903a8 f libucrt:open.obj + 0001:0008f5fe ?create_file@@YAPAXQB_WQAU_SECURITY_ATTRIBUTES@@Ufile_options@?A0xa9d50aae@@@Z 100905fe f libucrt:open.obj + 0001:0008f623 ?decode_open_create_flags@@YAKH@Z 10090623 f libucrt:open.obj + 0001:0008f693 ?decode_options@@YA?AUfile_options@?A0xa9d50aae@@HHH@Z 10090693 f libucrt:open.obj + 0001:0008f80d ?truncate_ctrl_z_if_present@@YAHH@Z 1009080d f libucrt:open.obj + 0001:00090660 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$0 10091660 f logging.cpp.obj + 0001:00090660 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 10091660 f main.cpp.obj + 0001:00090668 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$2 10091668 f logging.cpp.obj + 0001:00090668 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 10091668 f main.cpp.obj + 0001:00090677 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$1 10091677 f logging.cpp.obj + 0001:00090677 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 10091677 f main.cpp.obj + 0001:00090684 __ehhandler$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 10091684 f logging.cpp.obj + 0001:00090684 __ehhandler$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 10091684 f main.cpp.obj + 0001:000906b0 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$0 100916b0 f logging.cpp.obj + 0001:000906b8 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$2 100916b8 f logging.cpp.obj + 0001:000906c7 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$1 100916c7 f logging.cpp.obj + 0001:000906d4 __ehhandler$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 100916d4 f logging.cpp.obj + 0001:00090700 __ehhandler$??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAE@XZ 10091700 f logging.cpp.obj + 0001:00090720 __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$0 10091720 f logging.cpp.obj + 0001:0009073c __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$2 1009173c f logging.cpp.obj + 0001:00090749 __ehhandler$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 10091749 f logging.cpp.obj + 0001:00090770 __ehhandler$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 10091770 f logging.cpp.obj + 0001:00090790 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$0 10091790 f logging.cpp.obj + 0001:00090798 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$1 10091798 f logging.cpp.obj + 0001:000907a3 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$2 100917a3 f logging.cpp.obj + 0001:000907ae __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$3 100917ae f logging.cpp.obj + 0001:000907b9 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$4 100917b9 f logging.cpp.obj + 0001:000907c4 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$5 100917c4 f logging.cpp.obj + 0001:000907cf __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$6 100917cf f logging.cpp.obj + 0001:000907df __ehhandler$??0_Locinfo@std@@QAE@PBD@Z 100917df f logging.cpp.obj + 0001:00090800 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$5 10091800 f logging.cpp.obj + 0001:00090808 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$6 10091808 f logging.cpp.obj + 0001:00090815 __ehhandler$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10091815 f logging.cpp.obj + 0001:00090840 __unwindfunclet$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z$1 10091840 f logging.cpp.obj + 0001:00090840 __unwindfunclet$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z$0 10091840 f main.cpp.obj + 0001:00090840 __unwindfunclet$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z$0 10091840 f spellcast.cpp.obj + 0001:0009084d __ehhandler$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 1009184d f logging.cpp.obj + 0001:0009084d __ehhandler$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 1009184d f main.cpp.obj + 0001:0009084d __ehhandler$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 1009184d f spellcast.cpp.obj + 0001:00090880 __ehhandler$??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 10091880 f logging.cpp.obj + 0001:00090880 __ehhandler$?try_cor_exit_process@@YAXI@Z 10091880 f libucrt:exit.obj + 0001:00090880 __ehhandler$?_Tidy@ios_base@std@@AAEXXZ 10091880 f libcpmt:ios.obj + 0001:000908a0 __ehhandler$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 100918a0 f logging.cpp.obj + 0001:000908c0 __ehhandler$??1_Locinfo@std@@QAE@XZ 100918c0 f logging.cpp.obj + 0001:000908c0 __ehhandler$??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 100918c0 f main.cpp.obj + 0001:000908c0 __ehhandler$??1_Init_atexit@@QAE@XZ 100918c0 f libcpmt:iosptrs.obj + 0001:000908c0 __ehhandler$___crtGetSystemTimePreciseAsFileTime 100918c0 f libcpmt:winapisupp.obj + 0001:000908e0 __ehhandler$??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100918e0 f file_scripts.cpp.obj + 0001:000908e0 __ehhandler$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100918e0 f logging.cpp.obj + 0001:000908e0 __ehhandler$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 100918e0 f main.cpp.obj + 0001:000908e0 __ehhandler$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100918e0 f main.cpp.obj + 0001:000908e0 __ehhandler$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100918e0 f main.cpp.obj + 0001:000908e0 __ehhandler$??_GError@hadesmem@@UAEPAXI@Z 100918e0 f main.cpp.obj + 0001:00090900 __ehhandler$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10091900 f logging.cpp.obj + 0001:00090900 __ehhandler$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10091900 f logging.cpp.obj + 0001:00090900 __ehhandler$??_Gios_base@std@@UAEPAXI@Z 10091900 f logging.cpp.obj + 0001:00090900 __ehhandler$??1bad_alloc_@exception_detail@boost@@UAE@XZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??1bad_exception_@exception_detail@boost@@UAE@XZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??1exception@boost@@MAE@XZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_DError@hadesmem@@QAEXXZ 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_GCDataStore@Nampower@@UAEPAXI@Z 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 10091900 f main.cpp.obj + 0001:00090900 __ehhandler$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 10091900 f main.cpp.obj + 0001:00090920 __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$0 10091920 f logging.cpp.obj + 0001:0009093b __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$1 1009193b f logging.cpp.obj + 0001:0009094a __ehhandler$??__EdebugLogFile@Nampower@@YAXXZ 1009194a f logging.cpp.obj + 0001:00090970 __ehhandler$??__FdebugLogFile@Nampower@@YAXXZ 10091970 f logging.cpp.obj + 0001:00090990 __unwindfunclet$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z$1 10091990 f logging.cpp.obj + 0001:0009099d __ehhandler$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 1009199d f logging.cpp.obj + 0001:000909c0 __unwindfunclet$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ$0 100919c0 f logging.cpp.obj + 0001:000909c0 __unwindfunclet$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 100919c0 f spellevents.cpp.obj + 0001:000909cd __ehhandler$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100919cd f logging.cpp.obj + 0001:000909cd __ehhandler$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100919cd f spellevents.cpp.obj + 0001:00090a00 __ehhandler$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 10091a00 f main.cpp.obj + 0001:00090a20 __ehhandler$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 10091a20 f main.cpp.obj + 0001:00090a40 __unwindfunclet$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z$0 10091a40 f main.cpp.obj + 0001:00090a40 __unwindfunclet$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z$0 10091a40 f main.cpp.obj + 0001:00090a50 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 10091a50 f main.cpp.obj + 0001:00090a50 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 10091a50 f main.cpp.obj + 0001:00090a70 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10091a70 f main.cpp.obj + 0001:00090a90 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 10091a90 f main.cpp.obj + 0001:00090ab0 __ehhandler$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 10091ab0 f main.cpp.obj + 0001:00090ad0 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$2 10091ad0 f main.cpp.obj + 0001:00090ad8 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$3 10091ad8 f main.cpp.obj + 0001:00090ae5 __ehhandler$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 10091ae5 f main.cpp.obj + 0001:00090b10 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$2 10091b10 f main.cpp.obj + 0001:00090b1d __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 10091b1d f main.cpp.obj + 0001:00090b40 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$2 10091b40 f main.cpp.obj + 0001:00090b4d __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 10091b4d f main.cpp.obj + 0001:00090b70 __unwindfunclet$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z$2 10091b70 f main.cpp.obj + 0001:00090b7d __ehhandler$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 10091b7d f main.cpp.obj + 0001:00090ba0 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$1 10091ba0 f main.cpp.obj + 0001:00090ba8 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$2 10091ba8 f main.cpp.obj + 0001:00090bb0 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$3 10091bb0 f main.cpp.obj + 0001:00090bb8 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$4 10091bb8 f main.cpp.obj + 0001:00090bc8 __ehhandler$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10091bc8 f main.cpp.obj + 0001:00090c00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$0 10091c00 f main.cpp.obj + 0001:00090c00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$0 10091c00 f main.cpp.obj + 0001:00090c00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$0 10091c00 f main.cpp.obj + 0001:00090c08 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$1 10091c08 f main.cpp.obj + 0001:00090c08 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$1 10091c08 f main.cpp.obj + 0001:00090c08 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$1 10091c08 f main.cpp.obj + 0001:00090c10 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$2 10091c10 f main.cpp.obj + 0001:00090c10 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$2 10091c10 f main.cpp.obj + 0001:00090c10 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$2 10091c10 f main.cpp.obj + 0001:00090c1d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 10091c1d f main.cpp.obj + 0001:00090c1d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 10091c1d f main.cpp.obj + 0001:00090c1d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 10091c1d f main.cpp.obj + 0001:00090c50 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$0 10091c50 f main.cpp.obj + 0001:00090c58 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$1 10091c58 f main.cpp.obj + 0001:00090c60 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$2 10091c60 f main.cpp.obj + 0001:00090c6d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 10091c6d f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$0 10091ca0 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$1 10091ca8 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$1 10091ca8 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$1 10091ca8 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$1 10091ca8 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$1 10091ca8 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$1 10091ca8 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$1 10091ca8 f main.cpp.obj + 0001:00090ca8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$1 10091ca8 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$2 10091cb0 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$2 10091cb0 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$2 10091cb0 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$2 10091cb0 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$2 10091cb0 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$2 10091cb0 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$2 10091cb0 f main.cpp.obj + 0001:00090cb0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$2 10091cb0 f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 10091cbd f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 10091cbd f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 10091cbd f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 10091cbd f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 10091cbd f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 10091cbd f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 10091cbd f main.cpp.obj + 0001:00090cbd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 10091cbd f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z$0 10091cf0 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090cf8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z$1 10091cf8 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d00 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z$2 10091d00 f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d0d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 10091d0d f main.cpp.obj + 0001:00090d40 __unwindfunclet$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$2 10091d40 f main.cpp.obj + 0001:00090d4d __ehhandler$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 10091d4d f main.cpp.obj + 0001:00090d70 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$0 10091d70 f main.cpp.obj + 0001:00090d78 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$1 10091d78 f main.cpp.obj + 0001:00090d80 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$2 10091d80 f main.cpp.obj + 0001:00090d88 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$3 10091d88 f main.cpp.obj + 0001:00090d95 __ehhandler$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 10091d95 f main.cpp.obj + 0001:00090dc0 __unwindfunclet$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$2 10091dc0 f main.cpp.obj + 0001:00090dcd __ehhandler$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 10091dcd f main.cpp.obj + 0001:00090df0 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$4 10091df0 f main.cpp.obj + 0001:00090df8 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$21 10091df8 f main.cpp.obj + 0001:00090e0a __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$22 10091e0a f main.cpp.obj + 0001:00090e2c __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$6 10091e2c f main.cpp.obj + 0001:00090e4e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$7 10091e4e f main.cpp.obj + 0001:00090e56 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$8 10091e56 f main.cpp.obj + 0001:00090e5e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$10 10091e5e f main.cpp.obj + 0001:00090e66 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$11 10091e66 f main.cpp.obj + 0001:00090e6e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$12 10091e6e f main.cpp.obj + 0001:00090e76 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$13 10091e76 f main.cpp.obj + 0001:00090e7e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$14 10091e7e f main.cpp.obj + 0001:00090e86 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$15 10091e86 f main.cpp.obj + 0001:00090e8e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$16 10091e8e f main.cpp.obj + 0001:00090e99 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$17 10091e99 f main.cpp.obj + 0001:00090ea4 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$9 10091ea4 f main.cpp.obj + 0001:00090eb1 __ehhandler$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 10091eb1 f main.cpp.obj + 0001:00090ee0 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$4 10091ee0 f main.cpp.obj + 0001:00090ee8 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$21 10091ee8 f main.cpp.obj + 0001:00090efa __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$22 10091efa f main.cpp.obj + 0001:00090f1c __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$6 10091f1c f main.cpp.obj + 0001:00090f3e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$7 10091f3e f main.cpp.obj + 0001:00090f46 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$8 10091f46 f main.cpp.obj + 0001:00090f4e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$10 10091f4e f main.cpp.obj + 0001:00090f56 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$11 10091f56 f main.cpp.obj + 0001:00090f5e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$12 10091f5e f main.cpp.obj + 0001:00090f66 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$13 10091f66 f main.cpp.obj + 0001:00090f6e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$14 10091f6e f main.cpp.obj + 0001:00090f76 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$15 10091f76 f main.cpp.obj + 0001:00090f7e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$16 10091f7e f main.cpp.obj + 0001:00090f89 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$17 10091f89 f main.cpp.obj + 0001:00090f94 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$9 10091f94 f main.cpp.obj + 0001:00090fa1 __ehhandler$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 10091fa1 f main.cpp.obj + 0001:00090fd0 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$4 10091fd0 f main.cpp.obj + 0001:00090fd8 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$21 10091fd8 f main.cpp.obj + 0001:00090fea __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$22 10091fea f main.cpp.obj + 0001:0009100c __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$6 1009200c f main.cpp.obj + 0001:0009102e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$7 1009202e f main.cpp.obj + 0001:00091036 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$8 10092036 f main.cpp.obj + 0001:0009103e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$10 1009203e f main.cpp.obj + 0001:00091046 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$11 10092046 f main.cpp.obj + 0001:0009104e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$12 1009204e f main.cpp.obj + 0001:00091056 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$13 10092056 f main.cpp.obj + 0001:0009105e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$14 1009205e f main.cpp.obj + 0001:00091066 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$15 10092066 f main.cpp.obj + 0001:0009106e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$16 1009206e f main.cpp.obj + 0001:00091079 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$17 10092079 f main.cpp.obj + 0001:00091084 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$9 10092084 f main.cpp.obj + 0001:00091091 __ehhandler$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 10092091 f main.cpp.obj + 0001:000910c0 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$4 100920c0 f main.cpp.obj + 0001:000910c8 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$21 100920c8 f main.cpp.obj + 0001:000910da __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$22 100920da f main.cpp.obj + 0001:000910fc __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$6 100920fc f main.cpp.obj + 0001:0009111e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$7 1009211e f main.cpp.obj + 0001:00091126 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$8 10092126 f main.cpp.obj + 0001:0009112e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$10 1009212e f main.cpp.obj + 0001:00091136 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$11 10092136 f main.cpp.obj + 0001:0009113e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$12 1009213e f main.cpp.obj + 0001:00091146 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$13 10092146 f main.cpp.obj + 0001:0009114e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$14 1009214e f main.cpp.obj + 0001:00091156 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$15 10092156 f main.cpp.obj + 0001:0009115e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$16 1009215e f main.cpp.obj + 0001:00091169 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$17 10092169 f main.cpp.obj + 0001:00091174 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$9 10092174 f main.cpp.obj + 0001:00091181 __ehhandler$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 10092181 f main.cpp.obj + 0001:000911b0 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$4 100921b0 f main.cpp.obj + 0001:000911b8 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$21 100921b8 f main.cpp.obj + 0001:000911ca __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$22 100921ca f main.cpp.obj + 0001:000911ec __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$6 100921ec f main.cpp.obj + 0001:0009120e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$7 1009220e f main.cpp.obj + 0001:00091216 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$8 10092216 f main.cpp.obj + 0001:0009121e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$10 1009221e f main.cpp.obj + 0001:00091226 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$11 10092226 f main.cpp.obj + 0001:0009122e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$12 1009222e f main.cpp.obj + 0001:00091236 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$13 10092236 f main.cpp.obj + 0001:0009123e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$14 1009223e f main.cpp.obj + 0001:00091246 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$15 10092246 f main.cpp.obj + 0001:0009124e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$16 1009224e f main.cpp.obj + 0001:00091259 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$17 10092259 f main.cpp.obj + 0001:00091264 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$9 10092264 f main.cpp.obj + 0001:00091271 __ehhandler$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 10092271 f main.cpp.obj + 0001:000912a0 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$4 100922a0 f main.cpp.obj + 0001:000912a8 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$21 100922a8 f main.cpp.obj + 0001:000912ba __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$22 100922ba f main.cpp.obj + 0001:000912dc __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$6 100922dc f main.cpp.obj + 0001:000912fe __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$7 100922fe f main.cpp.obj + 0001:00091306 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$8 10092306 f main.cpp.obj + 0001:0009130e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$10 1009230e f main.cpp.obj + 0001:00091316 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$11 10092316 f main.cpp.obj + 0001:0009131e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$12 1009231e f main.cpp.obj + 0001:00091326 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$13 10092326 f main.cpp.obj + 0001:0009132e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$14 1009232e f main.cpp.obj + 0001:00091336 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$15 10092336 f main.cpp.obj + 0001:0009133e __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$16 1009233e f main.cpp.obj + 0001:00091349 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$17 10092349 f main.cpp.obj + 0001:00091354 __unwindfunclet$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$9 10092354 f main.cpp.obj + 0001:00091361 __ehhandler$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 10092361 f main.cpp.obj + 0001:00091390 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$4 10092390 f main.cpp.obj + 0001:00091398 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$21 10092398 f main.cpp.obj + 0001:000913aa __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$22 100923aa f main.cpp.obj + 0001:000913cc __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$6 100923cc f main.cpp.obj + 0001:000913ee __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$7 100923ee f main.cpp.obj + 0001:000913f6 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$8 100923f6 f main.cpp.obj + 0001:000913fe __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$10 100923fe f main.cpp.obj + 0001:00091406 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$11 10092406 f main.cpp.obj + 0001:0009140e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$12 1009240e f main.cpp.obj + 0001:00091416 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$13 10092416 f main.cpp.obj + 0001:0009141e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$14 1009241e f main.cpp.obj + 0001:00091426 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$15 10092426 f main.cpp.obj + 0001:0009142e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$16 1009242e f main.cpp.obj + 0001:00091439 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$17 10092439 f main.cpp.obj + 0001:00091444 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$9 10092444 f main.cpp.obj + 0001:00091451 __ehhandler$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 10092451 f main.cpp.obj + 0001:00091480 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$4 10092480 f main.cpp.obj + 0001:00091488 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$21 10092488 f main.cpp.obj + 0001:0009149a __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$22 1009249a f main.cpp.obj + 0001:000914bc __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$6 100924bc f main.cpp.obj + 0001:000914de __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$7 100924de f main.cpp.obj + 0001:000914e6 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$8 100924e6 f main.cpp.obj + 0001:000914ee __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$10 100924ee f main.cpp.obj + 0001:000914f6 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$11 100924f6 f main.cpp.obj + 0001:000914fe __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$12 100924fe f main.cpp.obj + 0001:00091506 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$13 10092506 f main.cpp.obj + 0001:0009150e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$14 1009250e f main.cpp.obj + 0001:00091516 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$15 10092516 f main.cpp.obj + 0001:0009151e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$16 1009251e f main.cpp.obj + 0001:00091529 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$17 10092529 f main.cpp.obj + 0001:00091534 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$9 10092534 f main.cpp.obj + 0001:00091541 __ehhandler$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 10092541 f main.cpp.obj + 0001:00091570 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$4 10092570 f main.cpp.obj + 0001:00091578 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$21 10092578 f main.cpp.obj + 0001:0009158a __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$22 1009258a f main.cpp.obj + 0001:000915ac __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$6 100925ac f main.cpp.obj + 0001:000915ce __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$7 100925ce f main.cpp.obj + 0001:000915d6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$8 100925d6 f main.cpp.obj + 0001:000915de __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$10 100925de f main.cpp.obj + 0001:000915e6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$11 100925e6 f main.cpp.obj + 0001:000915ee __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$12 100925ee f main.cpp.obj + 0001:000915f6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$13 100925f6 f main.cpp.obj + 0001:000915fe __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$14 100925fe f main.cpp.obj + 0001:00091606 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$15 10092606 f main.cpp.obj + 0001:0009160e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$16 1009260e f main.cpp.obj + 0001:00091619 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$17 10092619 f main.cpp.obj + 0001:00091624 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$9 10092624 f main.cpp.obj + 0001:00091631 __ehhandler$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 10092631 f main.cpp.obj + 0001:00091660 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$4 10092660 f main.cpp.obj + 0001:00091668 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$21 10092668 f main.cpp.obj + 0001:0009167a __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$22 1009267a f main.cpp.obj + 0001:0009169c __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$6 1009269c f main.cpp.obj + 0001:000916be __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$7 100926be f main.cpp.obj + 0001:000916c6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$8 100926c6 f main.cpp.obj + 0001:000916ce __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$10 100926ce f main.cpp.obj + 0001:000916d6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$11 100926d6 f main.cpp.obj + 0001:000916de __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$12 100926de f main.cpp.obj + 0001:000916e6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$13 100926e6 f main.cpp.obj + 0001:000916ee __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$14 100926ee f main.cpp.obj + 0001:000916f6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$15 100926f6 f main.cpp.obj + 0001:000916fe __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$16 100926fe f main.cpp.obj + 0001:00091709 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$17 10092709 f main.cpp.obj + 0001:00091714 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$9 10092714 f main.cpp.obj + 0001:00091721 __ehhandler$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 10092721 f main.cpp.obj + 0001:00091750 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$4 10092750 f main.cpp.obj + 0001:00091758 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$21 10092758 f main.cpp.obj + 0001:0009176a __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$22 1009276a f main.cpp.obj + 0001:0009178c __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$6 1009278c f main.cpp.obj + 0001:000917ae __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$7 100927ae f main.cpp.obj + 0001:000917b6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$8 100927b6 f main.cpp.obj + 0001:000917be __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$10 100927be f main.cpp.obj + 0001:000917c6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$11 100927c6 f main.cpp.obj + 0001:000917ce __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$12 100927ce f main.cpp.obj + 0001:000917d6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$13 100927d6 f main.cpp.obj + 0001:000917de __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$14 100927de f main.cpp.obj + 0001:000917e6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$15 100927e6 f main.cpp.obj + 0001:000917ee __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$16 100927ee f main.cpp.obj + 0001:000917f9 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$17 100927f9 f main.cpp.obj + 0001:00091804 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$9 10092804 f main.cpp.obj + 0001:00091811 __ehhandler$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 10092811 f main.cpp.obj + 0001:00091840 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$4 10092840 f main.cpp.obj + 0001:00091848 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$21 10092848 f main.cpp.obj + 0001:0009185a __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$22 1009285a f main.cpp.obj + 0001:0009187c __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$6 1009287c f main.cpp.obj + 0001:0009189e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$7 1009289e f main.cpp.obj + 0001:000918a6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$8 100928a6 f main.cpp.obj + 0001:000918ae __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$10 100928ae f main.cpp.obj + 0001:000918b6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$11 100928b6 f main.cpp.obj + 0001:000918be __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$12 100928be f main.cpp.obj + 0001:000918c6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$13 100928c6 f main.cpp.obj + 0001:000918ce __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$14 100928ce f main.cpp.obj + 0001:000918d6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$15 100928d6 f main.cpp.obj + 0001:000918de __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$16 100928de f main.cpp.obj + 0001:000918e9 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$17 100928e9 f main.cpp.obj + 0001:000918f4 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$9 100928f4 f main.cpp.obj + 0001:00091901 __ehhandler$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 10092901 f main.cpp.obj + 0001:00091930 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$4 10092930 f main.cpp.obj + 0001:00091938 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$21 10092938 f main.cpp.obj + 0001:0009194a __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$22 1009294a f main.cpp.obj + 0001:0009196c __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$6 1009296c f main.cpp.obj + 0001:0009198e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$7 1009298e f main.cpp.obj + 0001:00091996 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$8 10092996 f main.cpp.obj + 0001:0009199e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$10 1009299e f main.cpp.obj + 0001:000919a6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$11 100929a6 f main.cpp.obj + 0001:000919ae __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$12 100929ae f main.cpp.obj + 0001:000919b6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$13 100929b6 f main.cpp.obj + 0001:000919be __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$14 100929be f main.cpp.obj + 0001:000919c6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$15 100929c6 f main.cpp.obj + 0001:000919ce __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$16 100929ce f main.cpp.obj + 0001:000919d9 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$17 100929d9 f main.cpp.obj + 0001:000919e4 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$9 100929e4 f main.cpp.obj + 0001:000919f1 __ehhandler$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 100929f1 f main.cpp.obj + 0001:00091a20 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$4 10092a20 f main.cpp.obj + 0001:00091a28 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$21 10092a28 f main.cpp.obj + 0001:00091a3a __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$22 10092a3a f main.cpp.obj + 0001:00091a5c __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$6 10092a5c f main.cpp.obj + 0001:00091a7e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$7 10092a7e f main.cpp.obj + 0001:00091a86 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$8 10092a86 f main.cpp.obj + 0001:00091a8e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$10 10092a8e f main.cpp.obj + 0001:00091a96 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$11 10092a96 f main.cpp.obj + 0001:00091a9e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$12 10092a9e f main.cpp.obj + 0001:00091aa6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$13 10092aa6 f main.cpp.obj + 0001:00091aae __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$14 10092aae f main.cpp.obj + 0001:00091ab6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$15 10092ab6 f main.cpp.obj + 0001:00091abe __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$16 10092abe f main.cpp.obj + 0001:00091ac9 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$17 10092ac9 f main.cpp.obj + 0001:00091ad4 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$9 10092ad4 f main.cpp.obj + 0001:00091ae1 __ehhandler$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 10092ae1 f main.cpp.obj + 0001:00091b10 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$4 10092b10 f main.cpp.obj + 0001:00091b18 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$21 10092b18 f main.cpp.obj + 0001:00091b2a __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$22 10092b2a f main.cpp.obj + 0001:00091b4c __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$6 10092b4c f main.cpp.obj + 0001:00091b6e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$7 10092b6e f main.cpp.obj + 0001:00091b76 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$8 10092b76 f main.cpp.obj + 0001:00091b7e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$10 10092b7e f main.cpp.obj + 0001:00091b86 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$11 10092b86 f main.cpp.obj + 0001:00091b8e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$12 10092b8e f main.cpp.obj + 0001:00091b96 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$13 10092b96 f main.cpp.obj + 0001:00091b9e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$14 10092b9e f main.cpp.obj + 0001:00091ba6 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$15 10092ba6 f main.cpp.obj + 0001:00091bae __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$16 10092bae f main.cpp.obj + 0001:00091bb9 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$17 10092bb9 f main.cpp.obj + 0001:00091bc4 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$9 10092bc4 f main.cpp.obj + 0001:00091bd1 __ehhandler$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 10092bd1 f main.cpp.obj + 0001:00091c00 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$4 10092c00 f main.cpp.obj + 0001:00091c08 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$21 10092c08 f main.cpp.obj + 0001:00091c1a __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$22 10092c1a f main.cpp.obj + 0001:00091c3c __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$6 10092c3c f main.cpp.obj + 0001:00091c5e __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$7 10092c5e f main.cpp.obj + 0001:00091c66 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$8 10092c66 f main.cpp.obj + 0001:00091c6e __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$10 10092c6e f main.cpp.obj + 0001:00091c76 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$11 10092c76 f main.cpp.obj + 0001:00091c7e __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$12 10092c7e f main.cpp.obj + 0001:00091c86 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$13 10092c86 f main.cpp.obj + 0001:00091c8e __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$14 10092c8e f main.cpp.obj + 0001:00091c96 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$15 10092c96 f main.cpp.obj + 0001:00091c9e __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$16 10092c9e f main.cpp.obj + 0001:00091ca9 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$17 10092ca9 f main.cpp.obj + 0001:00091cb4 __unwindfunclet$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$9 10092cb4 f main.cpp.obj + 0001:00091cc1 __ehhandler$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 10092cc1 f main.cpp.obj + 0001:00091cf0 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$4 10092cf0 f main.cpp.obj + 0001:00091cf8 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$21 10092cf8 f main.cpp.obj + 0001:00091d0a __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$22 10092d0a f main.cpp.obj + 0001:00091d2c __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$6 10092d2c f main.cpp.obj + 0001:00091d4e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$7 10092d4e f main.cpp.obj + 0001:00091d56 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$8 10092d56 f main.cpp.obj + 0001:00091d5e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$10 10092d5e f main.cpp.obj + 0001:00091d66 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$11 10092d66 f main.cpp.obj + 0001:00091d6e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$12 10092d6e f main.cpp.obj + 0001:00091d76 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$13 10092d76 f main.cpp.obj + 0001:00091d7e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$14 10092d7e f main.cpp.obj + 0001:00091d86 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$15 10092d86 f main.cpp.obj + 0001:00091d8e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$16 10092d8e f main.cpp.obj + 0001:00091d99 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$17 10092d99 f main.cpp.obj + 0001:00091da4 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$9 10092da4 f main.cpp.obj + 0001:00091db1 __ehhandler$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 10092db1 f main.cpp.obj + 0001:00091de0 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$4 10092de0 f main.cpp.obj + 0001:00091de8 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$21 10092de8 f main.cpp.obj + 0001:00091dfa __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$22 10092dfa f main.cpp.obj + 0001:00091e1c __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$6 10092e1c f main.cpp.obj + 0001:00091e3e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$7 10092e3e f main.cpp.obj + 0001:00091e46 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$8 10092e46 f main.cpp.obj + 0001:00091e4e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$10 10092e4e f main.cpp.obj + 0001:00091e56 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$11 10092e56 f main.cpp.obj + 0001:00091e5e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$12 10092e5e f main.cpp.obj + 0001:00091e66 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$13 10092e66 f main.cpp.obj + 0001:00091e6e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$14 10092e6e f main.cpp.obj + 0001:00091e76 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$15 10092e76 f main.cpp.obj + 0001:00091e7e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$16 10092e7e f main.cpp.obj + 0001:00091e89 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$17 10092e89 f main.cpp.obj + 0001:00091e94 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$9 10092e94 f main.cpp.obj + 0001:00091ea1 __ehhandler$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 10092ea1 f main.cpp.obj + 0001:00091ed0 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$4 10092ed0 f main.cpp.obj + 0001:00091ed8 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$21 10092ed8 f main.cpp.obj + 0001:00091eea __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$22 10092eea f main.cpp.obj + 0001:00091f0c __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$6 10092f0c f main.cpp.obj + 0001:00091f2e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$7 10092f2e f main.cpp.obj + 0001:00091f36 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$8 10092f36 f main.cpp.obj + 0001:00091f3e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$10 10092f3e f main.cpp.obj + 0001:00091f46 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$11 10092f46 f main.cpp.obj + 0001:00091f4e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$12 10092f4e f main.cpp.obj + 0001:00091f56 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$13 10092f56 f main.cpp.obj + 0001:00091f5e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$14 10092f5e f main.cpp.obj + 0001:00091f66 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$15 10092f66 f main.cpp.obj + 0001:00091f6e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$16 10092f6e f main.cpp.obj + 0001:00091f79 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$17 10092f79 f main.cpp.obj + 0001:00091f84 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$9 10092f84 f main.cpp.obj + 0001:00091f91 __ehhandler$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 10092f91 f main.cpp.obj + 0001:00091fc0 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$4 10092fc0 f main.cpp.obj + 0001:00091fc8 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$21 10092fc8 f main.cpp.obj + 0001:00091fda __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$22 10092fda f main.cpp.obj + 0001:00091ffc __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$6 10092ffc f main.cpp.obj + 0001:0009201e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$7 1009301e f main.cpp.obj + 0001:00092026 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$8 10093026 f main.cpp.obj + 0001:0009202e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$10 1009302e f main.cpp.obj + 0001:00092036 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$11 10093036 f main.cpp.obj + 0001:0009203e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$12 1009303e f main.cpp.obj + 0001:00092046 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$13 10093046 f main.cpp.obj + 0001:0009204e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$14 1009304e f main.cpp.obj + 0001:00092056 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$15 10093056 f main.cpp.obj + 0001:0009205e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$16 1009305e f main.cpp.obj + 0001:00092069 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$17 10093069 f main.cpp.obj + 0001:00092074 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$9 10093074 f main.cpp.obj + 0001:00092081 __ehhandler$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 10093081 f main.cpp.obj + 0001:000920b0 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$4 100930b0 f main.cpp.obj + 0001:000920b8 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$21 100930b8 f main.cpp.obj + 0001:000920ca __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$22 100930ca f main.cpp.obj + 0001:000920ec __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$6 100930ec f main.cpp.obj + 0001:0009210e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$7 1009310e f main.cpp.obj + 0001:00092116 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$8 10093116 f main.cpp.obj + 0001:0009211e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$10 1009311e f main.cpp.obj + 0001:00092126 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$11 10093126 f main.cpp.obj + 0001:0009212e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$12 1009312e f main.cpp.obj + 0001:00092136 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$13 10093136 f main.cpp.obj + 0001:0009213e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$14 1009313e f main.cpp.obj + 0001:00092146 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$15 10093146 f main.cpp.obj + 0001:0009214e __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$16 1009314e f main.cpp.obj + 0001:00092159 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$17 10093159 f main.cpp.obj + 0001:00092164 __unwindfunclet$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$9 10093164 f main.cpp.obj + 0001:00092171 __ehhandler$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 10093171 f main.cpp.obj + 0001:000921a0 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$4 100931a0 f main.cpp.obj + 0001:000921a8 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$21 100931a8 f main.cpp.obj + 0001:000921ba __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$22 100931ba f main.cpp.obj + 0001:000921dc __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$6 100931dc f main.cpp.obj + 0001:000921fe __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$7 100931fe f main.cpp.obj + 0001:00092206 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$8 10093206 f main.cpp.obj + 0001:0009220e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$10 1009320e f main.cpp.obj + 0001:00092216 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$11 10093216 f main.cpp.obj + 0001:0009221e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$12 1009321e f main.cpp.obj + 0001:00092226 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$13 10093226 f main.cpp.obj + 0001:0009222e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$14 1009322e f main.cpp.obj + 0001:00092236 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$15 10093236 f main.cpp.obj + 0001:0009223e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$16 1009323e f main.cpp.obj + 0001:00092249 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$17 10093249 f main.cpp.obj + 0001:00092254 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$9 10093254 f main.cpp.obj + 0001:00092261 __ehhandler$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 10093261 f main.cpp.obj + 0001:00092290 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$4 10093290 f main.cpp.obj + 0001:00092298 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$21 10093298 f main.cpp.obj + 0001:000922aa __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$22 100932aa f main.cpp.obj + 0001:000922cc __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$6 100932cc f main.cpp.obj + 0001:000922ee __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$7 100932ee f main.cpp.obj + 0001:000922f6 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$8 100932f6 f main.cpp.obj + 0001:000922fe __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$10 100932fe f main.cpp.obj + 0001:00092306 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$11 10093306 f main.cpp.obj + 0001:0009230e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$12 1009330e f main.cpp.obj + 0001:00092316 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$13 10093316 f main.cpp.obj + 0001:0009231e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$14 1009331e f main.cpp.obj + 0001:00092326 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$15 10093326 f main.cpp.obj + 0001:0009232e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$16 1009332e f main.cpp.obj + 0001:00092339 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$17 10093339 f main.cpp.obj + 0001:00092344 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$9 10093344 f main.cpp.obj + 0001:00092351 __ehhandler$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 10093351 f main.cpp.obj + 0001:00092380 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$4 10093380 f main.cpp.obj + 0001:00092388 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$21 10093388 f main.cpp.obj + 0001:0009239a __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$22 1009339a f main.cpp.obj + 0001:000923bc __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$6 100933bc f main.cpp.obj + 0001:000923de __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$7 100933de f main.cpp.obj + 0001:000923e6 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$8 100933e6 f main.cpp.obj + 0001:000923ee __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$10 100933ee f main.cpp.obj + 0001:000923f6 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$11 100933f6 f main.cpp.obj + 0001:000923fe __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$12 100933fe f main.cpp.obj + 0001:00092406 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$13 10093406 f main.cpp.obj + 0001:0009240e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$14 1009340e f main.cpp.obj + 0001:00092416 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$15 10093416 f main.cpp.obj + 0001:0009241e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$16 1009341e f main.cpp.obj + 0001:00092429 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$17 10093429 f main.cpp.obj + 0001:00092434 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$9 10093434 f main.cpp.obj + 0001:00092441 __ehhandler$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 10093441 f main.cpp.obj + 0001:00092470 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$4 10093470 f main.cpp.obj + 0001:00092478 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$21 10093478 f main.cpp.obj + 0001:0009248a __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$22 1009348a f main.cpp.obj + 0001:000924ac __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$6 100934ac f main.cpp.obj + 0001:000924ce __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$7 100934ce f main.cpp.obj + 0001:000924d6 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$8 100934d6 f main.cpp.obj + 0001:000924de __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$10 100934de f main.cpp.obj + 0001:000924e6 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$11 100934e6 f main.cpp.obj + 0001:000924ee __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$12 100934ee f main.cpp.obj + 0001:000924f6 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$13 100934f6 f main.cpp.obj + 0001:000924fe __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$14 100934fe f main.cpp.obj + 0001:00092506 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$15 10093506 f main.cpp.obj + 0001:0009250e __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$16 1009350e f main.cpp.obj + 0001:00092519 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$17 10093519 f main.cpp.obj + 0001:00092524 __unwindfunclet$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$9 10093524 f main.cpp.obj + 0001:00092531 __ehhandler$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 10093531 f main.cpp.obj + 0001:00092560 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$4 10093560 f main.cpp.obj + 0001:00092568 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$21 10093568 f main.cpp.obj + 0001:0009257a __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$22 1009357a f main.cpp.obj + 0001:0009259c __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$6 1009359c f main.cpp.obj + 0001:000925be __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$7 100935be f main.cpp.obj + 0001:000925c6 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$8 100935c6 f main.cpp.obj + 0001:000925ce __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$10 100935ce f main.cpp.obj + 0001:000925d6 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$11 100935d6 f main.cpp.obj + 0001:000925de __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$12 100935de f main.cpp.obj + 0001:000925e6 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$13 100935e6 f main.cpp.obj + 0001:000925ee __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$14 100935ee f main.cpp.obj + 0001:000925f6 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$15 100935f6 f main.cpp.obj + 0001:000925fe __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$16 100935fe f main.cpp.obj + 0001:00092609 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$17 10093609 f main.cpp.obj + 0001:00092614 __unwindfunclet$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$9 10093614 f main.cpp.obj + 0001:00092621 __ehhandler$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 10093621 f main.cpp.obj + 0001:00092650 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$4 10093650 f main.cpp.obj + 0001:00092658 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$21 10093658 f main.cpp.obj + 0001:0009266a __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$22 1009366a f main.cpp.obj + 0001:0009268c __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$6 1009368c f main.cpp.obj + 0001:000926ae __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$7 100936ae f main.cpp.obj + 0001:000926b6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$8 100936b6 f main.cpp.obj + 0001:000926be __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$10 100936be f main.cpp.obj + 0001:000926c6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$11 100936c6 f main.cpp.obj + 0001:000926ce __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$12 100936ce f main.cpp.obj + 0001:000926d6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$13 100936d6 f main.cpp.obj + 0001:000926de __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$14 100936de f main.cpp.obj + 0001:000926e6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$15 100936e6 f main.cpp.obj + 0001:000926ee __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$16 100936ee f main.cpp.obj + 0001:000926f9 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$17 100936f9 f main.cpp.obj + 0001:00092704 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$9 10093704 f main.cpp.obj + 0001:00092711 __ehhandler$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 10093711 f main.cpp.obj + 0001:00092740 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$4 10093740 f main.cpp.obj + 0001:00092748 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$21 10093748 f main.cpp.obj + 0001:0009275a __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$22 1009375a f main.cpp.obj + 0001:0009277c __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$6 1009377c f main.cpp.obj + 0001:0009279e __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$7 1009379e f main.cpp.obj + 0001:000927a6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$8 100937a6 f main.cpp.obj + 0001:000927ae __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$10 100937ae f main.cpp.obj + 0001:000927b6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$11 100937b6 f main.cpp.obj + 0001:000927be __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$12 100937be f main.cpp.obj + 0001:000927c6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$13 100937c6 f main.cpp.obj + 0001:000927ce __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$14 100937ce f main.cpp.obj + 0001:000927d6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$15 100937d6 f main.cpp.obj + 0001:000927de __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$16 100937de f main.cpp.obj + 0001:000927e9 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$17 100937e9 f main.cpp.obj + 0001:000927f4 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$9 100937f4 f main.cpp.obj + 0001:00092801 __ehhandler$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 10093801 f main.cpp.obj + 0001:00092830 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$4 10093830 f main.cpp.obj + 0001:00092838 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$21 10093838 f main.cpp.obj + 0001:0009284a __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$22 1009384a f main.cpp.obj + 0001:0009286c __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$6 1009386c f main.cpp.obj + 0001:0009288e __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$7 1009388e f main.cpp.obj + 0001:00092896 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$8 10093896 f main.cpp.obj + 0001:0009289e __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$10 1009389e f main.cpp.obj + 0001:000928a6 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$11 100938a6 f main.cpp.obj + 0001:000928ae __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$12 100938ae f main.cpp.obj + 0001:000928b6 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$13 100938b6 f main.cpp.obj + 0001:000928be __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$14 100938be f main.cpp.obj + 0001:000928c6 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$15 100938c6 f main.cpp.obj + 0001:000928ce __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$16 100938ce f main.cpp.obj + 0001:000928d9 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$17 100938d9 f main.cpp.obj + 0001:000928e4 __unwindfunclet$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$9 100938e4 f main.cpp.obj + 0001:000928f1 __ehhandler$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100938f1 f main.cpp.obj + 0001:00092920 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$4 10093920 f main.cpp.obj + 0001:00092928 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$21 10093928 f main.cpp.obj + 0001:0009293a __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$22 1009393a f main.cpp.obj + 0001:0009295c __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$6 1009395c f main.cpp.obj + 0001:0009297e __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$7 1009397e f main.cpp.obj + 0001:00092986 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$8 10093986 f main.cpp.obj + 0001:0009298e __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$10 1009398e f main.cpp.obj + 0001:00092996 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$11 10093996 f main.cpp.obj + 0001:0009299e __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$12 1009399e f main.cpp.obj + 0001:000929a6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$13 100939a6 f main.cpp.obj + 0001:000929ae __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$14 100939ae f main.cpp.obj + 0001:000929b6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$15 100939b6 f main.cpp.obj + 0001:000929be __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$16 100939be f main.cpp.obj + 0001:000929c9 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$17 100939c9 f main.cpp.obj + 0001:000929d4 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$9 100939d4 f main.cpp.obj + 0001:000929e1 __ehhandler$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100939e1 f main.cpp.obj + 0001:00092a10 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$4 10093a10 f main.cpp.obj + 0001:00092a18 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$21 10093a18 f main.cpp.obj + 0001:00092a2a __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$22 10093a2a f main.cpp.obj + 0001:00092a4c __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$6 10093a4c f main.cpp.obj + 0001:00092a6e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$7 10093a6e f main.cpp.obj + 0001:00092a76 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$8 10093a76 f main.cpp.obj + 0001:00092a7e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$10 10093a7e f main.cpp.obj + 0001:00092a86 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$11 10093a86 f main.cpp.obj + 0001:00092a8e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$12 10093a8e f main.cpp.obj + 0001:00092a96 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$13 10093a96 f main.cpp.obj + 0001:00092a9e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$14 10093a9e f main.cpp.obj + 0001:00092aa6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$15 10093aa6 f main.cpp.obj + 0001:00092aae __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$16 10093aae f main.cpp.obj + 0001:00092ab9 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$17 10093ab9 f main.cpp.obj + 0001:00092ac4 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$9 10093ac4 f main.cpp.obj + 0001:00092ad1 __ehhandler$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 10093ad1 f main.cpp.obj + 0001:00092b00 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$4 10093b00 f main.cpp.obj + 0001:00092b08 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$21 10093b08 f main.cpp.obj + 0001:00092b1a __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$22 10093b1a f main.cpp.obj + 0001:00092b3c __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$6 10093b3c f main.cpp.obj + 0001:00092b5e __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$7 10093b5e f main.cpp.obj + 0001:00092b66 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$8 10093b66 f main.cpp.obj + 0001:00092b6e __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$10 10093b6e f main.cpp.obj + 0001:00092b76 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$11 10093b76 f main.cpp.obj + 0001:00092b7e __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$12 10093b7e f main.cpp.obj + 0001:00092b86 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$13 10093b86 f main.cpp.obj + 0001:00092b8e __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$14 10093b8e f main.cpp.obj + 0001:00092b96 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$15 10093b96 f main.cpp.obj + 0001:00092b9e __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$16 10093b9e f main.cpp.obj + 0001:00092ba9 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$17 10093ba9 f main.cpp.obj + 0001:00092bb4 __unwindfunclet$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$9 10093bb4 f main.cpp.obj + 0001:00092bc1 __ehhandler$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 10093bc1 f main.cpp.obj + 0001:00092bf0 __ehhandler$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 10093bf0 f main.cpp.obj + 0001:00092c10 __ehhandler$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 10093c10 f main.cpp.obj + 0001:00092c30 __unwindfunclet$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z$0 10093c30 f main.cpp.obj + 0001:00092c30 __unwindfunclet$?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBDHH@Z$0 10093c30 f main.cpp.obj + 0001:00092c3d __ehhandler$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 10093c3d f main.cpp.obj + 0001:00092c3d __ehhandler$?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBDHH@Z 10093c3d f main.cpp.obj + 0001:00092c60 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10093c60 f main.cpp.obj + 0001:00092c68 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10093c68 f main.cpp.obj + 0001:00092c81 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10093c81 f main.cpp.obj + 0001:00092c89 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10093c89 f main.cpp.obj + 0001:00092c91 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10093c91 f main.cpp.obj + 0001:00092c99 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10093c99 f main.cpp.obj + 0001:00092ca1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10093ca1 f main.cpp.obj + 0001:00092cad __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10093cad f main.cpp.obj + 0001:00092cbc __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10093cbc f main.cpp.obj + 0001:00092cc9 __ehhandler$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10093cc9 f main.cpp.obj + 0001:00092cf0 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10093cf0 f main.cpp.obj + 0001:00092cf8 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10093cf8 f main.cpp.obj + 0001:00092d11 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10093d11 f main.cpp.obj + 0001:00092d19 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10093d19 f main.cpp.obj + 0001:00092d21 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10093d21 f main.cpp.obj + 0001:00092d29 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10093d29 f main.cpp.obj + 0001:00092d31 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10093d31 f main.cpp.obj + 0001:00092d3d __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10093d3d f main.cpp.obj + 0001:00092d4c __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10093d4c f main.cpp.obj + 0001:00092d59 __ehhandler$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10093d59 f main.cpp.obj + 0001:00092d80 __unwindfunclet$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z$0 10093d80 f main.cpp.obj + 0001:00092d94 __ehhandler$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 10093d94 f main.cpp.obj + 0001:00092dc0 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$0 10093dc0 f main.cpp.obj + 0001:00092dc8 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$1 10093dc8 f main.cpp.obj + 0001:00092dd7 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$2 10093dd7 f main.cpp.obj + 0001:00092de4 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10093de4 f main.cpp.obj + 0001:00092e10 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$0 10093e10 f main.cpp.obj + 0001:00092e18 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$1 10093e18 f main.cpp.obj + 0001:00092e27 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$2 10093e27 f main.cpp.obj + 0001:00092e34 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 10093e34 f main.cpp.obj + 0001:00092e60 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$0 10093e60 f main.cpp.obj + 0001:00092e6b __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$1 10093e6b f main.cpp.obj + 0001:00092e73 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$2 10093e73 f main.cpp.obj + 0001:00092e7b __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$3 10093e7b f main.cpp.obj + 0001:00092e83 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$4 10093e83 f main.cpp.obj + 0001:00092e90 __ehhandler$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 10093e90 f main.cpp.obj + 0001:00092ec0 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$10 10093ec0 f main.cpp.obj + 0001:00092ee2 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$9 10093ee2 f main.cpp.obj + 0001:00092eed __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$0 10093eed f main.cpp.obj + 0001:00092ef8 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$1 10093ef8 f main.cpp.obj + 0001:00092f00 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$2 10093f00 f main.cpp.obj + 0001:00092f08 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$3 10093f08 f main.cpp.obj + 0001:00092f10 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$4 10093f10 f main.cpp.obj + 0001:00092f1d __ehhandler$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 10093f1d f main.cpp.obj + 0001:00092f50 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$4 10093f50 f main.cpp.obj + 0001:00092f69 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$3 10093f69 f main.cpp.obj + 0001:00092f79 __ehhandler$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 10093f79 f main.cpp.obj + 0001:00092fa0 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$0 10093fa0 f main.cpp.obj + 0001:00092fa8 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$1 10093fa8 f main.cpp.obj + 0001:00092fb5 __ehhandler$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 10093fb5 f main.cpp.obj + 0001:00092fe0 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 10093fe0 f main.cpp.obj + 0001:00092fe8 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 10093fe8 f main.cpp.obj + 0001:00092ff7 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 10093ff7 f main.cpp.obj + 0001:00093004 __ehhandler$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 10094004 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:00093030 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$0 10094030 f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:0009303b __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$13 1009403b f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:00093043 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$1 10094043 f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:0009304e __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$2 1009404e f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093059 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$3 10094059 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:00093064 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$4 10094064 f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009306f __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$5 1009406f f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:0009307a __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$7 1009407a f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:00093085 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$8 10094085 f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:0009308d __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$9 1009408d f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:00093095 __unwindfunclet$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z$10 10094095 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930a5 __ehhandler$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 100940a5 f main.cpp.obj + 0001:000930d0 __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$0 100940d0 f main.cpp.obj + 0001:000930ec __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$1 100940ec f main.cpp.obj + 0001:000930fc __ehhandler$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100940fc f main.cpp.obj + 0001:00093120 __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$0 10094120 f main.cpp.obj + 0001:0009313c __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$1 1009413c f main.cpp.obj + 0001:0009314c __ehhandler$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 1009414c f main.cpp.obj + 0001:00093170 __unwindfunclet$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 10094170 f main.cpp.obj + 0001:00093170 __unwindfunclet$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 10094170 f main.cpp.obj + 0001:00093191 __ehhandler$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 10094191 f main.cpp.obj + 0001:00093191 __ehhandler$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 10094191 f main.cpp.obj + 0001:000931b0 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$0 100941b0 f main.cpp.obj + 0001:000931cc __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$1 100941cc f main.cpp.obj + 0001:000931e8 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$2 100941e8 f main.cpp.obj + 0001:000931f5 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 100941f5 f main.cpp.obj + 0001:00093220 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$0 10094220 f main.cpp.obj + 0001:0009323c __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$1 1009423c f main.cpp.obj + 0001:00093258 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$2 10094258 f main.cpp.obj + 0001:00093265 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 10094265 f main.cpp.obj + 0001:00093290 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$0 10094290 f main.cpp.obj + 0001:00093290 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$0 10094290 f main.cpp.obj + 0001:00093290 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$0 10094290 f main.cpp.obj + 0001:00093290 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$0 10094290 f main.cpp.obj + 0001:00093298 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$1 10094298 f main.cpp.obj + 0001:00093298 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$1 10094298 f main.cpp.obj + 0001:00093298 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$1 10094298 f main.cpp.obj + 0001:00093298 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$1 10094298 f main.cpp.obj + 0001:000932a0 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$2 100942a0 f main.cpp.obj + 0001:000932a0 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$2 100942a0 f main.cpp.obj + 0001:000932a0 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$2 100942a0 f main.cpp.obj + 0001:000932a0 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$2 100942a0 f main.cpp.obj + 0001:000932a8 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$3 100942a8 f main.cpp.obj + 0001:000932a8 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$3 100942a8 f main.cpp.obj + 0001:000932a8 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$3 100942a8 f main.cpp.obj + 0001:000932a8 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$3 100942a8 f main.cpp.obj + 0001:000932b5 __ehhandler$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 100942b5 f main.cpp.obj + 0001:000932b5 __ehhandler$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 100942b5 f main.cpp.obj + 0001:000932b5 __ehhandler$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 100942b5 f main.cpp.obj + 0001:000932b5 __ehhandler$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 100942b5 f main.cpp.obj + 0001:000932e0 __unwindfunclet$??0Error@hadesmem@@QAE@ABV01@@Z$0 100942e0 f main.cpp.obj + 0001:00093301 __ehhandler$??0Error@hadesmem@@QAE@ABV01@@Z 10094301 f main.cpp.obj + 0001:00093320 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$0 10094320 f main.cpp.obj + 0001:00093328 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$3 10094328 f main.cpp.obj + 0001:00093330 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$4 10094330 f main.cpp.obj + 0001:00093338 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$5 10094338 f main.cpp.obj + 0001:00093340 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$6 10094340 f main.cpp.obj + 0001:0009334b __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$8 1009434b f main.cpp.obj + 0001:00093353 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$9 10094353 f main.cpp.obj + 0001:0009335b __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$10 1009435b f main.cpp.obj + 0001:0009336b __ehhandler$??0Process@hadesmem@@QAE@K@Z 1009436b f main.cpp.obj + 0001:000933a0 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$2 100943a0 f main.cpp.obj + 0001:000933a8 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$3 100943a8 f main.cpp.obj + 0001:000933b0 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$4 100943b0 f main.cpp.obj + 0001:000933bd __ehhandler$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100943bd f main.cpp.obj + 0001:000933f0 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$2 100943f0 f main.cpp.obj + 0001:000933fb __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$3 100943fb f main.cpp.obj + 0001:00093403 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$4 10094403 f main.cpp.obj + 0001:0009340e __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$5 1009440e f main.cpp.obj + 0001:00093419 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$15 10094419 f main.cpp.obj + 0001:00093424 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$6 10094424 f main.cpp.obj + 0001:0009342f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$42 1009442f f main.cpp.obj + 0001:00093437 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$7 10094437 f main.cpp.obj + 0001:0009343f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$30 1009443f f main.cpp.obj + 0001:00093447 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$31 10094447 f main.cpp.obj + 0001:00093452 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$32 10094452 f main.cpp.obj + 0001:0009345a __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$33 1009445a f main.cpp.obj + 0001:00093465 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$35 10094465 f main.cpp.obj + 0001:0009346d __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$36 1009446d f main.cpp.obj + 0001:00093478 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$37 10094478 f main.cpp.obj + 0001:00093480 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$38 10094480 f main.cpp.obj + 0001:0009348b __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$39 1009448b f main.cpp.obj + 0001:00093493 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$40 10094493 f main.cpp.obj + 0001:0009349b __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$41 1009449b f main.cpp.obj + 0001:000934a6 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$8 100944a6 f main.cpp.obj + 0001:000934ae __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$9 100944ae f main.cpp.obj + 0001:000934b6 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$10 100944b6 f main.cpp.obj + 0001:000934c6 __ehhandler$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100944c6 f main.cpp.obj + 0001:000934f0 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$3 100944f0 f main.cpp.obj + 0001:000934f0 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$0 100944f0 f main.cpp.obj + 0001:000934f0 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$0 100944f0 f main.cpp.obj + 0001:000934f0 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 100944f0 f main.cpp.obj + 0001:000934f0 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 100944f0 f main.cpp.obj + 0001:000934f8 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$4 100944f8 f main.cpp.obj + 0001:000934f8 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$1 100944f8 f main.cpp.obj + 0001:000934f8 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$1 100944f8 f main.cpp.obj + 0001:000934f8 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 100944f8 f main.cpp.obj + 0001:000934f8 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$1 100944f8 f main.cpp.obj + 0001:00093500 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$5 10094500 f main.cpp.obj + 0001:00093500 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$2 10094500 f main.cpp.obj + 0001:00093500 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$2 10094500 f main.cpp.obj + 0001:00093500 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10094500 f main.cpp.obj + 0001:00093500 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 10094500 f main.cpp.obj + 0001:00093508 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$6 10094508 f main.cpp.obj + 0001:00093508 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$3 10094508 f main.cpp.obj + 0001:00093508 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$3 10094508 f main.cpp.obj + 0001:00093508 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10094508 f main.cpp.obj + 0001:00093508 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 10094508 f main.cpp.obj + 0001:00093515 __ehhandler$??0Thread@hadesmem@@QAE@K@Z 10094515 f main.cpp.obj + 0001:00093515 __ehhandler$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 10094515 f main.cpp.obj + 0001:00093515 __ehhandler$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 10094515 f main.cpp.obj + 0001:00093515 __ehhandler$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10094515 f main.cpp.obj + 0001:00093515 __ehhandler$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10094515 f main.cpp.obj + 0001:00093540 __unwindfunclet$??0error_info_container_impl@exception_detail@boost@@QAE@XZ$0 10094540 f main.cpp.obj + 0001:0009354d __ehhandler$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 1009454d f main.cpp.obj + 0001:00093570 __unwindfunclet$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z$0 10094570 f main.cpp.obj + 0001:0009357d __ehhandler$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 1009457d f main.cpp.obj + 0001:000935a0 __ehhandler$??1CDataStore@Nampower@@UAE@XZ 100945a0 f main.cpp.obj + 0001:000935a0 __ehhandler$??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100945a0 f main.cpp.obj + 0001:000935c0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$2 100945c0 f main.cpp.obj + 0001:000935c8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$3 100945c8 f main.cpp.obj + 0001:000935d5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100945d5 f main.cpp.obj + 0001:00093600 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$2 10094600 f main.cpp.obj + 0001:00093600 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$2 10094600 f main.cpp.obj + 0001:00093608 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$3 10094608 f main.cpp.obj + 0001:00093608 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$3 10094608 f main.cpp.obj + 0001:00093615 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 10094615 f main.cpp.obj + 0001:00093615 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 10094615 f main.cpp.obj + 0001:00093640 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$2 10094640 f main.cpp.obj + 0001:00093648 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$3 10094648 f main.cpp.obj + 0001:00093655 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 10094655 f main.cpp.obj + 0001:00093680 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$2 10094680 f main.cpp.obj + 0001:00093688 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$3 10094688 f main.cpp.obj + 0001:00093695 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 10094695 f main.cpp.obj + 0001:000936c0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$2 100946c0 f main.cpp.obj + 0001:000936c8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$3 100946c8 f main.cpp.obj + 0001:000936d5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100946d5 f main.cpp.obj + 0001:00093700 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$2 10094700 f main.cpp.obj + 0001:00093708 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$3 10094708 f main.cpp.obj + 0001:00093715 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 10094715 f main.cpp.obj + 0001:00093740 __unwindfunclet$??R@@QBE@XZ$0 10094740 f main.cpp.obj + 0001:00093748 __unwindfunclet$??R@@QBE@XZ$2 10094748 f main.cpp.obj + 0001:00093757 __unwindfunclet$??R@@QBE@XZ$3 10094757 f main.cpp.obj + 0001:00093775 __ehhandler$??R@@QBE@XZ 10094775 f main.cpp.obj + 0001:000937a0 __unwindfunclet$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 100947a0 f main.cpp.obj + 0001:000937a0 __unwindfunclet$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 100947a0 f main.cpp.obj + 0001:000937ad __ehhandler$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100947ad f main.cpp.obj + 0001:000937ad __ehhandler$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100947ad f main.cpp.obj + 0001:000937e0 __unwindfunclet$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z$2 100947e0 f main.cpp.obj + 0001:000937f4 __ehhandler$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 100947f4 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:00093820 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$12 10094820 f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:0009382b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$1 1009482b f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:00093836 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$14 10094836 f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:0009383e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$3 1009483e f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:00093846 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$4 10094846 f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:0009384e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$5 1009484e f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093859 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$7 10094859 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093861 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$8 10094861 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093869 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$9 10094869 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:00093879 __ehhandler$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10094879 f main.cpp.obj + 0001:000938b0 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 100948b0 f main.cpp.obj + 0001:000938bd __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100948bd f main.cpp.obj + 0001:000938f0 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 100948f0 f main.cpp.obj + 0001:000938f8 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$3 100948f8 f main.cpp.obj + 0001:00093900 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$4 10094900 f main.cpp.obj + 0001:00093908 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$5 10094908 f main.cpp.obj + 0001:00093910 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$6 10094910 f main.cpp.obj + 0001:00093920 __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 10094920 f main.cpp.obj + 0001:00093950 __unwindfunclet$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$2 10094950 f main.cpp.obj + 0001:0009395d __ehhandler$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 1009495d f main.cpp.obj + 0001:00093990 __unwindfunclet$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$2 10094990 f main.cpp.obj + 0001:0009399d __ehhandler$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 1009499d f main.cpp.obj + 0001:000939d0 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$0 100949d0 f main.cpp.obj + 0001:000939e9 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$1 100949e9 f main.cpp.obj + 0001:000939f1 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$2 100949f1 f main.cpp.obj + 0001:000939f9 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$3 100949f9 f main.cpp.obj + 0001:00093a01 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$4 10094a01 f main.cpp.obj + 0001:00093a0e __ehhandler$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 10094a0e f main.cpp.obj + 0001:00093a40 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$0 10094a40 f main.cpp.obj + 0001:00093a48 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$1 10094a48 f main.cpp.obj + 0001:00093a50 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$2 10094a50 f main.cpp.obj + 0001:00093a58 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$3 10094a58 f main.cpp.obj + 0001:00093a65 __ehhandler$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 10094a65 f main.cpp.obj + 0001:00093a90 __unwindfunclet$?DoesItemMatch@Nampower@@YA_NIIPBD@Z$0 10094a90 f items.cpp.obj + 0001:00093a90 __unwindfunclet$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z$0 10094a90 f main.cpp.obj + 0001:00093a90 __unwindfunclet$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z$0 10094a90 f pet.cpp.obj + 0001:00093a90 __unwindfunclet$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z$0 10094a90 f spell_scripts.cpp.obj + 0001:00093a90 __unwindfunclet$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z$0 10094a90 f spellcast.cpp.obj + 0001:00093a9d __ehhandler$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 10094a9d f items.cpp.obj + 0001:00093a9d __ehhandler$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 10094a9d f main.cpp.obj + 0001:00093a9d __ehhandler$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 10094a9d f pet.cpp.obj + 0001:00093a9d __ehhandler$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 10094a9d f spell_scripts.cpp.obj + 0001:00093a9d __ehhandler$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 10094a9d f spellcast.cpp.obj + 0001:00093ad0 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$2 10094ad0 f main.cpp.obj + 0001:00093ad8 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$3 10094ad8 f main.cpp.obj + 0001:00093ae0 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$4 10094ae0 f main.cpp.obj + 0001:00093ae8 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$5 10094ae8 f main.cpp.obj + 0001:00093af0 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$6 10094af0 f main.cpp.obj + 0001:00093b00 __ehhandler$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 10094b00 f main.cpp.obj + 0001:00093b30 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$2 10094b30 f main.cpp.obj + 0001:00093b49 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$3 10094b49 f main.cpp.obj + 0001:00093b54 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$0 10094b54 f main.cpp.obj + 0001:00093b64 __ehhandler$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 10094b64 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b90 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ$0 10094b90 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093b98 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ$1 10094b98 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093ba0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ$2 10094ba0 f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093bad __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 10094bad f main.cpp.obj + 0001:00093be0 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$0 10094be0 f main.cpp.obj + 0001:00093be8 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$1 10094be8 f main.cpp.obj + 0001:00093bf0 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$2 10094bf0 f main.cpp.obj + 0001:00093bfb __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$3 10094bfb f main.cpp.obj + 0001:00093c03 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$4 10094c03 f main.cpp.obj + 0001:00093c0b __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$5 10094c0b f main.cpp.obj + 0001:00093c13 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$6 10094c13 f main.cpp.obj + 0001:00093c23 __ehhandler$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 10094c23 f main.cpp.obj + 0001:00093c50 __unwindfunclet$?Glue_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 10094c50 f main.cpp.obj + 0001:00093c60 __ehhandler$?Glue_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 10094c60 f main.cpp.obj + 0001:00093c90 __unwindfunclet$?Player_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 10094c90 f main.cpp.obj + 0001:00093ca0 __ehhandler$?Player_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 10094ca0 f main.cpp.obj + 0001:00093cd0 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 10094cd0 f main.cpp.obj + 0001:00093cdb __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 10094cdb f main.cpp.obj + 0001:00093ce6 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10094ce6 f main.cpp.obj + 0001:00093cee __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10094cee f main.cpp.obj + 0001:00093cf9 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$4 10094cf9 f main.cpp.obj + 0001:00093d01 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$5 10094d01 f main.cpp.obj + 0001:00093d0c __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$6 10094d0c f main.cpp.obj + 0001:00093d14 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$7 10094d14 f main.cpp.obj + 0001:00093d1f __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$8 10094d1f f main.cpp.obj + 0001:00093d27 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$9 10094d27 f main.cpp.obj + 0001:00093d37 __ehhandler$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10094d37 f main.cpp.obj + 0001:00093d70 __unwindfunclet$?CacheItemNameToId@Nampower@@YAXPBDI@Z$0 10094d70 f items.cpp.obj + 0001:00093d70 __unwindfunclet$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z$0 10094d70 f main.cpp.obj + 0001:00093d70 __unwindfunclet$?addCustomEvent@Nampower@@YAXIPAD@Z$0 10094d70 f main.cpp.obj + 0001:00093d70 __unwindfunclet$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z$0 10094d70 f pet.cpp.obj + 0001:00093d70 __unwindfunclet$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10094d70 f spell_scripts.cpp.obj + 0001:00093d70 __unwindfunclet$?TriggerQuickcast@Nampower@@YAXXZ$0 10094d70 f spellcast.cpp.obj + 0001:00093d7d __ehhandler$?CacheItemNameToId@Nampower@@YAXPBDI@Z 10094d7d f items.cpp.obj + 0001:00093d7d __ehhandler$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 10094d7d f main.cpp.obj + 0001:00093d7d __ehhandler$?addCustomEvent@Nampower@@YAXIPAD@Z 10094d7d f main.cpp.obj + 0001:00093d7d __ehhandler$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 10094d7d f pet.cpp.obj + 0001:00093d7d __ehhandler$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10094d7d f spell_scripts.cpp.obj + 0001:00093d7d __ehhandler$?TriggerQuickcast@Nampower@@YAXXZ 10094d7d f spellcast.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093db0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$0 10094db0 f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093dbd __ehhandler$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 10094dbd f main.cpp.obj + 0001:00093de0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10094de0 f main.cpp.obj + 0001:00093ded __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094ded f main.cpp.obj + 0001:00093e20 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$2 10094e20 f main.cpp.obj + 0001:00093e2d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10094e2d f main.cpp.obj + 0001:00093e60 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10094e60 f main.cpp.obj + 0001:00093e6d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10094e6d f main.cpp.obj + 0001:00093ea0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$2 10094ea0 f main.cpp.obj + 0001:00093ead __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10094ead f main.cpp.obj + 0001:00093ee0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$2 10094ee0 f main.cpp.obj + 0001:00093eed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10094eed f main.cpp.obj + 0001:00093f20 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$2 10094f20 f main.cpp.obj + 0001:00093f2d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 10094f2d f main.cpp.obj + 0001:00093f60 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$2 10094f60 f main.cpp.obj + 0001:00093f6d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10094f6d f main.cpp.obj + 0001:00093fa0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$2 10094fa0 f main.cpp.obj + 0001:00093fad __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10094fad f main.cpp.obj + 0001:00093fe0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$2 10094fe0 f main.cpp.obj + 0001:00093fed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10094fed f main.cpp.obj + 0001:00094020 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$2 10095020 f main.cpp.obj + 0001:0009402d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 1009502d f main.cpp.obj + 0001:00094060 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$2 10095060 f main.cpp.obj + 0001:0009406d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 1009506d f main.cpp.obj + 0001:000940a0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$2 100950a0 f main.cpp.obj + 0001:000940ad __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100950ad f main.cpp.obj + 0001:000940e0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$2 100950e0 f main.cpp.obj + 0001:000940ed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100950ed f main.cpp.obj + 0001:00094120 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$2 10095120 f main.cpp.obj + 0001:0009412d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1009512d f main.cpp.obj + 0001:00094160 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$2 10095160 f main.cpp.obj + 0001:0009416d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1009516d f main.cpp.obj + 0001:000941a0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$2 100951a0 f main.cpp.obj + 0001:000941ad __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100951ad f main.cpp.obj + 0001:000941e0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$2 100951e0 f main.cpp.obj + 0001:000941ed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100951ed f main.cpp.obj + 0001:00094220 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$2 10095220 f main.cpp.obj + 0001:0009422d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1009522d f main.cpp.obj + 0001:00094260 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$2 10095260 f main.cpp.obj + 0001:0009426d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1009526d f main.cpp.obj + 0001:000942a0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$2 100952a0 f main.cpp.obj + 0001:000942ad __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100952ad f main.cpp.obj + 0001:000942e0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$2 100952e0 f main.cpp.obj + 0001:000942ed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100952ed f main.cpp.obj + 0001:00094320 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10095320 f main.cpp.obj + 0001:0009432d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1009532d f main.cpp.obj + 0001:00094360 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$2 10095360 f main.cpp.obj + 0001:0009436d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 1009536d f main.cpp.obj + 0001:000943a0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 100953a0 f main.cpp.obj + 0001:000943ad __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100953ad f main.cpp.obj + 0001:000943e0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$2 100953e0 f main.cpp.obj + 0001:000943ed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100953ed f main.cpp.obj + 0001:00094420 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$2 10095420 f main.cpp.obj + 0001:0009442d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 1009542d f main.cpp.obj + 0001:00094460 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$2 10095460 f main.cpp.obj + 0001:0009446d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 1009546d f main.cpp.obj + 0001:000944a0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$2 100954a0 f main.cpp.obj + 0001:000944ad __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100954ad f main.cpp.obj + 0001:000944e0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$2 100954e0 f main.cpp.obj + 0001:000944ed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100954ed f main.cpp.obj + 0001:00094520 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$2 10095520 f main.cpp.obj + 0001:0009452d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 1009552d f main.cpp.obj + 0001:00094560 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$2 10095560 f main.cpp.obj + 0001:0009456d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 1009556d f main.cpp.obj + 0001:000945a0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$2 100955a0 f main.cpp.obj + 0001:000945ad __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100955ad f main.cpp.obj + 0001:000945e0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$2 100955e0 f main.cpp.obj + 0001:000945ed __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100955ed f main.cpp.obj + 0001:00094620 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$3 10095620 f main.cpp.obj + 0001:00094628 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$2 10095628 f main.cpp.obj + 0001:00094635 __ehhandler$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 10095635 f main.cpp.obj + 0001:00094660 __unwindfunclet$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$2 10095660 f main.cpp.obj + 0001:0009466d __ehhandler$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 1009566d f main.cpp.obj + 0001:000946a0 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$2 100956a0 f main.cpp.obj + 0001:000946a8 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$3 100956a8 f main.cpp.obj + 0001:000946b0 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$4 100956b0 f main.cpp.obj + 0001:000946b8 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$5 100956b8 f main.cpp.obj + 0001:000946c0 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$6 100956c0 f main.cpp.obj + 0001:000946d0 __ehhandler$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100956d0 f main.cpp.obj + 0001:00094700 __unwindfunclet$?SetSelectionTarget@Nampower@@YAX_K@Z$0 10095700 f main.cpp.obj + 0001:0009470d __ehhandler$?SetSelectionTarget@Nampower@@YAX_K@Z 1009570d f main.cpp.obj + 0001:00094730 __unwindfunclet$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z$0 10095730 f main.cpp.obj + 0001:00094730 __unwindfunclet$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ$0 10095730 f main.cpp.obj + 0001:00094730 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ$0 10095730 f main.cpp.obj + 0001:0009473d __ehhandler$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 1009573d f main.cpp.obj + 0001:0009473d __ehhandler$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 1009573d f main.cpp.obj + 0001:0009473d __ehhandler$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 1009573d f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z$0 10095760 f main.cpp.obj + 0001:00094760 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z$0 10095760 f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 1009576d f main.cpp.obj + 0001:0009476d __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 1009576d f main.cpp.obj + 0001:00094790 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z$0 10095790 f main.cpp.obj + 0001:00094790 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z$0 10095790 f main.cpp.obj + 0001:00094790 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z$0 10095790 f main.cpp.obj + 0001:00094790 __unwindfunclet$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z$0 10095790 f main.cpp.obj + 0001:00094790 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z$0 10095790 f main.cpp.obj + 0001:00094790 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z$0 10095790 f main.cpp.obj + 0001:00094790 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z$0 10095790 f main.cpp.obj + 0001:0009479d __ehhandler$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 1009579d f main.cpp.obj + 0001:0009479d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 1009579d f main.cpp.obj + 0001:0009479d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 1009579d f main.cpp.obj + 0001:0009479d __ehhandler$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 1009579d f main.cpp.obj + 0001:0009479d __ehhandler$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 1009579d f main.cpp.obj + 0001:0009479d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 1009579d f main.cpp.obj + 0001:0009479d __ehhandler$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 1009579d f main.cpp.obj + 0001:000947c0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z$0 100957c0 f main.cpp.obj + 0001:000947c0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z$0 100957c0 f main.cpp.obj + 0001:000947cd __ehhandler$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 100957cd f main.cpp.obj + 0001:000947cd __ehhandler$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 100957cd f main.cpp.obj + 0001:000947f0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z$0 100957f0 f main.cpp.obj + 0001:000947f0 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z$0 100957f0 f main.cpp.obj + 0001:000947fd __ehhandler$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 100957fd f main.cpp.obj + 0001:000947fd __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 100957fd f main.cpp.obj + 0001:00094820 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z$0 10095820 f main.cpp.obj + 0001:0009482d __ehhandler$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 1009582d f main.cpp.obj + 0001:00094850 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$2 10095850 f main.cpp.obj + 0001:00094858 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$3 10095858 f main.cpp.obj + 0001:00094860 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$4 10095860 f main.cpp.obj + 0001:00094868 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$5 10095868 f main.cpp.obj + 0001:00094875 __ehhandler$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 10095875 f main.cpp.obj + 0001:000948a0 __unwindfunclet$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 100958a0 f main.cpp.obj + 0001:000948ad __ehhandler$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100958ad f main.cpp.obj + 0001:000948d0 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$0 100958d0 f main.cpp.obj + 0001:000948d8 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$1 100958d8 f main.cpp.obj + 0001:000948e0 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$7 100958e0 f main.cpp.obj + 0001:000948e8 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$2 100958e8 f main.cpp.obj + 0001:000948f0 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$3 100958f0 f main.cpp.obj + 0001:000948f8 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$4 100958f8 f main.cpp.obj + 0001:00094908 __ehhandler$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 10095908 f main.cpp.obj + 0001:00094940 __unwindfunclet$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 10095940 f main.cpp.obj + 0001:0009494d __ehhandler$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 1009594d f main.cpp.obj + 0001:00094980 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 10095980 f main.cpp.obj + 0001:0009498b __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 1009598b f main.cpp.obj + 0001:00094993 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 10095993 f main.cpp.obj + 0001:0009499e __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$4 1009599e f main.cpp.obj + 0001:000949a6 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$5 100959a6 f main.cpp.obj + 0001:000949b1 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$6 100959b1 f main.cpp.obj + 0001:000949b9 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$7 100959b9 f main.cpp.obj + 0001:000949c4 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$8 100959c4 f main.cpp.obj + 0001:000949cc __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$9 100959cc f main.cpp.obj + 0001:000949dc __ehhandler$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100959dc f main.cpp.obj + 0001:00094a10 __unwindfunclet$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 10095a10 f main.cpp.obj + 0001:00094a1d __ehhandler$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 10095a1d f main.cpp.obj + 0001:00094a50 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$0 10095a50 f main.cpp.obj + 0001:00094a5f __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$1 10095a5f f main.cpp.obj + 0001:00094a78 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$2 10095a78 f main.cpp.obj + 0001:00094a80 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$4 10095a80 f main.cpp.obj + 0001:00094a8d __ehhandler$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 10095a8d f main.cpp.obj + 0001:00094ab0 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$0 10095ab0 f main.cpp.obj + 0001:00094ab8 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$1 10095ab8 f main.cpp.obj + 0001:00094ac0 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$2 10095ac0 f main.cpp.obj + 0001:00094ac8 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$3 10095ac8 f main.cpp.obj + 0001:00094ad5 __ehhandler$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 10095ad5 f main.cpp.obj + 0001:00094b00 __ehhandler$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 10095b00 f main.cpp.obj + 0001:00094b20 __ehhandler$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 10095b20 f main.cpp.obj + 0001:00094b50 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$0 10095b50 f main.cpp.obj + 0001:00094b58 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$1 10095b58 f main.cpp.obj + 0001:00094b65 __ehhandler$?checkForStopChanneling@Nampower@@YAXXZ 10095b65 f main.cpp.obj + 0001:00094b90 __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 10095b90 f main.cpp.obj + 0001:00094b9f __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 10095b9f f main.cpp.obj + 0001:00094bbb __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 10095bbb f main.cpp.obj + 0001:00094bc8 __ehhandler$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10095bc8 f main.cpp.obj + 0001:00094bf0 __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 10095bf0 f main.cpp.obj + 0001:00094bff __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 10095bff f main.cpp.obj + 0001:00094c1b __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 10095c1b f main.cpp.obj + 0001:00094c28 __ehhandler$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10095c28 f main.cpp.obj + 0001:00094c50 __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$0 10095c50 f main.cpp.obj + 0001:00094c5f __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$1 10095c5f f main.cpp.obj + 0001:00094c6c __ehhandler$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 10095c6c f main.cpp.obj + 0001:00094c90 __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$0 10095c90 f main.cpp.obj + 0001:00094c9f __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$1 10095c9f f main.cpp.obj + 0001:00094cac __ehhandler$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 10095cac f main.cpp.obj + 0001:00094cd0 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$0 10095cd0 f main.cpp.obj + 0001:00094ce9 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$1 10095ce9 f main.cpp.obj + 0001:00094cf8 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$4 10095cf8 f main.cpp.obj + 0001:00094d00 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$2 10095d00 f main.cpp.obj + 0001:00094d08 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$3 10095d08 f main.cpp.obj + 0001:00094d10 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$11 10095d10 f main.cpp.obj + 0001:00094d1d __ehhandler$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 10095d1d f main.cpp.obj + 0001:00094d40 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$0 10095d40 f main.cpp.obj + 0001:00094d48 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$1 10095d48 f main.cpp.obj + 0001:00094d55 __ehhandler$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 10095d55 f main.cpp.obj + 0001:00094d80 __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$0 10095d80 f main.cpp.obj + 0001:00094d8b __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$1 10095d8b f main.cpp.obj + 0001:00094d98 __ehhandler$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 10095d98 f main.cpp.obj + 0001:00094dd0 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$1 10095dd0 f main.cpp.obj + 0001:00094ddb __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$2 10095ddb f main.cpp.obj + 0001:00094de3 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$3 10095de3 f main.cpp.obj + 0001:00094deb __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$4 10095deb f main.cpp.obj + 0001:00094df8 __ehhandler$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 10095df8 f main.cpp.obj + 0001:00094e30 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z$0 10095e30 f main.cpp.obj + 0001:00094e30 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z$0 10095e30 f main.cpp.obj + 0001:00094e3d __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 10095e3d f main.cpp.obj + 0001:00094e3d __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 10095e3d f main.cpp.obj + 0001:00094e70 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$0 10095e70 f main.cpp.obj + 0001:00094e78 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$1 10095e78 f main.cpp.obj + 0001:00094e85 __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 10095e85 f main.cpp.obj + 0001:00094eb0 __unwindfunclet$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z$0 10095eb0 f main.cpp.obj + 0001:00094ebd __ehhandler$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 10095ebd f main.cpp.obj + 0001:00094ef0 __unwindfunclet$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$2 10095ef0 f main.cpp.obj + 0001:00094efd __ehhandler$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 10095efd f main.cpp.obj + 0001:00094f20 __unwindfunclet$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$2 10095f20 f main.cpp.obj + 0001:00094f34 __ehhandler$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 10095f34 f main.cpp.obj + 0001:00094f60 __unwindfunclet$?initHooks@Nampower@@YAXXZ$0 10095f60 f main.cpp.obj + 0001:00094f68 __unwindfunclet$?initHooks@Nampower@@YAXXZ$1 10095f68 f main.cpp.obj + 0001:00094f70 __unwindfunclet$?initHooks@Nampower@@YAXXZ$52 10095f70 f main.cpp.obj + 0001:00094f7d __ehhandler$?initHooks@Nampower@@YAXXZ 10095f7d f main.cpp.obj + 0001:00094fb0 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$0 10095fb0 f main.cpp.obj + 0001:00094fbb __unwindfunclet$?loadConfig@Nampower@@YAXXZ$1 10095fbb f main.cpp.obj + 0001:00094fc6 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$2 10095fc6 f main.cpp.obj + 0001:00094fd1 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$3 10095fd1 f main.cpp.obj + 0001:00094fdc __unwindfunclet$?loadConfig@Nampower@@YAXXZ$4 10095fdc f main.cpp.obj + 0001:00094fe7 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$5 10095fe7 f main.cpp.obj + 0001:00094ff2 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$6 10095ff2 f main.cpp.obj + 0001:00094ffd __unwindfunclet$?loadConfig@Nampower@@YAXXZ$7 10095ffd f main.cpp.obj + 0001:00095008 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$8 10096008 f main.cpp.obj + 0001:00095013 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$9 10096013 f main.cpp.obj + 0001:0009501e __unwindfunclet$?loadConfig@Nampower@@YAXXZ$10 1009601e f main.cpp.obj + 0001:00095029 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$11 10096029 f main.cpp.obj + 0001:00095039 __ehhandler$?loadConfig@Nampower@@YAXXZ 10096039 f main.cpp.obj + 0001:00095070 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$0 10096070 f main.cpp.obj + 0001:00095078 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$1 10096078 f main.cpp.obj + 0001:00095085 __ehhandler$?loadUserVar@Nampower@@YAXPBD@Z 10096085 f main.cpp.obj + 0001:000950b0 __unwindfunclet$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z$0 100960b0 f main.cpp.obj + 0001:000950bd __ehhandler$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 100960bd f main.cpp.obj + 0001:000950e0 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$0 100960e0 f main.cpp.obj + 0001:000950e8 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$1 100960e8 f main.cpp.obj + 0001:000950f0 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$2 100960f0 f main.cpp.obj + 0001:000950fd __ehhandler$?processQueues@Nampower@@YA_NXZ 100960fd f main.cpp.obj + 0001:00095130 __unwindfunclet$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$2 10096130 f main.cpp.obj + 0001:0009513d __ehhandler$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 1009613d f main.cpp.obj + 0001:00095160 __unwindfunclet$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z$0 10096160 f main.cpp.obj + 0001:0009516d __ehhandler$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 1009616d f main.cpp.obj + 0001:00095190 __unwindfunclet$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z$2 10096190 f main.cpp.obj + 0001:0009519d __ehhandler$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 1009619d f main.cpp.obj + 0001:000951c0 __unwindfunclet$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ$0 100961c0 f main.cpp.obj + 0001:000951de __ehhandler$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 100961de f main.cpp.obj + 0001:00095200 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$0 10096200 f main.cpp.obj + 0001:00095208 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$1 10096208 f main.cpp.obj + 0001:00095210 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$2 10096210 f main.cpp.obj + 0001:00095218 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$3 10096218 f main.cpp.obj + 0001:00095220 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$4 10096220 f main.cpp.obj + 0001:00095228 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$5 10096228 f main.cpp.obj + 0001:00095230 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$6 10096230 f main.cpp.obj + 0001:00095238 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$7 10096238 f main.cpp.obj + 0001:00095240 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$8 10096240 f main.cpp.obj + 0001:00095248 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$9 10096248 f main.cpp.obj + 0001:00095250 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$10 10096250 f main.cpp.obj + 0001:00095258 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$11 10096258 f main.cpp.obj + 0001:00095260 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$12 10096260 f main.cpp.obj + 0001:00095268 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$13 10096268 f main.cpp.obj + 0001:00095270 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$14 10096270 f main.cpp.obj + 0001:00095278 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$15 10096278 f main.cpp.obj + 0001:00095280 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$16 10096280 f main.cpp.obj + 0001:00095288 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$17 10096288 f main.cpp.obj + 0001:00095290 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$18 10096290 f main.cpp.obj + 0001:00095298 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$19 10096298 f main.cpp.obj + 0001:000952a0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$20 100962a0 f main.cpp.obj + 0001:000952a8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$21 100962a8 f main.cpp.obj + 0001:000952b0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$22 100962b0 f main.cpp.obj + 0001:000952b8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$23 100962b8 f main.cpp.obj + 0001:000952c0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$24 100962c0 f main.cpp.obj + 0001:000952c8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$25 100962c8 f main.cpp.obj + 0001:000952d0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$26 100962d0 f main.cpp.obj + 0001:000952d8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$27 100962d8 f main.cpp.obj + 0001:000952e0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$28 100962e0 f main.cpp.obj + 0001:000952e8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$29 100962e8 f main.cpp.obj + 0001:000952f0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$30 100962f0 f main.cpp.obj + 0001:000952f8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$31 100962f8 f main.cpp.obj + 0001:00095300 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$32 10096300 f main.cpp.obj + 0001:00095308 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$33 10096308 f main.cpp.obj + 0001:00095310 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$34 10096310 f main.cpp.obj + 0001:00095318 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$35 10096318 f main.cpp.obj + 0001:00095320 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$36 10096320 f main.cpp.obj + 0001:00095328 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$37 10096328 f main.cpp.obj + 0001:00095330 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$38 10096330 f main.cpp.obj + 0001:00095338 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$39 10096338 f main.cpp.obj + 0001:00095340 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$40 10096340 f main.cpp.obj + 0001:0009534d __ehhandler$?updateFromCvar@Nampower@@YAXPBD0@Z 1009634d f main.cpp.obj + 0001:00095380 __unwindfunclet$_Load$4 10096380 f main.cpp.obj + 0001:00095388 __unwindfunclet$_Load$3 10096388 f main.cpp.obj + 0001:00095395 __ehhandler$_Load 10096395 f main.cpp.obj + 0001:000953c0 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 100963c0 f helper.cpp.obj + 0001:000953c8 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 100963c8 f helper.cpp.obj + 0001:000953d5 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100963d5 f helper.cpp.obj + 0001:00095400 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$1 10096400 f helper.cpp.obj + 0001:00095408 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$0 10096408 f helper.cpp.obj + 0001:00095415 __ehhandler$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 10096415 f helper.cpp.obj + 0001:00095440 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$0 10096440 f helper.cpp.obj + 0001:0009544c __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$2 1009644c f helper.cpp.obj + 0001:00095456 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$3 10096456 f helper.cpp.obj + 0001:00095465 __ehhandler$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 10096465 f helper.cpp.obj + 0001:00095490 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$1 10096490 f helper.cpp.obj + 0001:00095498 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$3 10096498 f helper.cpp.obj + 0001:000954a0 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$0 100964a0 f helper.cpp.obj + 0001:000954ac __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$9 100964ac f helper.cpp.obj + 0001:000954b6 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z$10 100964b6 f helper.cpp.obj + 0001:000954c5 __ehhandler$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 100964c5 f helper.cpp.obj + 0001:000954f0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$2 100964f0 f spellcast.cpp.obj + 0001:000954f8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$3 100964f8 f spellcast.cpp.obj + 0001:00095505 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 10096505 f spellcast.cpp.obj + 0001:00095530 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$0 10096530 f spellcast.cpp.obj + 0001:00095538 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$4 10096538 f spellcast.cpp.obj + 0001:00095540 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$1 10096540 f spellcast.cpp.obj + 0001:00095548 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$2 10096548 f spellcast.cpp.obj + 0001:00095550 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$3 10096550 f spellcast.cpp.obj + 0001:0009555d __ehhandler$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 1009655d f spellcast.cpp.obj + 0001:00095590 __unwindfunclet$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z$0 10096590 f spellcast.cpp.obj + 0001:00095590 __unwindfunclet$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z$0 10096590 f spellcast.cpp.obj + 0001:00095590 __unwindfunclet$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10096590 f spellevents.cpp.obj + 0001:0009559d __ehhandler$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 1009659d f spellcast.cpp.obj + 0001:0009559d __ehhandler$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 1009659d f spellcast.cpp.obj + 0001:0009559d __ehhandler$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1009659d f spellevents.cpp.obj + 0001:000955d0 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$0 100965d0 f spellcast.cpp.obj + 0001:000955d8 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$1 100965d8 f spellcast.cpp.obj + 0001:000955e5 __ehhandler$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 100965e5 f spellcast.cpp.obj + 0001:00095610 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$0 10096610 f spellcast.cpp.obj + 0001:00095618 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$1 10096618 f spellcast.cpp.obj + 0001:00095625 __ehhandler$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 10096625 f spellcast.cpp.obj + 0001:00095650 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$0 10096650 f spellcast.cpp.obj + 0001:00095658 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$1 10096658 f spellcast.cpp.obj + 0001:00095665 __ehhandler$?CastQueuedNormalSpell@Nampower@@YAXXZ 10096665 f spellcast.cpp.obj + 0001:00095690 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$0 10096690 f spellcast.cpp.obj + 0001:00095698 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$1 10096698 f spellcast.cpp.obj + 0001:000956a0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$2 100966a0 f spellcast.cpp.obj + 0001:000956a8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$3 100966a8 f spellcast.cpp.obj + 0001:000956b0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$4 100966b0 f spellcast.cpp.obj + 0001:000956b8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$6 100966b8 f spellcast.cpp.obj + 0001:000956c0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$5 100966c0 f spellcast.cpp.obj + 0001:000956c8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$7 100966c8 f spellcast.cpp.obj + 0001:000956d0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$8 100966d0 f spellcast.cpp.obj + 0001:000956d8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$9 100966d8 f spellcast.cpp.obj + 0001:000956e0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$10 100966e0 f spellcast.cpp.obj + 0001:000956e8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$11 100966e8 f spellcast.cpp.obj + 0001:000956f0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$12 100966f0 f spellcast.cpp.obj + 0001:000956f8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$13 100966f8 f spellcast.cpp.obj + 0001:00095700 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$17 10096700 f spellcast.cpp.obj + 0001:00095708 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$14 10096708 f spellcast.cpp.obj + 0001:00095710 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$15 10096710 f spellcast.cpp.obj + 0001:00095718 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$16 10096718 f spellcast.cpp.obj + 0001:00095720 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$18 10096720 f spellcast.cpp.obj + 0001:00095728 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$19 10096728 f spellcast.cpp.obj + 0001:00095730 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$20 10096730 f spellcast.cpp.obj + 0001:00095738 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$21 10096738 f spellcast.cpp.obj + 0001:00095740 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$22 10096740 f spellcast.cpp.obj + 0001:00095748 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$23 10096748 f spellcast.cpp.obj + 0001:00095755 __ehhandler$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 10096755 f spellcast.cpp.obj + 0001:00095780 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10096780 f spellchannel.cpp.obj + 0001:00095788 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10096788 f spellchannel.cpp.obj + 0001:00095790 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 10096790 f spellchannel.cpp.obj + 0001:00095798 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$3 10096798 f spellchannel.cpp.obj + 0001:000957a0 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$4 100967a0 f spellchannel.cpp.obj + 0001:000957a8 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$5 100967a8 f spellchannel.cpp.obj + 0001:000957b5 __ehhandler$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100967b5 f spellchannel.cpp.obj + 0001:000957e0 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 100967e0 f spellchannel.cpp.obj + 0001:000957e8 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 100967e8 f spellchannel.cpp.obj + 0001:000957f5 __ehhandler$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100967f5 f spellchannel.cpp.obj + 0001:00095820 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10096820 f spellevents.cpp.obj + 0001:00095828 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10096828 f spellevents.cpp.obj + 0001:00095830 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 10096830 f spellevents.cpp.obj + 0001:0009583d __ehhandler$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 1009683d f spellevents.cpp.obj + 0001:00095870 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$1 10096870 f spellevents.cpp.obj + 0001:00095878 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$0 10096878 f spellevents.cpp.obj + 0001:00095885 __ehhandler$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 10096885 f spellevents.cpp.obj + 0001:000958b0 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$0 100968b0 f spellevents.cpp.obj + 0001:000958b8 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$1 100968b8 f spellevents.cpp.obj + 0001:000958c0 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$2 100968c0 f spellevents.cpp.obj + 0001:000958cd __ehhandler$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100968cd f spellevents.cpp.obj + 0001:00095900 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$0 10096900 f spellevents.cpp.obj + 0001:00095908 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$13 10096908 f spellevents.cpp.obj + 0001:00095910 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$14 10096910 f spellevents.cpp.obj + 0001:00095918 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$2 10096918 f spellevents.cpp.obj + 0001:00095920 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$1 10096920 f spellevents.cpp.obj + 0001:00095928 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$3 10096928 f spellevents.cpp.obj + 0001:00095930 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$4 10096930 f spellevents.cpp.obj + 0001:00095938 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$5 10096938 f spellevents.cpp.obj + 0001:00095940 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$8 10096940 f spellevents.cpp.obj + 0001:00095948 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$9 10096948 f spellevents.cpp.obj + 0001:00095950 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$7 10096950 f spellevents.cpp.obj + 0001:00095958 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$6 10096958 f spellevents.cpp.obj + 0001:00095960 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$10 10096960 f spellevents.cpp.obj + 0001:00095968 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$11 10096968 f spellevents.cpp.obj + 0001:00095970 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$12 10096970 f spellevents.cpp.obj + 0001:0009597d __ehhandler$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 1009697d f spellevents.cpp.obj + 0001:000959b0 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$0 100969b0 f spellevents.cpp.obj + 0001:000959bb __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$1 100969bb f spellevents.cpp.obj + 0001:000959c6 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$2 100969c6 f spellevents.cpp.obj + 0001:000959ce __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$3 100969ce f spellevents.cpp.obj + 0001:000959db __ehhandler$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 100969db f spellevents.cpp.obj + 0001:00095a10 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10096a10 f item_scripts.cpp.obj + 0001:00095a10 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10096a10 f misc_scripts.cpp.obj + 0001:00095a10 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10096a10 f spell_scripts.cpp.obj + 0001:00095a1d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10096a1d f item_scripts.cpp.obj + 0001:00095a1d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10096a1d f misc_scripts.cpp.obj + 0001:00095a1d __ehhandler$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 10096a1d f spell_scripts.cpp.obj + 0001:00095a50 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10096a50 f dbc_fields.cpp.obj + 0001:00095a50 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10096a50 f misc_scripts.cpp.obj + 0001:00095a58 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10096a58 f dbc_fields.cpp.obj + 0001:00095a58 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10096a58 f misc_scripts.cpp.obj + 0001:00095a65 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10096a65 f dbc_fields.cpp.obj + 0001:00095a65 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10096a65 f misc_scripts.cpp.obj + 0001:00095a90 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$1 10096a90 f items.cpp.obj + 0001:00095a90 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$1 10096a90 f misc_scripts.cpp.obj + 0001:00095a9b __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$2 10096a9b f items.cpp.obj + 0001:00095a9b __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$2 10096a9b f misc_scripts.cpp.obj + 0001:00095aab __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 10096aab f items.cpp.obj + 0001:00095aab __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 10096aab f misc_scripts.cpp.obj + 0001:00095ad0 __unwindfunclet$?RunQueuedScript@Nampower@@YA_NH@Z$0 10096ad0 f misc_scripts.cpp.obj + 0001:00095ad0 __unwindfunclet$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z$0 10096ad0 f misc_scripts.cpp.obj + 0001:00095add __ehhandler$?RunQueuedScript@Nampower@@YA_NH@Z 10096add f misc_scripts.cpp.obj + 0001:00095add __ehhandler$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 10096add f misc_scripts.cpp.obj + 0001:00095b10 __unwindfunclet$?Script_DisenchantAll@Nampower@@YAIPAI@Z$0 10096b10 f misc_scripts.cpp.obj + 0001:00095b1d __ehhandler$?Script_DisenchantAll@Nampower@@YAIPAI@Z 10096b1d f misc_scripts.cpp.obj + 0001:00095b50 __unwindfunclet$?Script_GetItemStatsField@Nampower@@YAIPAI@Z$2 10096b50 f item_scripts.cpp.obj + 0001:00095b50 __unwindfunclet$?Script_GetUnitField@Nampower@@YAIPAI@Z$2 10096b50 f misc_scripts.cpp.obj + 0001:00095b50 __unwindfunclet$?Script_GetSpellRecField@Nampower@@YAIPAI@Z$2 10096b50 f spell_scripts.cpp.obj + 0001:00095b5d __ehhandler$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 10096b5d f item_scripts.cpp.obj + 0001:00095b5d __ehhandler$?Script_GetUnitField@Nampower@@YAIPAI@Z 10096b5d f misc_scripts.cpp.obj + 0001:00095b5d __ehhandler$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 10096b5d f spell_scripts.cpp.obj + 0001:00095b90 __unwindfunclet$?Script_LearnTalentRank@Nampower@@YAIPAI@Z$0 10096b90 f misc_scripts.cpp.obj + 0001:00095b9d __ehhandler$?Script_LearnTalentRank@Nampower@@YAIPAI@Z 10096b9d f misc_scripts.cpp.obj + 0001:00095bc0 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$0 10096bc0 f dbc_fields.cpp.obj + 0001:00095bc0 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$0 10096bc0 f misc_scripts.cpp.obj + 0001:00095bc8 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$1 10096bc8 f dbc_fields.cpp.obj + 0001:00095bc8 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$1 10096bc8 f misc_scripts.cpp.obj + 0001:00095bd0 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$2 10096bd0 f dbc_fields.cpp.obj + 0001:00095bd0 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$2 10096bd0 f misc_scripts.cpp.obj + 0001:00095bd8 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$3 10096bd8 f dbc_fields.cpp.obj + 0001:00095bd8 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$3 10096bd8 f misc_scripts.cpp.obj + 0001:00095be5 __ehhandler$?InitializeFieldMaps@Nampower@@YAXXZ 10096be5 f dbc_fields.cpp.obj + 0001:00095be5 __ehhandler$?Script_QueueScript@Nampower@@YAIPAI@Z 10096be5 f misc_scripts.cpp.obj + 0001:00095c10 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$0 10096c10 f misc_scripts.cpp.obj + 0001:00095c18 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$1 10096c18 f misc_scripts.cpp.obj + 0001:00095c20 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$3 10096c20 f misc_scripts.cpp.obj + 0001:00095c28 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$4 10096c28 f misc_scripts.cpp.obj + 0001:00095c30 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$2 10096c30 f misc_scripts.cpp.obj + 0001:00095c3d __ehhandler$?TryDisenchant@Nampower@@YA_NXZ 10096c3d f misc_scripts.cpp.obj + 0001:00095c70 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$4 10096c70 f file_scripts.cpp.obj + 0001:00095c7d __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 10096c7d f file_scripts.cpp.obj + 0001:00095ca0 __unwindfunclet$?BuildPath@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD0_N@Z$0 10096ca0 f file_scripts.cpp.obj + 0001:00095ca8 __unwindfunclet$?BuildPath@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD0_N@Z$1 10096ca8 f file_scripts.cpp.obj + 0001:00095cc6 __ehhandler$?BuildPath@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD0_N@Z 10096cc6 f file_scripts.cpp.obj + 0001:00095cf0 __unwindfunclet$?DecryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z$0 10096cf0 f file_scripts.cpp.obj + 0001:00095cf0 __unwindfunclet$?EncryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z$0 10096cf0 f file_scripts.cpp.obj + 0001:00095cfd __ehhandler$?DecryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 10096cfd f file_scripts.cpp.obj + 0001:00095cfd __ehhandler$?EncryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 10096cfd f file_scripts.cpp.obj + 0001:00095d20 __unwindfunclet$?GetEnvVar@Nampower@@YA_NPBDAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$0 10096d20 f file_scripts.cpp.obj + 0001:00095d2d __ehhandler$?GetEnvVar@Nampower@@YA_NPBDAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10096d2d f file_scripts.cpp.obj + 0001:00095d50 __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$0 10096d50 f file_scripts.cpp.obj + 0001:00095d58 __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$1 10096d58 f file_scripts.cpp.obj + 0001:00095d60 __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$2 10096d60 f file_scripts.cpp.obj + 0001:00095d68 __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$15 10096d68 f file_scripts.cpp.obj + 0001:00095d84 __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$16 10096d84 f file_scripts.cpp.obj + 0001:00095d8f __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$17 10096d8f f file_scripts.cpp.obj + 0001:00095d9a __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$3 10096d9a f file_scripts.cpp.obj + 0001:00095da5 __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$4 10096da5 f file_scripts.cpp.obj + 0001:00095db0 __unwindfunclet$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z$5 10096db0 f file_scripts.cpp.obj + 0001:00095dbd __ehhandler$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z 10096dbd f file_scripts.cpp.obj + 0001:00095df0 __unwindfunclet$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$0 10096df0 f file_scripts.cpp.obj + 0001:00095df8 __unwindfunclet$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$1 10096df8 f file_scripts.cpp.obj + 0001:00095e00 __unwindfunclet$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$2 10096e00 f file_scripts.cpp.obj + 0001:00095e0b __unwindfunclet$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$3 10096e0b f file_scripts.cpp.obj + 0001:00095e13 __unwindfunclet$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$4 10096e13 f file_scripts.cpp.obj + 0001:00095e20 __ehhandler$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10096e20 f file_scripts.cpp.obj + 0001:00095e50 __unwindfunclet$?Script_CustomFileExists@Nampower@@YAIPAI@Z$0 10096e50 f file_scripts.cpp.obj + 0001:00095e50 __unwindfunclet$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z$0 10096e50 f spell_scripts.cpp.obj + 0001:00095e50 __unwindfunclet$?Script_QueueSpellByName@Nampower@@YAIPAI@Z$0 10096e50 f spell_scripts.cpp.obj + 0001:00095e5d __ehhandler$?Script_CustomFileExists@Nampower@@YAIPAI@Z 10096e5d f file_scripts.cpp.obj + 0001:00095e5d __ehhandler$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 10096e5d f spell_scripts.cpp.obj + 0001:00095e5d __ehhandler$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 10096e5d f spell_scripts.cpp.obj + 0001:00095e90 __unwindfunclet$?Script_EncryptPassword@Nampower@@YAIPAI@Z$0 10096e90 f file_scripts.cpp.obj + 0001:00095e98 __unwindfunclet$?Script_EncryptPassword@Nampower@@YAIPAI@Z$1 10096e98 f file_scripts.cpp.obj + 0001:00095ea0 __unwindfunclet$?Script_EncryptPassword@Nampower@@YAIPAI@Z$2 10096ea0 f file_scripts.cpp.obj + 0001:00095ea8 __unwindfunclet$?Script_EncryptPassword@Nampower@@YAIPAI@Z$3 10096ea8 f file_scripts.cpp.obj + 0001:00095eb5 __ehhandler$?Script_EncryptPassword@Nampower@@YAIPAI@Z 10096eb5 f file_scripts.cpp.obj + 0001:00095ee0 __unwindfunclet$?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z$0 10096ee0 f file_scripts.cpp.obj + 0001:00095ee8 __unwindfunclet$?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z$1 10096ee8 f file_scripts.cpp.obj + 0001:00095ef0 __unwindfunclet$?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z$2 10096ef0 f file_scripts.cpp.obj + 0001:00095ef8 __unwindfunclet$?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z$3 10096ef8 f file_scripts.cpp.obj + 0001:00095f05 __ehhandler$?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z 10096f05 f file_scripts.cpp.obj + 0001:00095f30 __unwindfunclet$?Script_ExecuteCustomLuaFile@Nampower@@YAIPAI@Z$0 10096f30 f file_scripts.cpp.obj + 0001:00095f38 __unwindfunclet$?Script_ExecuteCustomLuaFile@Nampower@@YAIPAI@Z$1 10096f38 f file_scripts.cpp.obj + 0001:00095f40 __unwindfunclet$?Script_ExecuteCustomLuaFile@Nampower@@YAIPAI@Z$2 10096f40 f file_scripts.cpp.obj + 0001:00095f4d __ehhandler$?Script_ExecuteCustomLuaFile@Nampower@@YAIPAI@Z 10096f4d f file_scripts.cpp.obj + 0001:00095f80 __unwindfunclet$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z$0 10096f80 f file_scripts.cpp.obj + 0001:00095f88 __unwindfunclet$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z$1 10096f88 f file_scripts.cpp.obj + 0001:00095f90 __unwindfunclet$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z$2 10096f90 f file_scripts.cpp.obj + 0001:00095f98 __unwindfunclet$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z$12 10096f98 f file_scripts.cpp.obj + 0001:00095fb4 __unwindfunclet$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z$13 10096fb4 f file_scripts.cpp.obj + 0001:00095fbf __unwindfunclet$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z$14 10096fbf f file_scripts.cpp.obj + 0001:00095fca __unwindfunclet$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z$3 10096fca f file_scripts.cpp.obj + 0001:00095fda __ehhandler$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z 10096fda f file_scripts.cpp.obj + 0001:00096010 __unwindfunclet$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z$0 10097010 f spell_scripts.cpp.obj + 0001:00096018 __unwindfunclet$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z$1 10097018 f spell_scripts.cpp.obj + 0001:00096025 __ehhandler$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 10097025 f spell_scripts.cpp.obj + 0001:00096050 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$1 10097050 f spell_scripts.cpp.obj + 0001:00096058 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$4 10097058 f spell_scripts.cpp.obj + 0001:00096060 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$0 10097060 f spell_scripts.cpp.obj + 0001:0009606d __ehhandler$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 1009706d f spell_scripts.cpp.obj + 0001:000960a0 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$0 100970a0 f item_scripts.cpp.obj + 0001:000960a8 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$1 100970a8 f item_scripts.cpp.obj + 0001:000960b5 __ehhandler$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100970b5 f item_scripts.cpp.obj + 0001:000960e0 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$1 100970e0 f items.cpp.obj + 0001:000960e8 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$0 100970e8 f items.cpp.obj + 0001:000960f5 __ehhandler$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 100970f5 f items.cpp.obj + 0001:00096120 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10097120 f items.cpp.obj + 0001:00096128 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10097128 f items.cpp.obj + 0001:00096135 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10097135 f items.cpp.obj + 0001:00096160 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$1 10097160 f items.cpp.obj + 0001:00096168 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$0 10097168 f items.cpp.obj + 0001:00096175 __ehhandler$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 10097175 f items.cpp.obj + 0001:000961a0 __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$1 100971a0 f items.cpp.obj + 0001:000961aa __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$2 100971aa f items.cpp.obj + 0001:000961b9 __ehhandler$??__EitemNameToIdCache@Nampower@@YAXXZ 100971b9 f items.cpp.obj + 0001:000961e0 __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$1 100971e0 f items.cpp.obj + 0001:000961ea __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$2 100971ea f items.cpp.obj + 0001:000961f9 __ehhandler$??__EitemStatsCache@Nampower@@YAXXZ 100971f9 f items.cpp.obj + 0001:00096220 __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$1 10097220 f items.cpp.obj + 0001:0009622a __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$2 1009722a f items.cpp.obj + 0001:00096239 __ehhandler$??__EpendingItemIds@Nampower@@YAXXZ 10097239 f items.cpp.obj + 0001:00096260 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$0 10097260 f items.cpp.obj + 0001:00096268 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$1 10097268 f items.cpp.obj + 0001:00096270 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$2 10097270 f items.cpp.obj + 0001:00096278 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$3 10097278 f items.cpp.obj + 0001:00096280 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$4 10097280 f items.cpp.obj + 0001:00096288 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$5 10097288 f items.cpp.obj + 0001:00096295 __ehhandler$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 10097295 f items.cpp.obj + 0001:000962c0 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$0 100972c0 f items.cpp.obj + 0001:000962c8 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$1 100972c8 f items.cpp.obj + 0001:000962d5 __ehhandler$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 100972d5 f items.cpp.obj + 0001:00096300 __unwindfunclet$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z$0 10097300 f items.cpp.obj + 0001:0009631e __ehhandler$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 1009731e f items.cpp.obj + 0001:00096340 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$0 10097340 f unit_fields.cpp.obj + 0001:00096348 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$1 10097348 f unit_fields.cpp.obj + 0001:00096355 __ehhandler$?InitializeUnitFieldMaps@Nampower@@YAXXZ 10097355 f unit_fields.cpp.obj + 0001:00096380 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$0 10097380 f lua_refs.cpp.obj + 0001:00096388 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$1 10097388 f lua_refs.cpp.obj + 0001:00096395 __ehhandler$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 10097395 f lua_refs.cpp.obj + 0001:000963c0 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$0 100973c0 f pet.cpp.obj + 0001:000963c8 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$1 100973c8 f pet.cpp.obj + 0001:000963d0 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$2 100973d0 f pet.cpp.obj + 0001:000963d8 __unwindfunclet$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$17 100973d8 f pet.cpp.obj + 0001:000963e5 __ehhandler$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100973e5 f pet.cpp.obj + 0001:00096410 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$0 10097410 f pet.cpp.obj + 0001:00096418 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$1 10097418 f pet.cpp.obj + 0001:00096420 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$2 10097420 f pet.cpp.obj + 0001:00096428 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$3 10097428 f pet.cpp.obj + 0001:00096430 __unwindfunclet$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ$4 10097430 f pet.cpp.obj + 0001:0009643d __ehhandler$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 1009743d f pet.cpp.obj + 0001:00096470 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$0 10097470 f pet.cpp.obj + 0001:00096478 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$1 10097478 f pet.cpp.obj + 0001:00096480 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$21 10097480 f pet.cpp.obj + 0001:0009648b __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$2 1009748b f pet.cpp.obj + 0001:00096493 __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$3 10097493 f pet.cpp.obj + 0001:0009649b __unwindfunclet$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z$4 1009749b f pet.cpp.obj + 0001:000964a8 __ehhandler$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 100974a8 f pet.cpp.obj + 0001:000964e0 __unwindfunclet$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z$0 100974e0 f pet.cpp.obj + 0001:000964f0 __ehhandler$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100974f0 f pet.cpp.obj + 0001:00096510 __ehhandler$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 10097510 f libvcruntime:frame.obj + 0001:0009652d __unwindfunclet$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ$0 1009752d f libvcruntime:undname.obj + 0001:0009653a __ehhandler$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 1009753a f libvcruntime:undname.obj + 0001:00096557 __ehhandler$?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 10097557 f libucrt:write.obj + 0001:00096581 __ehhandler$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 10097581 f libucrt:exit.obj + 0001:0009659e __ehhandler$__execute_onexit_table 1009759e f libucrt:onexit.obj + 0001:000965bb __ehhandler$___dcrt_uninitialize_environments_nolock 100975bb f libucrt:environment_initialization.obj + 0001:000965d8 __ehhandler$?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 100975d8 f libucrt:mbstowcs.obj + 0001:000965f5 __unwindfunclet$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z$0 100975f5 f libcpmt:locale0.obj + 0001:00096602 __ehhandler$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 10097602 f libcpmt:locale0.obj + 0001:00096620 ??__FdebugLogFile@Nampower@@YAXXZ 10097620 f logging.cpp.obj + 0001:000966d0 ??__F?e@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 100976d0 f main.cpp.obj + 0001:00096710 ??__F?e@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 10097710 f main.cpp.obj + 0001:00096750 ??__Fep@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 10097750 f main.cpp.obj + 0001:00096790 ??__Fep@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 10097790 f main.cpp.obj + 0001:000967d0 ??__FgAttackRoundInfo_ReadPacketDetour@Nampower@@YAXXZ 100977d0 f main.cpp.obj + 0001:000967f0 ??__FgCGActionBar_UseActionDetour@Nampower@@YAXXZ 100977f0 f main.cpp.obj + 0001:00096810 ??__FgCGBuffBar_UpdateDurationDetour@Nampower@@YAXXZ 10097810 f main.cpp.obj + 0001:00096830 ??__FgCGGameUI_ShowCombatFeedbackDetour@Nampower@@YAXXZ 10097830 f main.cpp.obj + 0001:00096850 ??__FgCGPetInfo_GetPetSpellActionDetour@Nampower@@YAXXZ 10097850 f main.cpp.obj + 0001:00096870 ??__FgCGPetInfo_SetPetDetour@Nampower@@YAXXZ 10097870 f main.cpp.obj + 0001:00096890 ??__FgCGPlayer_C_OnAttackIconPressedDetour@Nampower@@YAXXZ 10097890 f main.cpp.obj + 0001:000968b0 ??__FgCGSpellBook_CastSpellDetour@Nampower@@YAXXZ 100978b0 f main.cpp.obj + 0001:000968d0 ??__FgCGUnit_C_OnAuraAddedDetour@Nampower@@YAXXZ 100978d0 f main.cpp.obj + 0001:000968f0 ??__FgCGUnit_C_OnAuraRemovedDetour@Nampower@@YAXXZ 100978f0 f main.cpp.obj + 0001:00096910 ??__FgCGUnit_C_OnAuraStacksChangedDetour@Nampower@@YAXXZ 10097910 f main.cpp.obj + 0001:00096930 ??__FgCGWorldFrame_OnLayerTrackTerrainDetour@Nampower@@YAXXZ 10097930 f main.cpp.obj + 0001:00096950 ??__FgCSimpleFrame_GetNameDetour@Nampower@@YAXXZ 10097950 f main.cpp.obj + 0001:00096970 ??__FgCSimpleTop_OnKeyDownDetour@Nampower@@YAXXZ 10097970 f main.cpp.obj + 0001:00096990 ??__FgCSimpleTop_OnKeyUpDetour@Nampower@@YAXXZ 10097990 f main.cpp.obj + 0001:000969b0 ??__FgCancelSpellDetour@Nampower@@YAXXZ 100979b0 f main.cpp.obj + 0001:000969d0 ??__FgCastDetour@Nampower@@YAXXZ 100979d0 f main.cpp.obj + 0001:000969f0 ??__FgCastHistory@Nampower@@YAXXZ 100979f0 f main.cpp.obj + 0001:00096a00 ??__FgCastResultHandlerDetour@Nampower@@YAXXZ 10097a00 f main.cpp.obj + 0001:00096a20 ??__FgCastSpellByNameDetour@Nampower@@YAXXZ 10097a20 f main.cpp.obj + 0001:00096a40 ??__FgCastbarPatch@Nampower@@YAXXZ 10097a40 f main.cpp.obj + 0001:00096b10 ??__FgCreateEventsDetour@Nampower@@YAXXZ 10097b10 f main.cpp.obj + 0001:00096b30 ??__FgGetGUIDFromNameDetour@Nampower@@YAXXZ 10097b30 f main.cpp.obj + 0001:00096b50 ??__FgGetSpellSlotFromLuaDetour@Nampower@@YAXXZ 10097b50 f main.cpp.obj + 0001:00096b70 ??__FgGlueLoadScriptFunctionsDetour@Nampower@@YAXXZ 10097b70 f main.cpp.obj + 0001:00096b90 ??__FgIEndSceneDetour@Nampower@@YAXXZ 10097b90 f main.cpp.obj + 0001:00096bb0 ??__FgInvalidFunctionPtrCheckDetour@Nampower@@YAXXZ 10097bb0 f main.cpp.obj + 0001:00096bd0 ??__FgLoadScriptFunctionsDetour@Nampower@@YAXXZ 10097bd0 f main.cpp.obj + 0001:00096bf0 ??__FgNonGcdCastQueue@Nampower@@YAXXZ 10097bf0 f main.cpp.obj + 0001:00096c00 ??__FgOnSpriteRightClickDetour@Nampower@@YAXXZ 10097c00 f main.cpp.obj + 0001:00096c20 ??__FgPeriodicAuraLogHandlerDetour@Nampower@@YAXXZ 10097c20 f main.cpp.obj + 0001:00096c40 ??__FgPlaySpellVisualHandlerDetour@Nampower@@YAXXZ 10097c40 f main.cpp.obj + 0001:00096c60 ??__FgProcResistHandlerDetour@Nampower@@YAXXZ 10097c60 f main.cpp.obj + 0001:00096c80 ??__FgSendCastDetour@Nampower@@YAXXZ 10097c80 f main.cpp.obj + 0001:00096ca0 ??__FgSendUnitSignalDetour@Nampower@@YAXXZ 10097ca0 f main.cpp.obj + 0001:00096cc0 ??__FgSetCVarDetour@Nampower@@YAXXZ 10097cc0 f main.cpp.obj + 0001:00096ce0 ??__FgSetEventCountDetour@Nampower@@YAXXZ 10097ce0 f main.cpp.obj + 0001:00096d00 ??__FgSignalEventDetour@Nampower@@YAXXZ 10097d00 f main.cpp.obj + 0001:00096d20 ??__FgSpellChannelStartHandlerDetour@Nampower@@YAXXZ 10097d20 f main.cpp.obj + 0001:00096d40 ??__FgSpellChannelUpdateHandlerDetour@Nampower@@YAXXZ 10097d40 f main.cpp.obj + 0001:00096d60 ??__FgSpellCooldownDetour@Nampower@@YAXXZ 10097d60 f main.cpp.obj + 0001:00096d80 ??__FgSpellDelayedDetour@Nampower@@YAXXZ 10097d80 f main.cpp.obj + 0001:00096da0 ??__FgSpellEnergizeLogHandlerDetour@Nampower@@YAXXZ 10097da0 f main.cpp.obj + 0001:00096dc0 ??__FgSpellFailedDetour@Nampower@@YAXXZ 10097dc0 f main.cpp.obj + 0001:00096de0 ??__FgSpellFailedOtherHandlerDetour@Nampower@@YAXXZ 10097de0 f main.cpp.obj + 0001:00096e00 ??__FgSpellGoDetour@Nampower@@YAXXZ 10097e00 f main.cpp.obj + 0001:00096e20 ??__FgSpellHealingLogHandlerDetour@Nampower@@YAXXZ 10097e20 f main.cpp.obj + 0001:00096e40 ??__FgSpellLogMissHandlerDetour@Nampower@@YAXXZ 10097e40 f main.cpp.obj + 0001:00096e60 ??__FgSpellNonMeleeDmgLogHandlerDetour@Nampower@@YAXXZ 10097e60 f main.cpp.obj + 0001:00096e80 ??__FgSpellOrDamageImmuneHandlerDetour@Nampower@@YAXXZ 10097e80 f main.cpp.obj + 0001:00096ea0 ??__FgSpellStartHandlerDetour@Nampower@@YAXXZ 10097ea0 f main.cpp.obj + 0001:00096ec0 ??__FgSpellStopCastingDetour@Nampower@@YAXXZ 10097ec0 f main.cpp.obj + 0001:00096ee0 ??__FgSpellTargetUnitDetour@Nampower@@YAXXZ 10097ee0 f main.cpp.obj + 0001:00096f00 ??__FgSpell_C_CooldownEventTriggeredDetour@Nampower@@YAXXZ 10097f00 f main.cpp.obj + 0001:00096f20 ??__FgSpell_C_GetAutoRepeatingSpellDetour@Nampower@@YAXXZ 10097f20 f main.cpp.obj + 0001:00096f40 ??__FgSpell_C_GetSpellModifiersDetour@Nampower@@YAXXZ 10097f40 f main.cpp.obj + 0001:00096f60 ??__FgSpell_C_GetSpellRadiusDetour@Nampower@@YAXXZ 10097f60 f main.cpp.obj + 0001:00096f80 ??__FgSpell_C_HandleSpriteClickDetour@Nampower@@YAXXZ 10097f80 f main.cpp.obj + 0001:00096fa0 ??__FgSpell_C_HandleTerrainClickDetour@Nampower@@YAXXZ 10097fa0 f main.cpp.obj + 0001:00096fc0 ??__FgSpell_C_TargetSpellDetour@Nampower@@YAXXZ 10097fc0 f main.cpp.obj + 0001:00096fe0 ??__FgSysMsgInitDetour@Nampower@@YAXXZ 10097fe0 f main.cpp.obj + 0001:00097000 ??__FgTogglePetSlotAutocastDetour@Nampower@@YAXXZ 10098000 f main.cpp.obj + 0001:00097020 ??__FgUnitCombatLogUnitDeadDetour@Nampower@@YAXXZ 10098020 f main.cpp.obj + 0001:00097040 ??__FspellIdToSlotCache@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@YAXXZ 10098040 f helper.cpp.obj + 0001:00097050 ??__FspellSlotCache@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@YAXXZ 10098050 f helper.cpp.obj + 0001:00097060 ??__FunitFieldsArrayFieldRefs@Nampower@@YAXXZ 10098060 f misc_scripts.cpp.obj + 0001:00097070 ??__FunitFieldsNestedArrayRefs@Nampower@@YAXXZ 10098070 f misc_scripts.cpp.obj + 0001:00097080 ??__FspellRecArrayFieldRefs@Nampower@@YAXXZ 10098080 f spell_scripts.cpp.obj + 0001:00097090 ??__FspellRecNestedArrayRefs@Nampower@@YAXXZ 10098090 f spell_scripts.cpp.obj + 0001:000970a0 ??__FitemStatsArrayFieldRefs@Nampower@@YAXXZ 100980a0 f item_scripts.cpp.obj + 0001:000970b0 ??__FitemStatsNestedArrayRefs@Nampower@@YAXXZ 100980b0 f item_scripts.cpp.obj + 0001:000970c0 ??__FitemNameToIdCache@Nampower@@YAXXZ 100980c0 f items.cpp.obj + 0001:000970d0 ??__FitemStatsCache@Nampower@@YAXXZ 100980d0 f items.cpp.obj + 0001:000970e0 ??__FpendingItemIds@Nampower@@YAXXZ 100980e0 f items.cpp.obj + 0001:000970f0 ??__FitemStatsArrayFieldMap@Nampower@@YAXXZ 100980f0 f dbc_fields.cpp.obj + 0001:00097100 ??__FitemStatsFieldMap@Nampower@@YAXXZ 10098100 f dbc_fields.cpp.obj + 0001:00097110 ??__FspellRecArrayFieldMap@Nampower@@YAXXZ 10098110 f dbc_fields.cpp.obj + 0001:00097120 ??__FspellRecFieldMap@Nampower@@YAXXZ 10098120 f dbc_fields.cpp.obj + 0001:00097130 ??__FunitFieldsArrayFieldMap@Nampower@@YAXXZ 10098130 f unit_fields.cpp.obj + 0001:00097140 ??__FunitFieldsFieldMap@Nampower@@YAXXZ 10098140 f unit_fields.cpp.obj + 0001:00097150 ??__FregisteredTableRefs@Nampower@@YAXXZ 10098150 f lua_refs.cpp.obj + 0001:000971ac ??__Finitlocks@std@@YAXXZ 100981ac f libcpmt:xlock.obj + 0001:000971b6 ??__F_Fac_tidy_reg@std@@YAXXZ 100981b6 f libcpmt:locale0.obj + 0001:000971c0 ??__Fclassic_locale@std@@YAXXZ 100981c0 f libcpmt:locale0.obj + 0001:000971ca ??__Finit_atexit@@YAXXZ 100981ca f libcpmt:iosptrs.obj + 0001:000971d4 ??__Finitlocks@std@@YAXXZ 100981d4 f libcpmt:iosptrs.obj + 0002:0000020c ?initlocks$initializer$@std@@3P6AXXZA 1009920c libcpmt:xlock.obj + 0002:00000210 ?initlocks$initializer$@std@@3P6AXXZA 10099210 libcpmt:iosptrs.obj + 0002:00000214 ?init_atexit$initializer$@@3P6AXXZA 10099214 libcpmt:iosptrs.obj + 0002:00000218 ?_Fac_tidy_reg$initializer$@std@@3P6AXXZA 10099218 libcpmt:locale0.obj + 0002:0000021c ?classic_locale$initializer$@std@@3P6AXXZA 1009921c libcpmt:locale0.obj + 0002:00000220 ?debugLogFile$initializer$@Nampower@@3P6AXXZA 10099220 logging.cpp.obj + 0002:00000224 ?gNonGcdCastQueue$initializer$@Nampower@@3P6AXXZA 10099224 main.cpp.obj + 0002:00000228 ?gCastHistory$initializer$@Nampower@@3P6AXXZA 10099228 main.cpp.obj + 0002:0000022c ?gSysMsgInitDetour$initializer$@Nampower@@3P6AXXZA 1009922c main.cpp.obj + 0002:00000230 ?gLoadScriptFunctionsDetour$initializer$@Nampower@@3P6AXXZA 10099230 main.cpp.obj + 0002:00000234 ?gCreateEventsDetour$initializer$@Nampower@@3P6AXXZA 10099234 main.cpp.obj + 0002:00000238 ?gSetEventCountDetour$initializer$@Nampower@@3P6AXXZA 10099238 main.cpp.obj + 0002:0000023c ?gSetCVarDetour$initializer$@Nampower@@3P6AXXZA 1009923c main.cpp.obj + 0002:00000240 ?gCGSpellBook_CastSpellDetour$initializer$@Nampower@@3P6AXXZA 10099240 main.cpp.obj + 0002:00000244 ?gCastDetour$initializer$@Nampower@@3P6AXXZA 10099244 main.cpp.obj + 0002:00000248 ?gSendCastDetour$initializer$@Nampower@@3P6AXXZA 10099248 main.cpp.obj + 0002:0000024c ?gCancelSpellDetour$initializer$@Nampower@@3P6AXXZA 1009924c main.cpp.obj + 0002:00000250 ?gSignalEventDetour$initializer$@Nampower@@3P6AXXZA 10099250 main.cpp.obj + 0002:00000254 ?gSpellFailedDetour$initializer$@Nampower@@3P6AXXZA 10099254 main.cpp.obj + 0002:00000258 ?gSpell_C_GetSpellModifiersDetour$initializer$@Nampower@@3P6AXXZA 10099258 main.cpp.obj + 0002:0000025c ?gSpell_C_GetSpellRadiusDetour$initializer$@Nampower@@3P6AXXZA 1009925c main.cpp.obj + 0002:00000260 ?gCastbarPatch$initializer$@Nampower@@3P6AXXZA 10099260 main.cpp.obj + 0002:00000264 ?gIEndSceneDetour$initializer$@Nampower@@3P6AXXZA 10099264 main.cpp.obj + 0002:00000268 ?gSpell_C_GetAutoRepeatingSpellDetour$initializer$@Nampower@@3P6AXXZA 10099268 main.cpp.obj + 0002:0000026c ?gSpell_C_CooldownEventTriggeredDetour$initializer$@Nampower@@3P6AXXZA 1009926c main.cpp.obj + 0002:00000270 ?gSpellGoDetour$initializer$@Nampower@@3P6AXXZA 10099270 main.cpp.obj + 0002:00000274 ?gSpellTargetUnitDetour$initializer$@Nampower@@3P6AXXZA 10099274 main.cpp.obj + 0002:00000278 ?gSpellStopCastingDetour$initializer$@Nampower@@3P6AXXZA 10099278 main.cpp.obj + 0002:0000027c ?gOnSpriteRightClickDetour$initializer$@Nampower@@3P6AXXZA 1009927c main.cpp.obj + 0002:00000280 ?gSpell_C_HandleSpriteClickDetour$initializer$@Nampower@@3P6AXXZA 10099280 main.cpp.obj + 0002:00000284 ?gSpell_C_HandleTerrainClickDetour$initializer$@Nampower@@3P6AXXZA 10099284 main.cpp.obj + 0002:00000288 ?gCGWorldFrame_OnLayerTrackTerrainDetour$initializer$@Nampower@@3P6AXXZA 10099288 main.cpp.obj + 0002:0000028c ?gSpell_C_TargetSpellDetour$initializer$@Nampower@@3P6AXXZA 1009928c main.cpp.obj + 0002:00000290 ?gSpellCooldownDetour$initializer$@Nampower@@3P6AXXZA 10099290 main.cpp.obj + 0002:00000294 ?gSpellDelayedDetour$initializer$@Nampower@@3P6AXXZA 10099294 main.cpp.obj + 0002:00000298 ?gCastResultHandlerDetour$initializer$@Nampower@@3P6AXXZA 10099298 main.cpp.obj + 0002:0000029c ?gSpellFailedOtherHandlerDetour$initializer$@Nampower@@3P6AXXZA 1009929c main.cpp.obj + 0002:000002a0 ?gSpellChannelStartHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992a0 main.cpp.obj + 0002:000002a4 ?gSpellChannelUpdateHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992a4 main.cpp.obj + 0002:000002a8 ?gPlaySpellVisualHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992a8 main.cpp.obj + 0002:000002ac ?gSpellHealingLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992ac main.cpp.obj + 0002:000002b0 ?gSpellEnergizeLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992b0 main.cpp.obj + 0002:000002b4 ?gProcResistHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992b4 main.cpp.obj + 0002:000002b8 ?gSpellLogMissHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992b8 main.cpp.obj + 0002:000002bc ?gSpellOrDamageImmuneHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992bc main.cpp.obj + 0002:000002c0 ?gSpellStartHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992c0 main.cpp.obj + 0002:000002c4 ?gPeriodicAuraLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992c4 main.cpp.obj + 0002:000002c8 ?gSpellNonMeleeDmgLogHandlerDetour$initializer$@Nampower@@3P6AXXZA 100992c8 main.cpp.obj + 0002:000002cc ?gCGPlayer_C_OnAttackIconPressedDetour$initializer$@Nampower@@3P6AXXZA 100992cc main.cpp.obj + 0002:000002d0 ?gAttackRoundInfo_ReadPacketDetour$initializer$@Nampower@@3P6AXXZA 100992d0 main.cpp.obj + 0002:000002d4 ?gCGActionBar_UseActionDetour$initializer$@Nampower@@3P6AXXZA 100992d4 main.cpp.obj + 0002:000002d8 ?gCGUnit_C_OnAuraRemovedDetour$initializer$@Nampower@@3P6AXXZA 100992d8 main.cpp.obj + 0002:000002dc ?gCGUnit_C_OnAuraAddedDetour$initializer$@Nampower@@3P6AXXZA 100992dc main.cpp.obj + 0002:000002e0 ?gCGUnit_C_OnAuraStacksChangedDetour$initializer$@Nampower@@3P6AXXZA 100992e0 main.cpp.obj + 0002:000002e4 ?gUnitCombatLogUnitDeadDetour$initializer$@Nampower@@3P6AXXZA 100992e4 main.cpp.obj + 0002:000002e8 ?gCGBuffBar_UpdateDurationDetour$initializer$@Nampower@@3P6AXXZA 100992e8 main.cpp.obj + 0002:000002ec ?gInvalidFunctionPtrCheckDetour$initializer$@Nampower@@3P6AXXZA 100992ec main.cpp.obj + 0002:000002f0 ?gGetSpellSlotFromLuaDetour$initializer$@Nampower@@3P6AXXZA 100992f0 main.cpp.obj + 0002:000002f4 ?gCSimpleFrame_GetNameDetour$initializer$@Nampower@@3P6AXXZA 100992f4 main.cpp.obj + 0002:000002f8 ?gCSimpleTop_OnKeyDownDetour$initializer$@Nampower@@3P6AXXZA 100992f8 main.cpp.obj + 0002:000002fc ?gCSimpleTop_OnKeyUpDetour$initializer$@Nampower@@3P6AXXZA 100992fc main.cpp.obj + 0002:00000300 ?gGetGUIDFromNameDetour$initializer$@Nampower@@3P6AXXZA 10099300 main.cpp.obj + 0002:00000304 ?gCastSpellByNameDetour$initializer$@Nampower@@3P6AXXZA 10099304 main.cpp.obj + 0002:00000308 ?gSendUnitSignalDetour$initializer$@Nampower@@3P6AXXZA 10099308 main.cpp.obj + 0002:0000030c ?gCGPetInfo_SetPetDetour$initializer$@Nampower@@3P6AXXZA 1009930c main.cpp.obj + 0002:00000310 ?gTogglePetSlotAutocastDetour$initializer$@Nampower@@3P6AXXZA 10099310 main.cpp.obj + 0002:00000314 ?gCGPetInfo_GetPetSpellActionDetour$initializer$@Nampower@@3P6AXXZA 10099314 main.cpp.obj + 0002:00000318 ?gCGGameUI_ShowCombatFeedbackDetour$initializer$@Nampower@@3P6AXXZA 10099318 main.cpp.obj + 0002:0000031c ?gGlueLoadScriptFunctionsDetour$initializer$@Nampower@@3P6AXXZA 1009931c main.cpp.obj + 0002:00000320 ??e$initializer$@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2P6AXXZA@@3P6AXXZA 10099320 main.cpp.obj + 0002:00000324 ??e$initializer$@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2P6AXXZA@@3P6AXXZA 10099324 main.cpp.obj + 0002:00000328 ?unitFieldsArrayFieldRefs$initializer$@Nampower@@3P6AXXZA 10099328 misc_scripts.cpp.obj + 0002:0000032c ?unitFieldsNestedArrayRefs$initializer$@Nampower@@3P6AXXZA 1009932c misc_scripts.cpp.obj + 0002:00000330 ?spellRecArrayFieldRefs$initializer$@Nampower@@3P6AXXZA 10099330 spell_scripts.cpp.obj + 0002:00000334 ?spellRecNestedArrayRefs$initializer$@Nampower@@3P6AXXZA 10099334 spell_scripts.cpp.obj + 0002:00000338 ?itemStatsArrayFieldRefs$initializer$@Nampower@@3P6AXXZA 10099338 item_scripts.cpp.obj + 0002:0000033c ?itemStatsNestedArrayRefs$initializer$@Nampower@@3P6AXXZA 1009933c item_scripts.cpp.obj + 0002:00000340 ?bagItemDataCache$initializer$@Nampower@@3P6AXXZA 10099340 items.cpp.obj + 0002:00000344 ?equippedItemDataCache$initializer$@Nampower@@3P6AXXZA 10099344 items.cpp.obj + 0002:00000348 ?itemStatsCache$initializer$@Nampower@@3P6AXXZA 10099348 items.cpp.obj + 0002:0000034c ?itemNameToIdCache$initializer$@Nampower@@3P6AXXZA 1009934c items.cpp.obj + 0002:00000350 ?pendingItemIds$initializer$@Nampower@@3P6AXXZA 10099350 items.cpp.obj + 0002:00000354 ?itemStatsFieldMap$initializer$@Nampower@@3P6AXXZA 10099354 dbc_fields.cpp.obj + 0002:00000358 ?itemStatsArrayFieldMap$initializer$@Nampower@@3P6AXXZA 10099358 dbc_fields.cpp.obj + 0002:0000035c ?spellRecFieldMap$initializer$@Nampower@@3P6AXXZA 1009935c dbc_fields.cpp.obj + 0002:00000360 ?spellRecArrayFieldMap$initializer$@Nampower@@3P6AXXZA 10099360 dbc_fields.cpp.obj + 0002:00000364 ?unitFieldsFieldMap$initializer$@Nampower@@3P6AXXZA 10099364 unit_fields.cpp.obj + 0002:00000368 ?unitFieldsArrayFieldMap$initializer$@Nampower@@3P6AXXZA 10099368 unit_fields.cpp.obj + 0002:0000036c ?registeredTableRefs$initializer$@Nampower@@3P6AXXZA 1009936c lua_refs.cpp.obj + 0002:00000388 ?pinit@@3P6AHXZA 10099388 libcpmt:winapisupp.obj + 0002:000003c0 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100993c0 logging.cpp.obj + 0002:00000640 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 10099640 cdatastore.cpp.obj + 0002:00000641 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 10099641 game.cpp.obj + 0002:00000642 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 10099642 main.cpp.obj + 0002:00000643 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 10099643 main.cpp.obj + 0002:00008063 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a1063 helper.cpp.obj + 0002:00008064 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a1064 helper.cpp.obj + 0002:000080d0 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a10d0 spellcast.cpp.obj + 0002:000080d1 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a10d1 spellcast.cpp.obj + 0002:0000888a ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a188a spellchannel.cpp.obj + 0002:0000888b ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a188b spellchannel.cpp.obj + 0002:000089dc ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a19dc spellevents.cpp.obj + 0002:000089dd ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a19dd spellevents.cpp.obj + 0002:00008dd2 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a1dd2 misc_scripts.cpp.obj + 0002:00008dd3 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a1dd3 misc_scripts.cpp.obj + 0002:00009868 ?kEncryptedPasswordPrefix@Nampower@@3QBDB 100a2868 file_scripts.cpp.obj + 0002:0000986c ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a286c file_scripts.cpp.obj + 0002:0000986d ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a286d file_scripts.cpp.obj + 0002:00009dbd ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a2dbd spell_scripts.cpp.obj + 0002:00009dbe ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a2dbe spell_scripts.cpp.obj + 0002:0000a4a8 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a34a8 cooldown_scripts.cpp.obj + 0002:0000a4a9 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a34a9 cooldown_scripts.cpp.obj + 0002:0000a561 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a3561 item_scripts.cpp.obj + 0002:0000a562 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a3562 item_scripts.cpp.obj + 0002:0000aa00 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a3a00 items.cpp.obj + 0002:0000aa01 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a3a01 items.cpp.obj + 0002:0000acdc ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a3cdc dbc_fields.cpp.obj + 0002:0000acdd ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a3cdd dbc_fields.cpp.obj + 0002:0000bcc4 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a4cc4 unit_fields.cpp.obj + 0002:0000bcc5 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a4cc5 unit_fields.cpp.obj + 0002:0000c07c ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a507c auras.cpp.obj + 0002:0000c07d ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a507d auras.cpp.obj + 0002:0000c07e ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a507e lua_refs.cpp.obj + 0002:0000c07f ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a507f lua_refs.cpp.obj + 0002:0000c0a2 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a50a2 autoattack.cpp.obj + 0002:0000c0a3 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a50a3 autoattack.cpp.obj + 0002:0000c0a4 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a50a4 player_scripts.cpp.obj + 0002:0000c0a5 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a50a5 player_scripts.cpp.obj + 0002:0000c0a6 ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a50a6 pet.cpp.obj + 0002:0000c0a7 ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a50a7 pet.cpp.obj + 0002:0000c1e8 ?UNIT_PLAYER@Nampower@@3QBDB 100a51e8 unit.cpp.obj + 0002:0000c1ec ?UNIT_PET@Nampower@@3QBDB 100a51ec unit.cpp.obj + 0002:0000c1f0 ?UNIT_TARGET@Nampower@@3QBDB 100a51f0 unit.cpp.obj + 0002:0000c1f4 ?UNIT_NPC@Nampower@@3QBDB 100a51f4 unit.cpp.obj + 0002:0000c1f8 ?UNIT_MOUSEOVER@Nampower@@3QBDB 100a51f8 unit.cpp.obj + 0002:0000c1fc ?UNIT_PARTY@Nampower@@3QBQBDB 100a51fc unit.cpp.obj + 0002:0000c20c ?UNIT_PARTYPET@Nampower@@3QBQBDB 100a520c unit.cpp.obj + 0002:0000c21c ?piecewise_construct@std@@3Upiecewise_construct_t@1@B 100a521c unit.cpp.obj + 0002:0000c21d ?_Fake_alloc@std@@3U_Fake_allocator@1@B 100a521d unit.cpp.obj + 0002:0000c220 ?UNIT_RAID@Nampower@@3QBQBDB 100a5220 unit.cpp.obj + 0002:0000c2c0 ?UNIT_RAIDPET@Nampower@@3QBQBDB 100a52c0 unit.cpp.obj + 0002:0000c6e0 ?kGuidFormat@?1??FireUnitGuidEvent@Nampower@@YAXABUUnitNames@2@I@Z@4QBDB 100a56e0 unit.cpp.obj + 0002:0000c6f0 ?kCombatGuidFormat@?CO@??CGGameUI_ShowCombatFeedbackHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@4QBDB 100a56f0 unit.cpp.obj + 0002:0000c7e0 ?tokenTable@@3QBUStringLiteral@@B 100a57e0 libvcruntime:undname.obj + 0002:0000c868 ?nameTable@@3QBUStringLiteral@@B 100a5868 libvcruntime:undname.obj + 0002:0000cb00 ?rttiTable@@3QBUStringLiteral@@B 100a5b00 libvcruntime:undname.obj + 0002:0000cb28 ?IndirectionName@@3QBUStringLiteral@@B 100a5b28 libvcruntime:undname.obj + 0002:0000cb58 ?PrefixName@@3QBUStringLiteral@@B 100a5b58 libvcruntime:undname.obj + 0002:0000d638 ?result@?1??IsValidIdentChar@@YA_ND@Z@4U@?1??InitValidIdentChar@@YA@XZ@B 100a6638 libvcruntime:undname.obj + 0002:0000d770 ?module_names@?A0x14174aea@@3QBQB_WB 100a6770 libvcruntime:winapi_downlevel.obj + 0002:0000d818 ?candidate_modules@?1??try_get_FlsAlloc@@YAP6GKP6GXPAX@Z@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a6818 libvcruntime:winapi_downlevel.obj + 0002:0000d82c ?candidate_modules@?1??try_get_FlsFree@@YAP6GHK@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a682c libvcruntime:winapi_downlevel.obj + 0002:0000d83c ?candidate_modules@?1??try_get_FlsGetValue@@YAP6GPAXK@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a683c libvcruntime:winapi_downlevel.obj + 0002:0000d850 ?candidate_modules@?1??try_get_FlsSetValue@@YAP6GHKPAX@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a6850 libvcruntime:winapi_downlevel.obj + 0002:0000d864 ?candidate_modules@?1??try_get_InitializeCriticalSectionEx@@YAP6GHPAU_RTL_CRITICAL_SECTION@@KK@ZXZ@4QBW4module_id@?A0x14174aea@@B 100a6864 libvcruntime:winapi_downlevel.obj + 0002:0000da98 ?errtable@@3QBUerrentry@?A0x31fdb9ec@@B 100a6a98 libucrt:errno.obj + 0002:0000e760 _One 100a7760 libucrt:ceil_pentium4.obj + 0002:0000e770 _Bns 100a7770 libucrt:ceil_pentium4.obj + 0002:0000e780 _Zero 100a7780 libucrt:ceil_pentium4.obj + 0002:0000e790 _S 100a7790 libucrt:ceil_pentium4.obj + 0002:0000e7a0 _NegZero 100a77a0 libucrt:ceil_pentium4.obj + 0002:0000e7a8 __first_127char 100a77a8 libucrt:wsetlocale.obj + 0002:0000ede8 ?module_names@?A0x391cf84c@@3QBQB_WB 100a7de8 libucrt:winapi_thunks.obj + 0002:0000f2f4 ?candidate_modules@?1??try_get_AreFileApisANSI@@YAP6GHXZXZ@4QBW4module_id@?A0x391cf84c@@B 100a82f4 libucrt:winapi_thunks.obj + 0002:0000f308 ?candidate_modules@?1??try_get_CompareStringEx@@YAP6GHPB_WK0H0HPAU_nlsversioninfo@@PAXJ@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8308 libucrt:winapi_thunks.obj + 0002:0000f320 ?candidate_modules@?1??try_get_EnumSystemLocalesEx@@YAP6GHP6GHPA_WKJ@ZKJPAX@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8320 libucrt:winapi_thunks.obj + 0002:0000f33c ?candidate_modules@?1??try_get_GetDateFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH0@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a833c libucrt:winapi_thunks.obj + 0002:0000f364 ?candidate_modules@?1??try_get_GetLocaleInfoEx@@YAP6GHPB_WKPA_WH@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8364 libucrt:winapi_thunks.obj + 0002:0000f39c ?candidate_modules@?1??try_get_GetTimeFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a839c libucrt:winapi_thunks.obj + 0002:0000f3b4 ?candidate_modules@?1??try_get_GetUserDefaultLocaleName@@YAP6GHPA_WH@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a83b4 libucrt:winapi_thunks.obj + 0002:0000f3d8 ?candidate_modules@?1??try_get_InitializeCriticalSectionEx@@YAP6GHPAU_RTL_CRITICAL_SECTION@@KK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a83d8 libucrt:winapi_thunks.obj + 0002:0000f3e0 ?candidate_modules@?1??try_get_IsValidLocaleName@@YAP6GHPB_W@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a83e0 libucrt:winapi_thunks.obj + 0002:0000f3fc ?candidate_modules@?1??try_get_LCMapStringEx@@YAP6GHPB_WK0HPA_WHPAU_nlsversioninfo@@PAXJ@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a83fc libucrt:winapi_thunks.obj + 0002:0000f414 ?candidate_modules@?1??try_get_LCIDToLocaleName@@YAP6GHKPA_WHK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8414 libucrt:winapi_thunks.obj + 0002:0000f430 ?candidate_modules@?1??try_get_LocaleNameToLCID@@YAP6GKPB_WK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8430 libucrt:winapi_thunks.obj + 0002:0000f44c ?candidate_modules@?1??try_get_AppPolicyGetProcessTerminationMethod@@YAP6GJPAXPAW4AppPolicyProcessTerminationMethod@@@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a844c libucrt:winapi_thunks.obj + 0002:0000f478 ?candidate_modules@?1??try_get_FlsAlloc@@YAP6GKP6GXPAX@Z@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8478 libucrt:winapi_thunks.obj + 0002:0000f480 ?candidate_modules@?1??try_get_FlsFree@@YAP6GHK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8480 libucrt:winapi_thunks.obj + 0002:0000f488 ?candidate_modules@?1??try_get_FlsGetValue@@YAP6GPAXK@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8488 libucrt:winapi_thunks.obj + 0002:0000f490 ?candidate_modules@?1??try_get_FlsSetValue@@YAP6GHKPAX@ZXZ@4QBW4module_id@?A0x391cf84c@@B 100a8490 libucrt:winapi_thunks.obj + 0002:0000f498 ?strings@?1??fp_format_nan_or_infinity@@YAHW4__acrt_fp_class@@_NPADI1@Z@4QAY03QBDA 100a8498 libucrt:cvt.obj + 0002:0000f520 ?_names@?1??_get_fname@@9@4QBU@?1??1@YAPADI@Z@B 100a8520 libucrt:fpexcept.obj + 0002:0000f6e8 _over 100a86e8 libucrt:fpctrl.obj + 0002:0000f6f4 _under 100a86f4 libucrt:fpctrl.obj + 0002:0000ff60 ?_mb_locale_names@@3QBQB_WB 100a8f60 libucrt:mbctype.obj + 0002:00010e10 ?LcidToLocaleNameTable@?A0x881e4c05@@3QBULcidToLocaleName@1@B 100a9e10 libucrt:lcidtoname_downlevel.obj + 0002:00011f30 ?LocaleNameToIndexTable@?A0x881e4c05@@3QBULocaleNameIndex@1@B 100aaf30 libucrt:lcidtoname_downlevel.obj + 0002:00012f10 One 100abf10 libucrt:common.obj + 0002:00012f24 DblMax 100abf24 libucrt:common.obj + 0002:00012f2c DblMin 100abf2c libucrt:common.obj + 0002:00012f34 IeeeAdjO 100abf34 libucrt:common.obj + 0002:00012f3c IeeeAdjU 100abf3c libucrt:common.obj + 0002:00012f44 _infinity 100abf44 libucrt:common.obj + 0002:00012f4c _zero 100abf4c libucrt:common.obj + 0002:00012f60 _NAME_ 100abf60 libucrt:sqrt_impl.obj + 0002:00012f80 LOG_name 100abf80 libucrt:log10_impl.obj + 0002:00012fae One 100abfae libucrt:87disp.obj + 0002:00012fb6 Three 100abfb6 libucrt:87disp.obj + 0002:00012fbe XAMtoTagTab 100abfbe libucrt:87disp.obj + 0002:00012fd0 emask 100abfd0 libucrt:log10_pentium4.obj + 0002:00012fe0 CC 100abfe0 libucrt:log10_pentium4.obj + 0002:00012ff0 Magic 100abff0 libucrt:log10_pentium4.obj + 0002:00013000 hi_mask 100ac000 libucrt:log10_pentium4.obj + 0002:00013010 LOG10_2 100ac010 libucrt:log10_pentium4.obj + 0002:00013020 place_L 100ac020 libucrt:log10_pentium4.obj + 0002:00013040 One 100ac040 libucrt:log10_pentium4.obj + 0002:00013050 Zero 100ac050 libucrt:log10_pentium4.obj + 0002:00013060 Two52 100ac060 libucrt:log10_pentium4.obj + 0002:00013070 Infs 100ac070 libucrt:log10_pentium4.obj + 0002:00013080 NaN 100ac080 libucrt:log10_pentium4.obj + 0002:00013090 coeff 100ac090 libucrt:log10_pentium4.obj + 0002:000130ee _log2max 100ac0ee libucrt:87tran.obj + 0002:000130f8 _smallarg 100ac0f8 libucrt:87tran.obj + 0002:00013102 _half 100ac102 libucrt:87tran.obj + 0002:000139a8 ?_Win_errtab@?A0xdad2e229@@3QBU_Win_errtab_t@1@B 100ac9a8 libcpmt:syserror.obj + 0002:00013c48 ?_Sys_errtab@?A0xdad2e229@@3QBU_Sys_errtab_t@1@B 100acc48 libcpmt:syserror.obj + 0002:00014518 ?mods@?1??_Xfsopen@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z@4QBQBDB 100ad518 libcpmt:fiopen.obj + 0002:000145b0 ?_Whitespace_bitmap@?A0xfa98056f@@3U_Whitespace_bitmap_t@1@B 100ad5b0 libcpmt:syserror_import_lib.obj + 0002:000146e0 _digits 100ad6e0 libcpmt:xstoul.obj + 0002:00014708 _ndigs 100ad708 libcpmt:xstoul.obj + 0002:00014730 _digits 100ad730 libcpmt:xstoull.obj + 0002:00014758 _ndigs 100ad758 libcpmt:xstoull.obj + 0002:00014790 _bias_low 100ad790 LIBCMT:ftol3.obj + 0002:000147a0 _bias_high 100ad7a0 LIBCMT:ftol3.obj + 0002:000147b0 _DP2to32 100ad7b0 LIBCMT:ftol3.obj + 0002:000147b8 _NaN 100ad7b8 LIBCMT:ftol3.obj + 0002:000147bc _onept5 100ad7bc LIBCMT:ftol3.obj + 0002:000147c4 _GS_ExceptionPointers 100ad7c4 LIBCMT:gs_report.obj + 0002:000147d0 two32 100ad7d0 LIBCMT:ftol2.obj + 0002:000147d4 two63 100ad7d4 LIBCMT:ftol2.obj + 0002:000147d8 _NaN 100ad7d8 LIBCMT:ftol2.obj + 0002:000147f0 ___acrt_initializers 100ad7f0 libucrt:initialization.obj + 0002:00017668 _ud_itab__16 100b0668 udis86:itab.obj + 0002:00017678 _ud_itab__32 100b0678 udis86:itab.obj + 0002:00017680 _ud_itab__330 100b0680 udis86:itab.obj + 0002:00017688 _ud_itab__157 100b0688 udis86:itab.obj + 0002:00017690 _ud_itab__208 100b0690 udis86:itab.obj + 0002:000176a0 _ud_itab__78 100b06a0 udis86:itab.obj + 0002:000176a8 _ud_itab__103 100b06a8 udis86:itab.obj + 0002:000176b0 _ud_itab__200 100b06b0 udis86:itab.obj + 0002:000176b8 _ud_itab__44 100b06b8 udis86:itab.obj + 0002:000176c0 _ud_itab__242 100b06c0 udis86:itab.obj + 0002:000176c8 _ud_itab__87 100b06c8 udis86:itab.obj + 0002:000176d0 _ud_itab__297 100b06d0 udis86:itab.obj + 0002:000176d4 _ud_itab__308 100b06d4 udis86:itab.obj + 0002:000176d8 _ud_itab__107 100b06d8 udis86:itab.obj + 0002:000176e0 _ud_itab__398 100b06e0 udis86:itab.obj + 0002:000176e4 _ud_itab__216 100b06e4 udis86:itab.obj + 0002:000176f4 _ud_itab__350 100b06f4 udis86:itab.obj + 0002:000176f8 _ud_itab__401 100b06f8 udis86:itab.obj + 0002:000176fc _ud_itab__133 100b06fc udis86:itab.obj + 0002:00017704 _ud_itab__413 100b0704 udis86:itab.obj + 0002:00017708 _ud_itab__361 100b0708 udis86:itab.obj + 0002:0001770c _ud_itab__203 100b070c udis86:itab.obj + 0002:0001771c _ud_itab__282 100b071c udis86:itab.obj + 0002:00017724 _ud_itab__61 100b0724 udis86:itab.obj + 0002:0001772c _ud_itab__186 100b072c udis86:itab.obj + 0002:0001773c _ud_itab__429 100b073c udis86:itab.obj + 0002:0001774c _ud_itab__363 100b074c udis86:itab.obj + 0002:00017750 _ud_itab__271 100b0750 udis86:itab.obj + 0002:00017758 _ud_itab__5 100b0758 udis86:itab.obj + 0002:00017768 _ud_itab__14 100b0768 udis86:itab.obj + 0002:00017778 _ud_itab__121 100b0778 udis86:itab.obj + 0002:00017780 _ud_itab__34 100b0780 udis86:itab.obj + 0002:00017788 _ud_itab__147 100b0788 udis86:itab.obj + 0002:00017790 _ud_itab__115 100b0790 udis86:itab.obj + 0002:00017798 _ud_itab__346 100b0798 udis86:itab.obj + 0002:0001779c _ud_itab__213 100b079c udis86:itab.obj + 0002:000177ac _ud_itab__143 100b07ac udis86:itab.obj + 0002:000177b4 _ud_itab__19 100b07b4 udis86:itab.obj + 0002:000177bc _ud_itab__12 100b07bc udis86:itab.obj + 0002:000177c4 _ud_itab__267 100b07c4 udis86:itab.obj + 0002:000177cc _ud_itab__97 100b07cc udis86:itab.obj + 0002:000177d4 _ud_itab__84 100b07d4 udis86:itab.obj + 0002:000177dc _ud_itab__150 100b07dc udis86:itab.obj + 0002:000177e4 _ud_itab__249 100b07e4 udis86:itab.obj + 0002:000177ec _ud_itab__137 100b07ec udis86:itab.obj + 0002:000177f8 _ud_itab__116 100b07f8 udis86:itab.obj + 0002:000179f8 _ud_itab__247 100b09f8 udis86:itab.obj + 0002:00017a00 _ud_itab__421 100b0a00 udis86:itab.obj + 0002:00017a80 _ud_itab__349 100b0a80 udis86:itab.obj + 0002:00017a90 _ud_itab__327 100b0a90 udis86:itab.obj + 0002:00017a98 _ud_itab__420 100b0a98 udis86:itab.obj + 0002:00017aa8 _ud_itab__156 100b0aa8 udis86:itab.obj + 0002:00017ab0 _ud_itab__290 100b0ab0 udis86:itab.obj + 0002:00017ab4 _ud_itab__302 100b0ab4 udis86:itab.obj + 0002:00017ac4 _ud_itab__402 100b0ac4 udis86:itab.obj + 0002:00017ac8 _ud_itab__73 100b0ac8 udis86:itab.obj + 0002:00017ad0 _ud_itab__220 100b0ad0 udis86:itab.obj + 0002:00017ae0 _ud_itab__118 100b0ae0 udis86:itab.obj + 0002:00017ae8 _ud_itab__384 100b0ae8 udis86:itab.obj + 0002:00017aec _ud_itab__347 100b0aec udis86:itab.obj + 0002:00017afc _ud_itab__366 100b0afc udis86:itab.obj + 0002:00017b00 _ud_itab__311 100b0b00 udis86:itab.obj + 0002:00017b04 _ud_itab__244 100b0b04 udis86:itab.obj + 0002:00017b0c _ud_itab__270 100b0b0c udis86:itab.obj + 0002:00017b14 _ud_itab__446 100b0b14 udis86:itab.obj + 0002:00017b18 _ud_itab__176 100b0b18 udis86:itab.obj + 0002:00017b20 _ud_itab__445 100b0b20 udis86:itab.obj + 0002:00017b30 _ud_itab__353 100b0b30 udis86:itab.obj + 0002:00017b34 _ud_itab__234 100b0b34 udis86:itab.obj + 0002:00017b3c _ud_itab__390 100b0b3c udis86:itab.obj + 0002:00017b40 _ud_itab__68 100b0b40 udis86:itab.obj + 0002:00017b48 _ud_itab__90 100b0b48 udis86:itab.obj + 0002:00017b50 _ud_itab__300 100b0b50 udis86:itab.obj + 0002:00017b58 _ud_itab__141 100b0b58 udis86:itab.obj + 0002:00017b60 _ud_itab__37 100b0b60 udis86:itab.obj + 0002:00017b64 _ud_itab__298 100b0b64 udis86:itab.obj + 0002:00017b68 _ud_itab__356 100b0b68 udis86:itab.obj + 0002:00017b6c _ud_itab__320 100b0b6c udis86:itab.obj + 0002:00017b70 _ud_itab__212 100b0b70 udis86:itab.obj + 0002:00017b80 _ud_itab__439 100b0b80 udis86:itab.obj + 0002:00017c00 _ud_itab__94 100b0c00 udis86:itab.obj + 0002:00017c08 _ud_itab__310 100b0c08 udis86:itab.obj + 0002:00017c0c _ud_itab__56 100b0c0c udis86:itab.obj + 0002:00017c10 _ud_itab__428 100b0c10 udis86:itab.obj + 0002:00017c18 _ud_itab__418 100b0c18 udis86:itab.obj + 0002:00017c98 _ud_itab__171 100b0c98 udis86:itab.obj + 0002:00017ca0 _ud_itab__304 100b0ca0 udis86:itab.obj + 0002:00017cb0 _ud_itab__146 100b0cb0 udis86:itab.obj + 0002:00017cb8 _ud_itab__396 100b0cb8 udis86:itab.obj + 0002:00017cbc _ud_itab__206 100b0cbc udis86:itab.obj + 0002:00017ccc _ud_itab__437 100b0ccc udis86:itab.obj + 0002:00017cd0 _ud_itab__333 100b0cd0 udis86:itab.obj + 0002:00017cf0 _ud_itab__228 100b0cf0 udis86:itab.obj + 0002:00017d00 _ud_itab__93 100b0d00 udis86:itab.obj + 0002:00017d08 _ud_itab__405 100b0d08 udis86:itab.obj + 0002:00017d18 _ud_itab__257 100b0d18 udis86:itab.obj + 0002:00017d20 _ud_itab__60 100b0d20 udis86:itab.obj + 0002:00017d24 _ud_itab__71 100b0d24 udis86:itab.obj + 0002:00017d2c _ud_itab__292 100b0d2c udis86:itab.obj + 0002:00017d34 _ud_itab__194 100b0d34 udis86:itab.obj + 0002:00017d3c _ud_itab__132 100b0d3c udis86:itab.obj + 0002:00017d44 _ud_itab__43 100b0d44 udis86:itab.obj + 0002:00017d4c _ud_itab__35 100b0d4c udis86:itab.obj + 0002:00017d54 _ud_itab__163 100b0d54 udis86:itab.obj + 0002:00017d5c _ud_itab__364 100b0d5c udis86:itab.obj + 0002:00017d60 _ud_itab__389 100b0d60 udis86:itab.obj + 0002:00017d64 _ud_itab__67 100b0d64 udis86:itab.obj + 0002:00017d6c _ud_itab__166 100b0d6c udis86:itab.obj + 0002:00017d74 _ud_itab__251 100b0d74 udis86:itab.obj + 0002:00017d7c _ud_itab__344 100b0d7c udis86:itab.obj + 0002:00017d84 _ud_itab__387 100b0d84 udis86:itab.obj + 0002:00017d88 _ud_itab__52 100b0d88 udis86:itab.obj + 0002:00017d8c _ud_itab__422 100b0d8c udis86:itab.obj + 0002:00017d90 _ud_itab__164 100b0d90 udis86:itab.obj + 0002:00017d98 _ud_itab__288 100b0d98 udis86:itab.obj + 0002:00017d9c _ud_itab__266 100b0d9c udis86:itab.obj + 0002:00017da4 _ud_itab__180 100b0da4 udis86:itab.obj + 0002:00017dac _ud_itab__190 100b0dac udis86:itab.obj + 0002:00017db4 _ud_itab__22 100b0db4 udis86:itab.obj + 0002:00017dbc _ud_itab__407 100b0dbc udis86:itab.obj + 0002:00017dc0 _ud_itab__373 100b0dc0 udis86:itab.obj + 0002:00017dc8 _ud_itab__341 100b0dc8 udis86:itab.obj + 0002:00017fc8 _ud_itab__236 100b0fc8 udis86:itab.obj + 0002:00017fd0 _ud_itab__8 100b0fd0 udis86:itab.obj + 0002:00017fe0 _ud_itab__172 100b0fe0 udis86:itab.obj + 0002:00017fe8 _ud_itab__414 100b0fe8 udis86:itab.obj + 0002:00017fec _ud_itab__392 100b0fec udis86:itab.obj + 0002:00017ff0 _ud_itab__260 100b0ff0 udis86:itab.obj + 0002:00017ff8 _ud_itab__108 100b0ff8 udis86:itab.obj + 0002:00018000 _ud_itab__438 100b1000 udis86:itab.obj + 0002:00018010 _ud_itab__151 100b1010 udis86:itab.obj + 0002:00018018 _ud_itab__70 100b1018 udis86:itab.obj + 0002:00018020 _ud_itab__261 100b1020 udis86:itab.obj + 0002:00018028 _ud_itab__411 100b1028 udis86:itab.obj + 0002:00018038 _ud_itab__174 100b1038 udis86:itab.obj + 0002:00018040 _ud_itab__63 100b1040 udis86:itab.obj + 0002:00018048 _ud_itab__388 100b1048 udis86:itab.obj + 0002:0001804c _ud_itab__69 100b104c udis86:itab.obj + 0002:00018054 _ud_itab__359 100b1054 udis86:itab.obj + 0002:00018058 _ud_itab__375 100b1058 udis86:itab.obj + 0002:00018060 _ud_itab__53 100b1060 udis86:itab.obj + 0002:00018068 _ud_itab__343 100b1068 udis86:itab.obj + 0002:0001806c _ud_itab__173 100b106c udis86:itab.obj + 0002:00018074 _ud_itab__280 100b1074 udis86:itab.obj + 0002:0001807c _ud_itab__165 100b107c udis86:itab.obj + 0002:00018084 _ud_itab__374 100b1084 udis86:itab.obj + 0002:00018088 _ud_itab__91 100b1088 udis86:itab.obj + 0002:00018090 _ud_itab__102 100b1090 udis86:itab.obj + 0002:00018098 _ud_itab__351 100b1098 udis86:itab.obj + 0002:000180a0 _ud_itab__352 100b10a0 udis86:itab.obj + 0002:000180a4 _ud_itab__193 100b10a4 udis86:itab.obj + 0002:000180ac _ud_itab__33 100b10ac udis86:itab.obj + 0002:000180b4 _ud_itab__129 100b10b4 udis86:itab.obj + 0002:000180bc _ud_itab__372 100b10bc udis86:itab.obj + 0002:000180c0 _ud_itab__321 100b10c0 udis86:itab.obj + 0002:000180c4 _ud_itab__98 100b10c4 udis86:itab.obj + 0002:000180cc _ud_itab__272 100b10cc udis86:itab.obj + 0002:000180d4 _ud_itab__325 100b10d4 udis86:itab.obj + 0002:000180d8 _ud_itab__245 100b10d8 udis86:itab.obj + 0002:000180e0 _ud_itab__198 100b10e0 udis86:itab.obj + 0002:000180e8 _ud_itab__403 100b10e8 udis86:itab.obj + 0002:00018108 _ud_itab__436 100b1108 udis86:itab.obj + 0002:00018188 _ud_itab__299 100b1188 udis86:itab.obj + 0002:0001818c _ud_itab__256 100b118c udis86:itab.obj + 0002:00018194 _ud_itab__283 100b1194 udis86:itab.obj + 0002:0001819c _ud_itab__342 100b119c udis86:itab.obj + 0002:000181a0 _ud_itab__140 100b11a0 udis86:itab.obj + 0002:000181a8 _ud_itab__291 100b11a8 udis86:itab.obj + 0002:000181ac _ud_itab__112 100b11ac udis86:itab.obj + 0002:000181b4 _ud_itab__95 100b11b4 udis86:itab.obj + 0002:000181bc _ud_itab__197 100b11bc udis86:itab.obj + 0002:000181c4 _ud_itab__204 100b11c4 udis86:itab.obj + 0002:000181d4 _ud_itab__385 100b11d4 udis86:itab.obj + 0002:000181d8 _ud_itab__47 100b11d8 udis86:itab.obj + 0002:000181e0 _ud_itab__246 100b11e0 udis86:itab.obj + 0002:000181e8 _ud_itab__417 100b11e8 udis86:itab.obj + 0002:000181f8 _ud_itab__2 100b11f8 udis86:itab.obj + 0002:000181fc _ud_itab__440 100b11fc udis86:itab.obj + 0002:00018204 _ud_itab__231 100b1204 udis86:itab.obj + 0002:00018410 _ud_itab__412 100b1410 udis86:itab.obj + 0002:00018420 _ud_itab__9 100b1420 udis86:itab.obj + 0002:00018430 _ud_itab__239 100b1430 udis86:itab.obj + 0002:00018438 _ud_itab__416 100b1438 udis86:itab.obj + 0002:0001843c _ud_itab__319 100b143c udis86:itab.obj + 0002:00018440 _ud_itab__205 100b1440 udis86:itab.obj + 0002:00018450 _ud_itab__158 100b1450 udis86:itab.obj + 0002:00018458 _ud_itab__268 100b1458 udis86:itab.obj + 0002:00018460 _ud_itab__443 100b1460 udis86:itab.obj + 0002:00018470 _ud_itab__263 100b1470 udis86:itab.obj + 0002:00018478 _ud_itab__92 100b1478 udis86:itab.obj + 0002:00018480 _ud_itab__119 100b1480 udis86:itab.obj + 0002:00018488 _ud_itab__226 100b1488 udis86:itab.obj + 0002:00018490 _ud_itab__104 100b1490 udis86:itab.obj + 0002:00018498 _ud_itab__296 100b1498 udis86:itab.obj + 0002:0001849c _ud_itab__40 100b149c udis86:itab.obj + 0002:000184a4 _ud_itab__309 100b14a4 udis86:itab.obj + 0002:000184a8 _ud_itab__329 100b14a8 udis86:itab.obj + 0002:000184b0 _ud_itab__134 100b14b0 udis86:itab.obj + 0002:000184b8 _ud_itab__181 100b14b8 udis86:itab.obj + 0002:000184c0 _ud_itab__386 100b14c0 udis86:itab.obj + 0002:000184c4 _ud_itab__322 100b14c4 udis86:itab.obj + 0002:000184cc _ud_itab__38 100b14cc udis86:itab.obj + 0002:000184d4 _ud_itab__46 100b14d4 udis86:itab.obj + 0002:000184dc _ud_itab__66 100b14dc udis86:itab.obj + 0002:000184e4 _ud_itab__80 100b14e4 udis86:itab.obj + 0002:000184ec _ud_itab__113 100b14ec udis86:itab.obj + 0002:000184f4 _ud_itab__168 100b14f4 udis86:itab.obj + 0002:000184fc _ud_itab__214 100b14fc udis86:itab.obj + 0002:0001850c _ud_itab__110 100b150c udis86:itab.obj + 0002:00018514 _ud_itab__114 100b1514 udis86:itab.obj + 0002:0001851c _ud_itab__259 100b151c udis86:itab.obj + 0002:00018524 _ud_itab__139 100b1524 udis86:itab.obj + 0002:0001852c _ud_itab__378 100b152c udis86:itab.obj + 0002:00018530 _ud_itab__340 100b1530 udis86:itab.obj + 0002:00018534 _ud_itab__379 100b1534 udis86:itab.obj + 0002:00018538 _ud_itab__305 100b1538 udis86:itab.obj + 0002:00018540 _ud_itab__394 100b1540 udis86:itab.obj + 0002:00018740 _ud_itab__225 100b1740 udis86:itab.obj + 0002:00018748 _ud_itab__237 100b1748 udis86:itab.obj + 0002:00018750 _ud_itab__400 100b1750 udis86:itab.obj + 0002:00018754 _ud_itab__419 100b1754 udis86:itab.obj + 0002:00018758 _ud_itab__126 100b1758 udis86:itab.obj + 0002:00018760 _ud_itab__328 100b1760 udis86:itab.obj + 0002:00018768 _ud_itab__238 100b1768 udis86:itab.obj + 0002:00018770 _ud_itab__334 100b1770 udis86:itab.obj + 0002:00018774 _ud_itab__380 100b1774 udis86:itab.obj + 0002:00018778 _ud_itab__10 100b1778 udis86:itab.obj + 0002:00018780 _ud_itab__42 100b1780 udis86:itab.obj + 0002:00018788 _ud_itab__24 100b1788 udis86:itab.obj + 0002:00018790 _ud_itab__371 100b1790 udis86:itab.obj + 0002:00018794 _ud_itab__218 100b1794 udis86:itab.obj + 0002:000187a4 _ud_itab__136 100b17a4 udis86:itab.obj + 0002:000187ac _ud_itab__17 100b17ac udis86:itab.obj + 0002:000187b4 _ud_itab__7 100b17b4 udis86:itab.obj + 0002:000187c4 _ud_itab__106 100b17c4 udis86:itab.obj + 0002:000187cc _ud_itab__339 100b17cc udis86:itab.obj + 0002:000187dc _ud_itab__243 100b17dc udis86:itab.obj + 0002:000187e4 _ud_itab__355 100b17e4 udis86:itab.obj + 0002:000187e8 _ud_itab__3 100b17e8 udis86:itab.obj + 0002:000187ec _ud_itab__170 100b17ec udis86:itab.obj + 0002:000187f4 _ud_itab__254 100b17f4 udis86:itab.obj + 0002:000187fc _ud_itab__144 100b17fc udis86:itab.obj + 0002:00018808 _ud_itab__427 100b1808 udis86:itab.obj + 0002:00018888 _ud_itab__273 100b1888 udis86:itab.obj + 0002:00018890 _ud_itab__142 100b1890 udis86:itab.obj + 0002:00018898 _ud_itab__294 100b1898 udis86:itab.obj + 0002:0001889c _ud_itab__348 100b189c udis86:itab.obj + 0002:000188a0 _ud_itab__36 100b18a0 udis86:itab.obj + 0002:000188a8 _ud_itab__224 100b18a8 udis86:itab.obj + 0002:000188b0 _ud_itab__65 100b18b0 udis86:itab.obj + 0002:000188b8 _ud_itab__192 100b18b8 udis86:itab.obj + 0002:000188c0 _ud_itab__395 100b18c0 udis86:itab.obj + 0002:000188c4 _ud_itab__382 100b18c4 udis86:itab.obj + 0002:000188c8 _ud_itab__410 100b18c8 udis86:itab.obj + 0002:000188d8 _ud_itab__376 100b18d8 udis86:itab.obj + 0002:000188dc _ud_itab__76 100b18dc udis86:itab.obj + 0002:000188e4 _ud_itab__155 100b18e4 udis86:itab.obj + 0002:000188ec _ud_itab__109 100b18ec udis86:itab.obj + 0002:000188f4 _ud_itab__415 100b18f4 udis86:itab.obj + 0002:000188f8 _ud_itab__279 100b18f8 udis86:itab.obj + 0002:00018900 _ud_itab__295 100b1900 udis86:itab.obj + 0002:00018908 _ud_itab__29 100b1908 udis86:itab.obj + 0002:00018910 _ud_itab__354 100b1910 udis86:itab.obj + 0002:00018914 _ud_itab__27 100b1914 udis86:itab.obj + 0002:00018924 _ud_itab__82 100b1924 udis86:itab.obj + 0002:0001892c _ud_itab__15 100b192c udis86:itab.obj + 0002:0001893c _ud_itab__199 100b193c udis86:itab.obj + 0002:00018944 _ud_itab__21 100b1944 udis86:itab.obj + 0002:0001894c _ud_itab__179 100b194c udis86:itab.obj + 0002:00018954 _ud_itab__217 100b1954 udis86:itab.obj + 0002:00018964 _ud_itab__435 100b1964 udis86:itab.obj + 0002:00018974 _ud_itab__303 100b1974 udis86:itab.obj + 0002:00018984 _ud_itab__250 100b1984 udis86:itab.obj + 0002:0001898c _ud_itab__331 100b198c udis86:itab.obj + 0002:0001899c _ud_itab__441 100b199c udis86:itab.obj + 0002:000189a0 _ud_itab__399 100b19a0 udis86:itab.obj + 0002:00018ba0 _ud_itab__301 100b1ba0 udis86:itab.obj + 0002:00018ba8 _ud_itab__196 100b1ba8 udis86:itab.obj + 0002:00018bb0 _ud_itab__281 100b1bb0 udis86:itab.obj + 0002:00018bb8 _ud_itab__152 100b1bb8 udis86:itab.obj + 0002:00018bc0 _ud_itab__209 100b1bc0 udis86:itab.obj + 0002:00018bd0 _ud_itab__397 100b1bd0 udis86:itab.obj + 0002:00018bd4 _ud_itab__177 100b1bd4 udis86:itab.obj + 0002:00018bdc _ud_itab__368 100b1bdc udis86:itab.obj + 0002:00018be0 _ud_itab__430 100b1be0 udis86:itab.obj + 0002:00018c60 _ud_itab__336 100b1c60 udis86:itab.obj + 0002:00018c64 _ud_itab__258 100b1c64 udis86:itab.obj + 0002:00018c6c _ud_itab__135 100b1c6c udis86:itab.obj + 0002:00018c74 _ud_itab__223 100b1c74 udis86:itab.obj + 0002:00018c7c _ud_itab__178 100b1c7c udis86:itab.obj + 0002:00018c8c _ud_itab__81 100b1c8c udis86:itab.obj + 0002:00018c94 _ud_itab__101 100b1c94 udis86:itab.obj + 0002:00018c9c _ud_itab__442 100b1c9c udis86:itab.obj + 0002:00018cac _ud_itab__235 100b1cac udis86:itab.obj + 0002:00018cbc _ud_itab__123 100b1cbc udis86:itab.obj + 0002:00018cc4 _ud_itab__11 100b1cc4 udis86:itab.obj + 0002:00018ccc _ud_itab__153 100b1ccc udis86:itab.obj + 0002:00018cd4 _ud_itab__377 100b1cd4 udis86:itab.obj + 0002:00018cd8 _ud_itab__289 100b1cd8 udis86:itab.obj + 0002:00018ce0 _ud_itab__424 100b1ce0 udis86:itab.obj + 0002:00018d60 _ud_itab__408 100b1d60 udis86:itab.obj + 0002:00018d68 _ud_itab__434 100b1d68 udis86:itab.obj + 0002:00018d6c _ud_itab__426 100b1d6c udis86:itab.obj + 0002:00018d7c _ud_itab__25 100b1d7c udis86:itab.obj + 0002:00018d90 _ud_itab__357 100b1d90 udis86:itab.obj + 0002:00018f90 _ud_itab__369 100b1f90 udis86:itab.obj + 0002:00019190 _ud_itab__221 100b2190 udis86:itab.obj + 0002:00019198 _ud_itab__215 100b2198 udis86:itab.obj + 0002:0001919c _ud_itab__210 100b219c udis86:itab.obj + 0002:000191ac _ud_itab__232 100b21ac udis86:itab.obj + 0002:000191b4 _ud_itab__169 100b21b4 udis86:itab.obj + 0002:000191bc _ud_itab__120 100b21bc udis86:itab.obj + 0002:000191c4 _ud_itab__383 100b21c4 udis86:itab.obj + 0002:000191c8 _ud_itab__219 100b21c8 udis86:itab.obj + 0002:000191d8 _ud_itab__195 100b21d8 udis86:itab.obj + 0002:000191e0 _ud_itab__57 100b21e0 udis86:itab.obj + 0002:000191e8 _ud_itab__264 100b21e8 udis86:itab.obj + 0002:000191f0 _ud_itab__240 100b21f0 udis86:itab.obj + 0002:000191f8 _ud_itab__423 100b21f8 udis86:itab.obj + 0002:00019208 _ud_itab__358 100b2208 udis86:itab.obj + 0002:0001920c _ud_itab__26 100b220c udis86:itab.obj + 0002:00019214 _ud_itab__188 100b2214 udis86:itab.obj + 0002:0001921c _ud_itab__191 100b221c udis86:itab.obj + 0002:00019224 _ud_itab__149 100b2224 udis86:itab.obj + 0002:0001922c _ud_itab__74 100b222c udis86:itab.obj + 0002:00019234 _ud_itab__362 100b2234 udis86:itab.obj + 0002:00019238 _ud_itab__287 100b2238 udis86:itab.obj + 0002:0001923c _ud_itab__48 100b223c udis86:itab.obj + 0002:00019244 _ud_itab__159 100b2244 udis86:itab.obj + 0002:0001924c _ud_itab__211 100b224c udis86:itab.obj + 0002:0001925c _ud_itab__64 100b225c udis86:itab.obj + 0002:00019264 _ud_itab__337 100b2264 udis86:itab.obj + 0002:00019268 _ud_itab__433 100b2268 udis86:itab.obj + 0002:000192e8 _ud_itab__55 100b22e8 udis86:itab.obj + 0002:000192f0 _ud_itab__45 100b22f0 udis86:itab.obj + 0002:000192f8 _ud_itab__317 100b22f8 udis86:itab.obj + 0002:000192fc _ud_itab__31 100b22fc udis86:itab.obj + 0002:00019300 _ud_itab__332 100b2300 udis86:itab.obj + 0002:00019310 _ud_itab__315 100b2310 udis86:itab.obj + 0002:00019318 _ud_itab__318 100b2318 udis86:itab.obj + 0002:00019320 _ud_itab__13 100b2320 udis86:itab.obj + 0002:00019328 _ud_itab__432 100b2328 udis86:itab.obj + 0002:00019338 _ud_itab__49 100b2338 udis86:itab.obj + 0002:00019340 _ud_itab__58 100b2340 udis86:itab.obj + 0002:00019348 _ud_itab__128 100b2348 udis86:itab.obj + 0002:00019350 _ud_itab__409 100b2350 udis86:itab.obj + 0002:00019360 _ud_itab__201 100b2360 udis86:itab.obj + 0002:00019368 _ud_itab__154 100b2368 udis86:itab.obj + 0002:00019370 _ud_itab__314 100b2370 udis86:itab.obj + 0002:00019380 _ud_itab__326 100b2380 udis86:itab.obj + 0002:00019388 _ud_itab__313 100b2388 udis86:itab.obj + 0002:00019398 _ud_itab__365 100b2398 udis86:itab.obj + 0002:000193a0 _ud_itab__335 100b23a0 udis86:itab.obj + 0002:000195a0 _ud_itab__241 100b25a0 udis86:itab.obj + 0002:000195a8 _ud_itab__162 100b25a8 udis86:itab.obj + 0002:000195b0 _ud_itab__72 100b25b0 udis86:itab.obj + 0002:000195b8 _ud_itab__275 100b25b8 udis86:itab.obj + 0002:000195bc _ud_itab__160 100b25bc udis86:itab.obj + 0002:000195c4 _ud_itab__182 100b25c4 udis86:itab.obj + 0002:000195d4 _ud_itab__131 100b25d4 udis86:itab.obj + 0002:000195dc _ud_itab__269 100b25dc udis86:itab.obj + 0002:000195e4 _ud_itab__51 100b25e4 udis86:itab.obj + 0002:000195ec _ud_itab__117 100b25ec udis86:itab.obj + 0002:000195f4 _ud_itab__391 100b25f4 udis86:itab.obj + 0002:000195f8 _ud_itab__367 100b25f8 udis86:itab.obj + 0002:000195fc _ud_itab__284 100b25fc udis86:itab.obj + 0002:00019600 _ud_itab__262 100b2600 udis86:itab.obj + 0002:00019608 _ud_itab__425 100b2608 udis86:itab.obj + 0002:0001960c _ud_itab__338 100b260c udis86:itab.obj + 0002:00019610 _ud_itab__393 100b2610 udis86:itab.obj + 0002:00019614 _ud_itab__122 100b2614 udis86:itab.obj + 0002:0001961c _ud_itab__79 100b261c udis86:itab.obj + 0002:00019624 _ud_itab__265 100b2624 udis86:itab.obj + 0002:0001962c _ud_itab__6 100b262c udis86:itab.obj + 0002:00019630 _ud_itab__85 100b2630 udis86:itab.obj + 0002:00019638 _ud_itab__276 100b2638 udis86:itab.obj + 0002:00019640 _ud_itab__202 100b2640 udis86:itab.obj + 0002:00019644 _ud_itab__148 100b2644 udis86:itab.obj + 0002:00019650 _ud_itab__54 100b2650 udis86:itab.obj + 0002:00019850 _ud_itab__89 100b2850 udis86:itab.obj + 0002:00019858 _ud_itab__274 100b2858 udis86:itab.obj + 0002:00019860 _ud_itab__312 100b2860 udis86:itab.obj + 0002:00019864 _ud_itab__187 100b2864 udis86:itab.obj + 0002:0001986c _ud_itab__381 100b286c udis86:itab.obj + 0002:00019870 _ud_itab__185 100b2870 udis86:itab.obj + 0002:00019878 _ud_itab__316 100b2878 udis86:itab.obj + 0002:00019880 _ud_itab__253 100b2880 udis86:itab.obj + 0002:00019888 _ud_itab__130 100b2888 udis86:itab.obj + 0002:00019890 _ud_itab__39 100b2890 udis86:itab.obj + 0002:00019898 _ud_itab__175 100b2898 udis86:itab.obj + 0002:000198a0 _ud_itab__145 100b28a0 udis86:itab.obj + 0002:000198a8 _ud_itab__167 100b28a8 udis86:itab.obj + 0002:000198b0 _ud_itab__255 100b28b0 udis86:itab.obj + 0002:000198b8 _ud_itab__323 100b28b8 udis86:itab.obj + 0002:000198bc _ud_itab__30 100b28bc udis86:itab.obj + 0002:000198c4 _ud_itab__370 100b28c4 udis86:itab.obj + 0002:000198c8 _ud_itab__233 100b28c8 udis86:itab.obj + 0002:000198d0 _ud_itab__444 100b28d0 udis86:itab.obj + 0002:000198e0 _ud_itab__229 100b28e0 udis86:itab.obj + 0002:000198e8 _ud_itab__100 100b28e8 udis86:itab.obj + 0002:000198f0 _ud_itab__1 100b28f0 udis86:itab.obj + 0002:000198f4 _ud_itab__207 100b28f4 udis86:itab.obj + 0002:000198f8 _ud_itab__184 100b28f8 udis86:itab.obj + 0002:00019900 _ud_itab__138 100b2900 udis86:itab.obj + 0002:00019908 _ud_itab__293 100b2908 udis86:itab.obj + 0002:0001990c _ud_itab__227 100b290c udis86:itab.obj + 0002:00019910 _ud_itab__83 100b2910 udis86:itab.obj + 0002:00019918 _ud_itab__41 100b2918 udis86:itab.obj + 0002:00019928 _ud_itab__252 100b2928 udis86:itab.obj + 0002:00019930 _ud_itab__4 100b2930 udis86:itab.obj + 0002:00019b30 _ud_itab__324 100b2b30 udis86:itab.obj + 0002:00019b34 _ud_itab__99 100b2b34 udis86:itab.obj + 0002:00019b3c _ud_itab__307 100b2b3c udis86:itab.obj + 0002:00019b40 _ud_itab__127 100b2b40 udis86:itab.obj + 0002:00019b48 _ud_itab__20 100b2b48 udis86:itab.obj + 0002:00019b50 _ud_itab__222 100b2b50 udis86:itab.obj + 0002:00019b60 _ud_itab__105 100b2b60 udis86:itab.obj + 0002:00019b68 _ud_itab__86 100b2b68 udis86:itab.obj + 0002:00019b70 _ud_itab__124 100b2b70 udis86:itab.obj + 0002:00019b78 _ud_itab__18 100b2b78 udis86:itab.obj + 0002:00019b80 _ud_itab__285 100b2b80 udis86:itab.obj + 0002:00019b84 _ud_itab__306 100b2b84 udis86:itab.obj + 0002:00019b88 _ud_itab__28 100b2b88 udis86:itab.obj + 0002:00019d88 _ud_itab__23 100b2d88 udis86:itab.obj + 0002:00019d90 _ud_itab__189 100b2d90 udis86:itab.obj + 0002:00019d98 _ud_itab__88 100b2d98 udis86:itab.obj + 0002:00019da0 _ud_itab__111 100b2da0 udis86:itab.obj + 0002:00019da8 _ud_itab__431 100b2da8 udis86:itab.obj + 0002:00019dac _ud_itab__96 100b2dac udis86:itab.obj + 0002:00019db4 _ud_itab__277 100b2db4 udis86:itab.obj + 0002:00019dbc _ud_itab__161 100b2dbc udis86:itab.obj + 0002:00019dc4 _ud_itab__286 100b2dc4 udis86:itab.obj + 0002:00019dc8 _ud_itab__278 100b2dc8 udis86:itab.obj + 0002:00019dd0 _ud_itab__230 100b2dd0 udis86:itab.obj + 0002:00019dd8 _ud_itab__406 100b2dd8 udis86:itab.obj + 0002:00019de8 _ud_itab__77 100b2de8 udis86:itab.obj + 0002:00019df0 _ud_itab__248 100b2df0 udis86:itab.obj + 0002:00019df8 _ud_itab__183 100b2df8 udis86:itab.obj + 0002:00019e00 _ud_itab__59 100b2e00 udis86:itab.obj + 0002:00019e08 _ud_itab__404 100b2e08 udis86:itab.obj + 0002:00019e0c _ud_itab__125 100b2e0c udis86:itab.obj + 0002:00019e14 _ud_itab__75 100b2e14 udis86:itab.obj + 0002:00019e1c _ud_itab__360 100b2e1c udis86:itab.obj + 0002:00019e20 _ud_itab__345 100b2e20 udis86:itab.obj + 0002:00019e30 _ud_itab__62 100b2e30 udis86:itab.obj + 0002:00019e38 _ud_itab__50 100b2e38 udis86:itab.obj + 0002:0001e0d0 __unwindtable$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b70d0 logging.cpp.obj + 0002:0001e0e0 __ehfuncinfo$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100b70e0 logging.cpp.obj + 0002:0001e104 __ehfuncinfo$??0_Locinfo@std@@QAE@PBD@Z 100b7104 logging.cpp.obj + 0002:0001e128 __unwindtable$??0_Locinfo@std@@QAE@PBD@Z 100b7128 logging.cpp.obj + 0002:0001e160 __ehfuncinfo$??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 100b7160 logging.cpp.obj + 0002:0001e160 __ehfuncinfo$??1_Locinfo@std@@QAE@XZ 100b7160 logging.cpp.obj + 0002:0001e160 __ehfuncinfo$??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 100b7160 main.cpp.obj + 0002:0001e160 __ehfuncinfo$??1CDataStore@Nampower@@UAE@XZ 100b7160 main.cpp.obj + 0002:0001e160 __ehfuncinfo$??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100b7160 main.cpp.obj + 0002:0001e160 __ehfuncinfo$?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 100b7160 libucrt:mbstowcs.obj + 0002:0001e160 __ehfuncinfo$?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 100b7160 libucrt:write.obj + 0002:0001e160 __ehfuncinfo$?try_cor_exit_process@@YAXI@Z 100b7160 libucrt:exit.obj + 0002:0001e160 __ehfuncinfo$?_Tidy@ios_base@std@@AAEXXZ 100b7160 libcpmt:ios.obj + 0002:0001e160 __ehfuncinfo$??1_Init_atexit@@QAE@XZ 100b7160 libcpmt:iosptrs.obj + 0002:0001e160 __ehfuncinfo$___crtGetSystemTimePreciseAsFileTime 100b7160 libcpmt:winapisupp.obj + 0002:0001e184 __unwindtable$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 100b7184 logging.cpp.obj + 0002:0001e19c __ehfuncinfo$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 100b719c logging.cpp.obj + 0002:0001e1c0 __unwindtable$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 100b71c0 logging.cpp.obj + 0002:0001e1c0 __unwindtable$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 100b71c0 main.cpp.obj + 0002:0001e1c0 __unwindtable$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 100b71c0 spellcast.cpp.obj + 0002:0001e1c8 __ehfuncinfo$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 100b71c8 logging.cpp.obj + 0002:0001e1c8 __ehfuncinfo$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 100b71c8 main.cpp.obj + 0002:0001e1c8 __ehfuncinfo$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 100b71c8 spellcast.cpp.obj + 0002:0001e1ec __unwindtable$??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b71ec file_scripts.cpp.obj + 0002:0001e1ec __unwindtable$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 100b71ec logging.cpp.obj + 0002:0001e1ec __unwindtable$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b71ec logging.cpp.obj + 0002:0001e1ec __unwindtable$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71ec logging.cpp.obj + 0002:0001e1ec __unwindtable$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71ec logging.cpp.obj + 0002:0001e1ec __unwindtable$??_Gios_base@std@@UAEPAXI@Z 100b71ec logging.cpp.obj + 0002:0001e1ec __unwindtable$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??1bad_alloc_@exception_detail@boost@@UAE@XZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??1bad_exception_@exception_detail@boost@@UAE@XZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??1exception@boost@@MAE@XZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_DError@hadesmem@@QAEXXZ 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_GCDataStore@Nampower@@UAEPAXI@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_GError@hadesmem@@UAEPAXI@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 100b71ec main.cpp.obj + 0002:0001e1ec __unwindtable$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 100b71ec libucrt:exit.obj + 0002:0001e1f4 __ehfuncinfo$??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b71f4 file_scripts.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 100b71f4 logging.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b71f4 logging.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71f4 logging.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71f4 logging.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_Gios_base@std@@UAEPAXI@Z 100b71f4 logging.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??1bad_alloc_@exception_detail@boost@@UAE@XZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??1bad_exception_@exception_detail@boost@@UAE@XZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??1exception@boost@@MAE@XZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_DError@hadesmem@@QAEXXZ 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_GCDataStore@Nampower@@UAEPAXI@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_GError@hadesmem@@UAEPAXI@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 100b71f4 main.cpp.obj + 0002:0001e1f4 __ehfuncinfo$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 100b71f4 libucrt:exit.obj + 0002:0001e218 __unwindtable$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 100b7218 logging.cpp.obj + 0002:0001e228 __ehfuncinfo$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 100b7228 logging.cpp.obj + 0002:0001e24c __unwindtable$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 100b724c logging.cpp.obj + 0002:0001e264 __ehfuncinfo$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 100b7264 logging.cpp.obj + 0002:0001e288 __unwindtable$??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAE@XZ 100b7288 logging.cpp.obj + 0002:0001e288 __unwindtable$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 100b7288 logging.cpp.obj + 0002:0001e288 __unwindtable$??__FdebugLogFile@Nampower@@YAXXZ 100b7288 logging.cpp.obj + 0002:0001e288 __unwindtable$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 100b7288 main.cpp.obj + 0002:0001e288 __unwindtable$__execute_onexit_table 100b7288 libucrt:onexit.obj + 0002:0001e290 __ehfuncinfo$??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAE@XZ 100b7290 logging.cpp.obj + 0002:0001e290 __ehfuncinfo$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 100b7290 logging.cpp.obj + 0002:0001e290 __ehfuncinfo$??__FdebugLogFile@Nampower@@YAXXZ 100b7290 logging.cpp.obj + 0002:0001e290 __ehfuncinfo$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 100b7290 main.cpp.obj + 0002:0001e290 __ehfuncinfo$__execute_onexit_table 100b7290 libucrt:onexit.obj + 0002:0001e2b4 __unwindtable$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100b72b4 logging.cpp.obj + 0002:0001e2b4 __unwindtable$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b72b4 spellevents.cpp.obj + 0002:0001e2bc __ehfuncinfo$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 100b72bc logging.cpp.obj + 0002:0001e2bc __ehfuncinfo$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100b72bc spellevents.cpp.obj + 0002:0001e2e0 __unwindtable$??__EdebugLogFile@Nampower@@YAXXZ 100b72e0 logging.cpp.obj + 0002:0001e2f8 __ehfuncinfo$??__EdebugLogFile@Nampower@@YAXXZ 100b72f8 logging.cpp.obj + 0002:0001e31c __unwindtable$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 100b731c logging.cpp.obj + 0002:0001e31c __unwindtable$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100b731c main.cpp.obj + 0002:0001e334 __ehfuncinfo$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 100b7334 logging.cpp.obj + 0002:0001e334 __ehfuncinfo$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100b7334 main.cpp.obj + 0002:0001e49c __unwindtable$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 100b749c main.cpp.obj + 0002:0001e4b4 __ehfuncinfo$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 100b74b4 main.cpp.obj + 0002:0001e4d8 __catchsym$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$3 100b74d8 main.cpp.obj + 0002:0001e4e8 __tryblocktable$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 100b74e8 main.cpp.obj + 0002:0001e4fc __unwindtable$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 100b74fc main.cpp.obj + 0002:0001e514 __ehfuncinfo$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 100b7514 main.cpp.obj + 0002:0001e538 __unwindtable$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 100b7538 main.cpp.obj + 0002:0001e558 __ehfuncinfo$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 100b7558 main.cpp.obj + 0002:0001e57c __unwindtable$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 100b757c main.cpp.obj + 0002:0001e584 __ehfuncinfo$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 100b7584 main.cpp.obj + 0002:0001e5a8 __unwindtable$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 100b75a8 main.cpp.obj + 0002:0001e5b0 __ehfuncinfo$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 100b75b0 main.cpp.obj + 0002:0001e5d4 __unwindtable$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 100b75d4 main.cpp.obj + 0002:0001e5ec __ehfuncinfo$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 100b75ec main.cpp.obj + 0002:0001e610 __ehfuncinfo$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 100b7610 main.cpp.obj + 0002:0001e634 __unwindtable$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 100b7634 main.cpp.obj + 0002:0001e664 __catchsym$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ$2 100b7664 main.cpp.obj + 0002:0001e674 __unwindtable$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b7674 main.cpp.obj + 0002:0001e684 __tryblocktable$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b7684 main.cpp.obj + 0002:0001e698 __ehfuncinfo$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100b7698 main.cpp.obj + 0002:0001e6bc __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$7 100b76bc main.cpp.obj + 0002:0001e6cc __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 100b76cc main.cpp.obj + 0002:0001e6e0 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 100b76e0 main.cpp.obj + 0002:0001e704 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 100b7704 main.cpp.obj + 0002:0001e72c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$7 100b772c main.cpp.obj + 0002:0001e73c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100b773c main.cpp.obj + 0002:0001e750 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100b7750 main.cpp.obj + 0002:0001e774 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100b7774 main.cpp.obj + 0002:0001e79c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$7 100b779c main.cpp.obj + 0002:0001e79c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$7 100b779c main.cpp.obj + 0002:0001e7ac __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 100b77ac main.cpp.obj + 0002:0001e7ac __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 100b77ac main.cpp.obj + 0002:0001e7c0 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 100b77c0 main.cpp.obj + 0002:0001e7c0 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 100b77c0 main.cpp.obj + 0002:0001e7e4 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 100b77e4 main.cpp.obj + 0002:0001e7e4 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 100b77e4 main.cpp.obj + 0002:0001e80c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$7 100b780c main.cpp.obj + 0002:0001e81c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100b781c main.cpp.obj + 0002:0001e830 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100b7830 main.cpp.obj + 0002:0001e854 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100b7854 main.cpp.obj + 0002:0001e87c __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$7 100b787c main.cpp.obj + 0002:0001e88c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100b788c main.cpp.obj + 0002:0001e8a0 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100b78a0 main.cpp.obj + 0002:0001e8c4 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100b78c4 main.cpp.obj + 0002:0001e8ec __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$7 100b78ec main.cpp.obj + 0002:0001e8fc __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100b78fc main.cpp.obj + 0002:0001e910 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100b7910 main.cpp.obj + 0002:0001e934 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100b7934 main.cpp.obj + 0002:0001e95c __catchsym$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$5 100b795c main.cpp.obj + 0002:0001e96c __tryblocktable$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 100b796c main.cpp.obj + 0002:0001e980 __unwindtable$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 100b7980 main.cpp.obj + 0002:0001e9a0 __ehfuncinfo$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 100b79a0 main.cpp.obj + 0002:0001e9c4 __catchsym$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$11 100b79c4 main.cpp.obj + 0002:0001e9d4 __tryblocktable$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 100b79d4 main.cpp.obj + 0002:0001e9e8 __unwindtable$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 100b79e8 main.cpp.obj + 0002:0001ea08 __ehfuncinfo$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 100b7a08 main.cpp.obj + 0002:0001ea2c __unwindtable$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 100b7a2c main.cpp.obj + 0002:0001ea44 __ehfuncinfo$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 100b7a44 main.cpp.obj + 0002:0001ea68 __unwindtable$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 100b7a68 main.cpp.obj + 0002:0001ea70 __ehfuncinfo$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 100b7a70 main.cpp.obj + 0002:0001ea94 __catchsym$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$5 100b7a94 main.cpp.obj + 0002:0001eaa4 __tryblocktable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 100b7aa4 main.cpp.obj + 0002:0001eab8 __unwindtable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 100b7ab8 main.cpp.obj + 0002:0001ead8 __ehfuncinfo$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 100b7ad8 main.cpp.obj + 0002:0001eafc __unwindtable$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 100b7afc main.cpp.obj + 0002:0001eb1c __ehfuncinfo$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 100b7b1c main.cpp.obj + 0002:0001eb40 __unwindtable$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 100b7b40 main.cpp.obj + 0002:0001eb50 __tryblocktable$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 100b7b50 main.cpp.obj + 0002:0001eb64 __catchsym$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ$3 100b7b64 main.cpp.obj + 0002:0001eb84 __ehfuncinfo$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 100b7b84 main.cpp.obj + 0002:0001eba8 __unwindtable$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 100b7ba8 main.cpp.obj + 0002:0001ebb8 __tryblocktable$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 100b7bb8 main.cpp.obj + 0002:0001ebcc __catchsym$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ$3 100b7bcc main.cpp.obj + 0002:0001ebec __ehfuncinfo$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 100b7bec main.cpp.obj + 0002:0001ec10 __catchsym$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$5 100b7c10 main.cpp.obj + 0002:0001ec20 __tryblocktable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 100b7c20 main.cpp.obj + 0002:0001ec34 __unwindtable$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 100b7c34 main.cpp.obj + 0002:0001ec54 __ehfuncinfo$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 100b7c54 main.cpp.obj + 0002:0001ec78 __unwindtable$??0Error@hadesmem@@QAE@ABV01@@Z 100b7c78 main.cpp.obj + 0002:0001ec80 __ehfuncinfo$??0Error@hadesmem@@QAE@ABV01@@Z 100b7c80 main.cpp.obj + 0002:0001eca4 __unwindtable$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 100b7ca4 main.cpp.obj + 0002:0001ecb4 __ehfuncinfo$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 100b7cb4 main.cpp.obj + 0002:0001ecd8 __unwindtable$??0Thread@hadesmem@@QAE@K@Z 100b7cd8 main.cpp.obj + 0002:0001ecd8 __unwindtable$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 100b7cd8 main.cpp.obj + 0002:0001ecd8 __unwindtable$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 100b7cd8 main.cpp.obj + 0002:0001ecd8 __unwindtable$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b7cd8 main.cpp.obj + 0002:0001ecd8 __unwindtable$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b7cd8 main.cpp.obj + 0002:0001ecf8 __ehfuncinfo$??0Thread@hadesmem@@QAE@K@Z 100b7cf8 main.cpp.obj + 0002:0001ecf8 __ehfuncinfo$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 100b7cf8 main.cpp.obj + 0002:0001ecf8 __ehfuncinfo$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 100b7cf8 main.cpp.obj + 0002:0001ecf8 __ehfuncinfo$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b7cf8 main.cpp.obj + 0002:0001ecf8 __ehfuncinfo$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b7cf8 main.cpp.obj + 0002:0001ed1c __unwindtable$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 100b7d1c main.cpp.obj + 0002:0001ed1c __unwindtable$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 100b7d1c main.cpp.obj + 0002:0001ed1c __unwindtable$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 100b7d1c main.cpp.obj + 0002:0001ed1c __unwindtable$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 100b7d1c main.cpp.obj + 0002:0001ed3c __ehfuncinfo$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 100b7d3c main.cpp.obj + 0002:0001ed3c __ehfuncinfo$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 100b7d3c main.cpp.obj + 0002:0001ed3c __ehfuncinfo$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 100b7d3c main.cpp.obj + 0002:0001ed3c __ehfuncinfo$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 100b7d3c main.cpp.obj + 0002:0001ed60 __catchsym$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$3 100b7d60 main.cpp.obj + 0002:0001ed70 __tryblocktable$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b7d70 main.cpp.obj + 0002:0001ed84 __unwindtable$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b7d84 main.cpp.obj + 0002:0001ed9c __ehfuncinfo$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b7d9c main.cpp.obj + 0002:0001edc0 __unwindtable$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 100b7dc0 main.cpp.obj + 0002:0001ede0 __ehfuncinfo$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 100b7de0 main.cpp.obj + 0002:0001ee04 __ehfuncinfo$??0Process@hadesmem@@QAE@K@Z 100b7e04 main.cpp.obj + 0002:0001ee28 __unwindtable$??0Process@hadesmem@@QAE@K@Z 100b7e28 main.cpp.obj + 0002:0001ee68 __catchsym$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$3 100b7e68 main.cpp.obj + 0002:0001ee78 __tryblocktable$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 100b7e78 main.cpp.obj + 0002:0001ee8c __unwindtable$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 100b7e8c main.cpp.obj + 0002:0001eea4 __ehfuncinfo$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 100b7ea4 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 100b7ec8 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 100b7ec8 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 100b7ec8 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 100b7ec8 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 100b7ec8 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 100b7ec8 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 100b7ec8 main.cpp.obj + 0002:0001eec8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 100b7ec8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 100b7ee8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 100b7ee8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 100b7ee8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 100b7ee8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 100b7ee8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 100b7ee8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 100b7ee8 main.cpp.obj + 0002:0001eee8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 100b7ee8 main.cpp.obj + 0002:0001ef0c __catchsym$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$7 100b7f0c main.cpp.obj + 0002:0001ef1c __tryblocktable$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 100b7f1c main.cpp.obj + 0002:0001ef30 __ehfuncinfo$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 100b7f30 main.cpp.obj + 0002:0001ef54 __unwindtable$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 100b7f54 main.cpp.obj + 0002:0001ef8c __catchsym$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$3 100b7f8c main.cpp.obj + 0002:0001ef9c __tryblocktable$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100b7f9c main.cpp.obj + 0002:0001efb0 __unwindtable$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100b7fb0 main.cpp.obj + 0002:0001efc8 __ehfuncinfo$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100b7fc8 main.cpp.obj + 0002:0001efec __ehfuncinfo$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 100b7fec main.cpp.obj + 0002:0001f010 __unwindtable$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 100b8010 main.cpp.obj + 0002:0001f038 __catchsym$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$7 100b8038 main.cpp.obj + 0002:0001f048 __tryblocktable$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b8048 main.cpp.obj + 0002:0001f05c __ehfuncinfo$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b805c main.cpp.obj + 0002:0001f080 __unwindtable$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100b8080 main.cpp.obj + 0002:0001f0b8 __unwindtable$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100b80b8 main.cpp.obj + 0002:0001f0d8 __ehfuncinfo$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100b80d8 main.cpp.obj + 0002:0001f0fc __unwindtable$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b80fc main.cpp.obj + 0002:0001f0fc __unwindtable$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b80fc main.cpp.obj + 0002:0001f104 __ehfuncinfo$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b8104 main.cpp.obj + 0002:0001f104 __ehfuncinfo$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100b8104 main.cpp.obj + 0002:0001f128 __ehfuncinfo$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 100b8128 main.cpp.obj + 0002:0001f14c __unwindtable$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 100b814c main.cpp.obj + 0002:0001f184 __catchsym$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$6 100b8184 main.cpp.obj + 0002:0001f194 __tryblocktable$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100b8194 main.cpp.obj + 0002:0001f1a8 __ehfuncinfo$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100b81a8 main.cpp.obj + 0002:0001f1cc __unwindtable$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100b81cc main.cpp.obj + 0002:0001f1fc __catchsym$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$7 100b81fc main.cpp.obj + 0002:0001f20c __tryblocktable$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100b820c main.cpp.obj + 0002:0001f220 __ehfuncinfo$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100b8220 main.cpp.obj + 0002:0001f244 __unwindtable$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 100b8244 main.cpp.obj + 0002:0001f27c __catchsym$??0SuspendedProcess@hadesmem@@QAE@KK@Z$45 100b827c main.cpp.obj + 0002:0001f28c __tryblocktable$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100b828c main.cpp.obj + 0002:0001f2a0 __ehfuncinfo$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100b82a0 main.cpp.obj + 0002:0001f2c4 __unwindtable$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100b82c4 main.cpp.obj + 0002:0001f38c __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 100b838c main.cpp.obj + 0002:0001f38c __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 100b838c main.cpp.obj + 0002:0001f38c __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 100b838c main.cpp.obj + 0002:0001f3ac __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 100b83ac main.cpp.obj + 0002:0001f3ac __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 100b83ac main.cpp.obj + 0002:0001f3ac __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 100b83ac main.cpp.obj + 0002:0001f3d0 __catchsym$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$5 100b83d0 main.cpp.obj + 0002:0001f3e0 __tryblocktable$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100b83e0 main.cpp.obj + 0002:0001f3f4 __ehfuncinfo$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100b83f4 main.cpp.obj + 0002:0001f418 __unwindtable$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100b8418 main.cpp.obj + 0002:0001f440 __catchsym$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$3 100b8440 main.cpp.obj + 0002:0001f450 __tryblocktable$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 100b8450 main.cpp.obj + 0002:0001f464 __unwindtable$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 100b8464 main.cpp.obj + 0002:0001f47c __ehfuncinfo$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 100b847c main.cpp.obj + 0002:0001f4a0 __ehfuncinfo$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b84a0 main.cpp.obj + 0002:0001f4c4 __unwindtable$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 100b84c4 main.cpp.obj + 0002:0001f514 __ehfuncinfo$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b8514 main.cpp.obj + 0002:0001f538 __unwindtable$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 100b8538 main.cpp.obj + 0002:0001f580 __unwindtable$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 100b8580 main.cpp.obj + 0002:0001f588 __ehfuncinfo$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 100b8588 main.cpp.obj + 0002:0001f5ac __unwindtable$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b85ac main.cpp.obj + 0002:0001f5b4 __ehfuncinfo$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b85b4 main.cpp.obj + 0002:0001f5d8 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 100b85d8 main.cpp.obj + 0002:0001f5f8 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 100b85f8 main.cpp.obj + 0002:0001f61c __unwindtable$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b861c main.cpp.obj + 0002:0001f624 __ehfuncinfo$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100b8624 main.cpp.obj + 0002:0001f648 __ehfuncinfo$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 100b8648 main.cpp.obj + 0002:0001f66c __unwindtable$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 100b866c main.cpp.obj + 0002:0001f69c __unwindtable$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100b869c main.cpp.obj + 0002:0001f6bc __ehfuncinfo$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100b86bc main.cpp.obj + 0002:0001f6e0 __unwindtable$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 100b86e0 main.cpp.obj + 0002:0001f6e0 __unwindtable$?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBDHH@Z 100b86e0 main.cpp.obj + 0002:0001f6e8 __ehfuncinfo$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 100b86e8 main.cpp.obj + 0002:0001f6e8 __ehfuncinfo$?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBDHH@Z 100b86e8 main.cpp.obj + 0002:0001f70c __unwindtable$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 100b870c main.cpp.obj + 0002:0001f714 __ehfuncinfo$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 100b8714 main.cpp.obj + 0002:0001f738 __catchsym$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$5 100b8738 main.cpp.obj + 0002:0001f748 __tryblocktable$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100b8748 main.cpp.obj + 0002:0001f75c __unwindtable$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100b875c main.cpp.obj + 0002:0001f77c __ehfuncinfo$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100b877c main.cpp.obj + 0002:0001f7a0 __unwindtable$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 100b87a0 main.cpp.obj + 0002:0001f7a8 __ehfuncinfo$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 100b87a8 main.cpp.obj + 0002:0001f7cc __unwindtable$?CacheItemNameToId@Nampower@@YAXPBDI@Z 100b87cc items.cpp.obj + 0002:0001f7cc __unwindtable$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 100b87cc main.cpp.obj + 0002:0001f7cc __unwindtable$?addCustomEvent@Nampower@@YAXIPAD@Z 100b87cc main.cpp.obj + 0002:0001f7cc __unwindtable$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 100b87cc pet.cpp.obj + 0002:0001f7cc __unwindtable$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100b87cc spell_scripts.cpp.obj + 0002:0001f7cc __unwindtable$?TriggerQuickcast@Nampower@@YAXXZ 100b87cc spellcast.cpp.obj + 0002:0001f7d4 __ehfuncinfo$?CacheItemNameToId@Nampower@@YAXPBDI@Z 100b87d4 items.cpp.obj + 0002:0001f7d4 __ehfuncinfo$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 100b87d4 main.cpp.obj + 0002:0001f7d4 __ehfuncinfo$?addCustomEvent@Nampower@@YAXIPAD@Z 100b87d4 main.cpp.obj + 0002:0001f7d4 __ehfuncinfo$?CGPetInfo_GetPetSpellActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAI@Z 100b87d4 pet.cpp.obj + 0002:0001f7d4 __ehfuncinfo$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100b87d4 spell_scripts.cpp.obj + 0002:0001f7d4 __ehfuncinfo$?TriggerQuickcast@Nampower@@YAXXZ 100b87d4 spellcast.cpp.obj + 0002:0001f7f8 __unwindtable$?processQueues@Nampower@@YA_NXZ 100b87f8 main.cpp.obj + 0002:0001f810 __ehfuncinfo$?processQueues@Nampower@@YA_NXZ 100b8810 main.cpp.obj + 0002:0001f834 __unwindtable$?SetSelectionTarget@Nampower@@YAX_K@Z 100b8834 main.cpp.obj + 0002:0001f844 __ehfuncinfo$?SetSelectionTarget@Nampower@@YAX_K@Z 100b8844 main.cpp.obj + 0002:0001f868 __unwindtable$?loadUserVar@Nampower@@YAXPBD@Z 100b8868 main.cpp.obj + 0002:0001f878 __ehfuncinfo$?loadUserVar@Nampower@@YAXPBD@Z 100b8878 main.cpp.obj + 0002:0001f89c __unwindtable$?Player_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b889c main.cpp.obj + 0002:0001f8a4 __ehfuncinfo$?Player_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b88a4 main.cpp.obj + 0002:0001f8c8 __unwindtable$?Glue_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b88c8 main.cpp.obj + 0002:0001f8d0 __ehfuncinfo$?Glue_LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100b88d0 main.cpp.obj + 0002:0001f8f4 __unwindtable$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100b88f4 items.cpp.obj + 0002:0001f8f4 __unwindtable$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 100b88f4 main.cpp.obj + 0002:0001f8f4 __unwindtable$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 100b88f4 pet.cpp.obj + 0002:0001f8f4 __unwindtable$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 100b88f4 spell_scripts.cpp.obj + 0002:0001f8f4 __unwindtable$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100b88f4 spellcast.cpp.obj + 0002:0001f8fc __ehfuncinfo$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100b88fc items.cpp.obj + 0002:0001f8fc __ehfuncinfo$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 100b88fc main.cpp.obj + 0002:0001f8fc __ehfuncinfo$?CGPetInfo_SetPetHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1II@Z 100b88fc pet.cpp.obj + 0002:0001f8fc __ehfuncinfo$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 100b88fc spell_scripts.cpp.obj + 0002:0001f8fc __ehfuncinfo$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100b88fc spellcast.cpp.obj + 0002:0001f920 __catchsym$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$7 100b8920 main.cpp.obj + 0002:0001f930 __tryblocktable$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 100b8930 main.cpp.obj + 0002:0001f944 __ehfuncinfo$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 100b8944 main.cpp.obj + 0002:0001f968 __unwindtable$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 100b8968 main.cpp.obj + 0002:0001f990 __unwindtable$?checkForStopChanneling@Nampower@@YAXXZ 100b8990 main.cpp.obj + 0002:0001f9a0 __ehfuncinfo$?checkForStopChanneling@Nampower@@YAXXZ 100b89a0 main.cpp.obj + 0002:0001f9c4 __ehfuncinfo$?updateFromCvar@Nampower@@YAXPBD0@Z 100b89c4 main.cpp.obj + 0002:0001f9e8 __unwindtable$?updateFromCvar@Nampower@@YAXPBD0@Z 100b89e8 main.cpp.obj + 0002:0001fb30 __unwindtable$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 100b8b30 main.cpp.obj + 0002:0001fb30 __unwindtable$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 100b8b30 main.cpp.obj + 0002:0001fb30 __unwindtable$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 100b8b30 main.cpp.obj + 0002:0001fb30 __unwindtable$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 100b8b30 main.cpp.obj + 0002:0001fb30 __unwindtable$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 100b8b30 main.cpp.obj + 0002:0001fb30 __unwindtable$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 100b8b30 main.cpp.obj + 0002:0001fb30 __unwindtable$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 100b8b30 main.cpp.obj + 0002:0001fb38 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 100b8b38 main.cpp.obj + 0002:0001fb38 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 100b8b38 main.cpp.obj + 0002:0001fb38 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 100b8b38 main.cpp.obj + 0002:0001fb38 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 100b8b38 main.cpp.obj + 0002:0001fb38 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 100b8b38 main.cpp.obj + 0002:0001fb38 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAI@Z@detail@hadesmem@@SIXPAI@Z 100b8b38 main.cpp.obj + 0002:0001fb38 __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_KPBD@Z@detail@hadesmem@@SI_KPBD@Z 100b8b38 main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb5c __ehfuncinfo$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 100b8b5c main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI11@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI11@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1II@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1II@Z@std@@1@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KI@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_KPBDHHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_KPBDHHH@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_KPBD@ZABV?$function@$$A6A_KPAVPatchDetourBase@hadesmem@@PBD@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fb80 __unwindtable$??0?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAUEVENT_DATA_KEY@@H@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAUEVENT_DATA_KEY@@H@Z@std@@PAX@Z 100b8b80 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbd8 __ehfuncinfo$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b8bd8 main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fbfc __unwindtable$?Apply@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b8bfc main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc44 __unwindtable$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b8c44 main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc4c __ehfuncinfo$?Remove@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100b8c4c main.cpp.obj + 0002:0001fc70 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$3 100b8c70 main.cpp.obj + 0002:0001fc80 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b8c80 main.cpp.obj + 0002:0001fc94 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b8c94 main.cpp.obj + 0002:0001fcac __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100b8cac main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcd0 __unwindtable$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 100b8cd0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fcf0 __ehfuncinfo$?GetPatchSize@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@MBEIXZ 100b8cf0 main.cpp.obj + 0002:0001fd14 __ehfuncinfo$?loadConfig@Nampower@@YAXXZ 100b8d14 main.cpp.obj + 0002:0001fd38 __unwindtable$?loadConfig@Nampower@@YAXXZ 100b8d38 main.cpp.obj + 0002:0001fd98 __unwindtable$?initHooks@Nampower@@YAXXZ 100b8d98 main.cpp.obj + 0002:0001fdb0 __ehfuncinfo$?initHooks@Nampower@@YAXXZ 100b8db0 main.cpp.obj + 0002:0001fdd4 __tryblocktable$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 100b8dd4 main.cpp.obj + 0002:0001fde8 __ehfuncinfo$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 100b8de8 main.cpp.obj + 0002:0001fe0c __catchsym$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$28 100b8e0c main.cpp.obj + 0002:0001fe3c __unwindtable$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 100b8e3c main.cpp.obj + 0002:0001fecc __tryblocktable$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 100b8ecc main.cpp.obj + 0002:0001fee0 __ehfuncinfo$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 100b8ee0 main.cpp.obj + 0002:0001ff04 __catchsym$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$28 100b8f04 main.cpp.obj + 0002:0001ff34 __unwindtable$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 100b8f34 main.cpp.obj + 0002:0001ffc4 __tryblocktable$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 100b8fc4 main.cpp.obj + 0002:0001ffd8 __ehfuncinfo$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 100b8fd8 main.cpp.obj + 0002:0001fffc __catchsym$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$28 100b8ffc main.cpp.obj + 0002:0002002c __unwindtable$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 100b902c main.cpp.obj + 0002:000200bc __tryblocktable$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 100b90bc main.cpp.obj + 0002:000200d0 __ehfuncinfo$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 100b90d0 main.cpp.obj + 0002:000200f4 __catchsym$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$28 100b90f4 main.cpp.obj + 0002:00020124 __unwindtable$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 100b9124 main.cpp.obj + 0002:000201b4 __tryblocktable$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100b91b4 main.cpp.obj + 0002:000201c8 __ehfuncinfo$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100b91c8 main.cpp.obj + 0002:000201ec __catchsym$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$28 100b91ec main.cpp.obj + 0002:0002021c __unwindtable$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100b921c main.cpp.obj + 0002:000202ac __tryblocktable$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100b92ac main.cpp.obj + 0002:000202c0 __ehfuncinfo$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100b92c0 main.cpp.obj + 0002:000202e4 __catchsym$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$28 100b92e4 main.cpp.obj + 0002:00020314 __unwindtable$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100b9314 main.cpp.obj + 0002:000203a4 __tryblocktable$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100b93a4 main.cpp.obj + 0002:000203b8 __ehfuncinfo$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100b93b8 main.cpp.obj + 0002:000203dc __catchsym$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$28 100b93dc main.cpp.obj + 0002:0002040c __unwindtable$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100b940c main.cpp.obj + 0002:0002049c __tryblocktable$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 100b949c main.cpp.obj + 0002:000204b0 __ehfuncinfo$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 100b94b0 main.cpp.obj + 0002:000204d4 __catchsym$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$28 100b94d4 main.cpp.obj + 0002:00020504 __unwindtable$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 100b9504 main.cpp.obj + 0002:00020594 __tryblocktable$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100b9594 main.cpp.obj + 0002:000205a8 __ehfuncinfo$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100b95a8 main.cpp.obj + 0002:000205cc __catchsym$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$28 100b95cc main.cpp.obj + 0002:000205fc __unwindtable$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100b95fc main.cpp.obj + 0002:0002068c __tryblocktable$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 100b968c main.cpp.obj + 0002:000206a0 __ehfuncinfo$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 100b96a0 main.cpp.obj + 0002:000206c4 __catchsym$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$28 100b96c4 main.cpp.obj + 0002:000206f4 __unwindtable$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 100b96f4 main.cpp.obj + 0002:00020784 __tryblocktable$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100b9784 main.cpp.obj + 0002:00020798 __ehfuncinfo$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100b9798 main.cpp.obj + 0002:000207bc __catchsym$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z$28 100b97bc main.cpp.obj + 0002:000207ec __unwindtable$??$createHook@P6I_KPBD@ZP6A_KPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_KPAVPatchDetourBase@4@PBD@Z@Z 100b97ec main.cpp.obj + 0002:0002087c __tryblocktable$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 100b987c main.cpp.obj + 0002:00020890 __ehfuncinfo$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 100b9890 main.cpp.obj + 0002:000208b4 __catchsym$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$28 100b98b4 main.cpp.obj + 0002:000208e4 __unwindtable$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 100b98e4 main.cpp.obj + 0002:00020974 __tryblocktable$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100b9974 main.cpp.obj + 0002:00020988 __ehfuncinfo$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100b9988 main.cpp.obj + 0002:000209ac __catchsym$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$28 100b99ac main.cpp.obj + 0002:000209dc __unwindtable$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100b99dc main.cpp.obj + 0002:00020a6c __tryblocktable$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 100b9a6c main.cpp.obj + 0002:00020a80 __ehfuncinfo$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 100b9a80 main.cpp.obj + 0002:00020aa4 __catchsym$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$28 100b9aa4 main.cpp.obj + 0002:00020ad4 __unwindtable$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 100b9ad4 main.cpp.obj + 0002:00020b64 __tryblocktable$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 100b9b64 main.cpp.obj + 0002:00020b78 __ehfuncinfo$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 100b9b78 main.cpp.obj + 0002:00020b9c __catchsym$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$28 100b9b9c main.cpp.obj + 0002:00020bcc __unwindtable$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 100b9bcc main.cpp.obj + 0002:00020c5c __tryblocktable$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 100b9c5c main.cpp.obj + 0002:00020c70 __ehfuncinfo$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 100b9c70 main.cpp.obj + 0002:00020c94 __catchsym$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$28 100b9c94 main.cpp.obj + 0002:00020cc4 __unwindtable$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 100b9cc4 main.cpp.obj + 0002:00020d54 __tryblocktable$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 100b9d54 main.cpp.obj + 0002:00020d68 __ehfuncinfo$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 100b9d68 main.cpp.obj + 0002:00020d8c __catchsym$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$28 100b9d8c main.cpp.obj + 0002:00020dbc __unwindtable$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 100b9dbc main.cpp.obj + 0002:00020e4c __tryblocktable$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 100b9e4c main.cpp.obj + 0002:00020e60 __ehfuncinfo$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 100b9e60 main.cpp.obj + 0002:00020e84 __catchsym$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$28 100b9e84 main.cpp.obj + 0002:00020eb4 __unwindtable$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 100b9eb4 main.cpp.obj + 0002:00020f44 __tryblocktable$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 100b9f44 main.cpp.obj + 0002:00020f58 __ehfuncinfo$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 100b9f58 main.cpp.obj + 0002:00020f7c __catchsym$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z$28 100b9f7c main.cpp.obj + 0002:00020fac __unwindtable$??$createHook@P6IIPAI00@ZP6AIPAVPatchDetourBase@hadesmem@@000@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI33@Z@Z 100b9fac main.cpp.obj + 0002:0002103c __tryblocktable$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100ba03c main.cpp.obj + 0002:00021050 __ehfuncinfo$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100ba050 main.cpp.obj + 0002:00021074 __catchsym$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$28 100ba074 main.cpp.obj + 0002:000210a4 __unwindtable$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100ba0a4 main.cpp.obj + 0002:00021134 __tryblocktable$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 100ba134 main.cpp.obj + 0002:00021148 __ehfuncinfo$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 100ba148 main.cpp.obj + 0002:0002116c __catchsym$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$28 100ba16c main.cpp.obj + 0002:0002119c __unwindtable$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 100ba19c main.cpp.obj + 0002:0002122c __tryblocktable$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 100ba22c main.cpp.obj + 0002:00021240 __ehfuncinfo$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 100ba240 main.cpp.obj + 0002:00021264 __catchsym$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$28 100ba264 main.cpp.obj + 0002:00021294 __unwindtable$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 100ba294 main.cpp.obj + 0002:00021324 __tryblocktable$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 100ba324 main.cpp.obj + 0002:00021338 __ehfuncinfo$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 100ba338 main.cpp.obj + 0002:0002135c __catchsym$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$28 100ba35c main.cpp.obj + 0002:0002138c __unwindtable$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 100ba38c main.cpp.obj + 0002:0002141c __tryblocktable$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 100ba41c main.cpp.obj + 0002:00021430 __ehfuncinfo$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 100ba430 main.cpp.obj + 0002:00021454 __catchsym$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$28 100ba454 main.cpp.obj + 0002:00021484 __unwindtable$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 100ba484 main.cpp.obj + 0002:00021514 __tryblocktable$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 100ba514 main.cpp.obj + 0002:00021528 __ehfuncinfo$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 100ba528 main.cpp.obj + 0002:0002154c __catchsym$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z$28 100ba54c main.cpp.obj + 0002:0002157c __unwindtable$??$createHook@P6I_NPAUEVENT_DATA_KEY@@H@ZP6A_NPAVPatchDetourBase@hadesmem@@0H@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAUEVENT_DATA_KEY@@H@Z@Z 100ba57c main.cpp.obj + 0002:0002160c __tryblocktable$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 100ba60c main.cpp.obj + 0002:00021620 __ehfuncinfo$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 100ba620 main.cpp.obj + 0002:00021644 __catchsym$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z$28 100ba644 main.cpp.obj + 0002:00021674 __unwindtable$??$createHook@P6IXPA_KI@ZP6AXPAVPatchDetourBase@hadesmem@@0I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KI@Z@Z 100ba674 main.cpp.obj + 0002:00021704 __tryblocktable$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 100ba704 main.cpp.obj + 0002:00021718 __ehfuncinfo$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 100ba718 main.cpp.obj + 0002:0002173c __catchsym$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z$28 100ba73c main.cpp.obj + 0002:0002176c __unwindtable$??$createHook@P6IXPAX0II@ZP6AXPAVPatchDetourBase@hadesmem@@00II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3II@Z@Z 100ba76c main.cpp.obj + 0002:000217fc __tryblocktable$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 100ba7fc main.cpp.obj + 0002:00021810 __ehfuncinfo$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 100ba810 main.cpp.obj + 0002:00021834 __catchsym$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z$28 100ba834 main.cpp.obj + 0002:00021864 __unwindtable$??$createHook@P6IXPAI@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAI@Z@Z 100ba864 main.cpp.obj + 0002:000218f4 __tryblocktable$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 100ba8f4 main.cpp.obj + 0002:00021908 __ehfuncinfo$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 100ba908 main.cpp.obj + 0002:0002192c __catchsym$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z$28 100ba92c main.cpp.obj + 0002:0002195c __unwindtable$??$createHook@P6IXPA_KPBDHHH@ZP6AXPAVPatchDetourBase@hadesmem@@01HHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_KPBDHHH@Z@Z 100ba95c main.cpp.obj + 0002:000219ec __tryblocktable$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 100ba9ec main.cpp.obj + 0002:00021a00 __ehfuncinfo$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 100baa00 main.cpp.obj + 0002:00021a24 __catchsym$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$28 100baa24 main.cpp.obj + 0002:00021a54 __unwindtable$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 100baa54 main.cpp.obj + 0002:00021ae4 __tryblocktable$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 100baae4 main.cpp.obj + 0002:00021af8 __ehfuncinfo$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 100baaf8 main.cpp.obj + 0002:00021b1c __catchsym$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$28 100bab1c main.cpp.obj + 0002:00021b4c __unwindtable$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 100bab4c main.cpp.obj + 0002:00021bdc __tryblocktable$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100babdc main.cpp.obj + 0002:00021bf0 __ehfuncinfo$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100babf0 main.cpp.obj + 0002:00021c14 __catchsym$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$28 100bac14 main.cpp.obj + 0002:00021c44 __unwindtable$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 100bac44 main.cpp.obj + 0002:00021cd4 __unwindtable$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100bacd4 main.cpp.obj + 0002:00021cdc __ehfuncinfo$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100bacdc main.cpp.obj + 0002:00021d00 __unwindtable$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 100bad00 main.cpp.obj + 0002:00021d00 __unwindtable$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 100bad00 main.cpp.obj + 0002:00021d00 __unwindtable$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 100bad00 main.cpp.obj + 0002:00021d08 __ehfuncinfo$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 100bad08 main.cpp.obj + 0002:00021d08 __ehfuncinfo$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 100bad08 main.cpp.obj + 0002:00021d08 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 100bad08 main.cpp.obj + 0002:00021d2c __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$3 100bad2c main.cpp.obj + 0002:00021d3c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100bad3c main.cpp.obj + 0002:00021d50 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100bad50 main.cpp.obj + 0002:00021d68 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100bad68 main.cpp.obj + 0002:00021d8c __unwindtable$??R@@QBE@XZ 100bad8c main.cpp.obj + 0002:00021dac __ehfuncinfo$??R@@QBE@XZ 100badac main.cpp.obj + 0002:00021dd0 __tryblocktable$_Load 100badd0 main.cpp.obj + 0002:00021de4 __catchsym$_Load$8 100bade4 main.cpp.obj + 0002:00021e04 __unwindtable$_Load 100bae04 main.cpp.obj + 0002:00021e24 __ehfuncinfo$_Load 100bae24 main.cpp.obj + 0002:00021e48 __unwindtable$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 100bae48 main.cpp.obj + 0002:00021e50 __ehfuncinfo$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 100bae50 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e74 __unwindtable$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 100bae74 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI33@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI66@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3II@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6II@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_KI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_KI@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K1HHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K0HHH@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@2@1@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@AAPAXABQAP6I_KPAVPatchDetourBase@1@0@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021e94 __ehfuncinfo$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAUEVENT_DATA_KEY@@H@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAUEVENT_DATA_KEY@@H@Z$$QAPAX@Z 100bae94 main.cpp.obj + 0002:00021eb8 __unwindtable$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 100baeb8 main.cpp.obj + 0002:00021ec0 __ehfuncinfo$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 100baec0 main.cpp.obj + 0002:00021ee4 __unwindtable$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 100baee4 main.cpp.obj + 0002:00021ef4 __ehfuncinfo$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 100baef4 main.cpp.obj + 0002:00021f18 __unwindtable$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 100baf18 main.cpp.obj + 0002:00021f18 __unwindtable$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 100baf18 main.cpp.obj + 0002:00021f20 __ehfuncinfo$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 100baf20 main.cpp.obj + 0002:00021f20 __ehfuncinfo$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 100baf20 main.cpp.obj + 0002:00021f44 __unwindtable$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 100baf44 main.cpp.obj + 0002:00021f64 __ehfuncinfo$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 100baf64 main.cpp.obj + 0002:00021f88 __unwindtable$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 100baf88 main.cpp.obj + 0002:00021fa8 __ehfuncinfo$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 100bafa8 main.cpp.obj + 0002:00021fcc __unwindtable$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 100bafcc main.cpp.obj + 0002:00021fdc __ehfuncinfo$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 100bafdc main.cpp.obj + 0002:00022000 __ehfuncinfo$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 100bb000 main.cpp.obj + 0002:00022024 __unwindtable$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 100bb024 main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 100bb04c main.cpp.obj + 0002:0002204c __unwindtable$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 100bb04c main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IIPAI00@Z@detail@hadesmem@@SIIPAI00@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAX0II@Z@detail@hadesmem@@SIXPAX0II@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPA_KI@Z@detail@hadesmem@@SIXPA_KI@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXPA_KPBDHHH@Z@detail@hadesmem@@SIXPA_KPBDHHH@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 100bb054 main.cpp.obj + 0002:00022054 __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_NPAUEVENT_DATA_KEY@@H@Z@detail@hadesmem@@SI_NPAUEVENT_DATA_KEY@@H@Z 100bb054 main.cpp.obj + 0002:00022078 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ$3 100bb078 main.cpp.obj + 0002:00022088 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100bb088 main.cpp.obj + 0002:0002209c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100bb09c main.cpp.obj + 0002:000220b4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPA_KPBDHHH@ZPAX@hadesmem@@UAEXXZ 100bb0b4 main.cpp.obj + 0002:000220d8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ$3 100bb0d8 main.cpp.obj + 0002:000220e8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100bb0e8 main.cpp.obj + 0002:000220fc __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100bb0fc main.cpp.obj + 0002:00022114 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAI@ZPAX@hadesmem@@UAEXXZ 100bb114 main.cpp.obj + 0002:00022138 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ$3 100bb138 main.cpp.obj + 0002:00022148 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100bb148 main.cpp.obj + 0002:0002215c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100bb15c main.cpp.obj + 0002:00022174 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAX0II@ZPAX@hadesmem@@UAEXXZ 100bb174 main.cpp.obj + 0002:00022198 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ$3 100bb198 main.cpp.obj + 0002:000221a8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100bb1a8 main.cpp.obj + 0002:000221bc __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100bb1bc main.cpp.obj + 0002:000221d4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPA_KI@ZPAX@hadesmem@@UAEXXZ 100bb1d4 main.cpp.obj + 0002:000221f8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ$3 100bb1f8 main.cpp.obj + 0002:00022208 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100bb208 main.cpp.obj + 0002:0002221c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100bb21c main.cpp.obj + 0002:00022234 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_KPBD@ZPAX@hadesmem@@UAEXXZ 100bb234 main.cpp.obj + 0002:00022258 __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ$3 100bb258 main.cpp.obj + 0002:00022268 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100bb268 main.cpp.obj + 0002:0002227c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100bb27c main.cpp.obj + 0002:00022294 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_NPAUEVENT_DATA_KEY@@H@ZPAX@hadesmem@@UAEXXZ 100bb294 main.cpp.obj + 0002:000222b8 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ$3 100bb2b8 main.cpp.obj + 0002:000222c8 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100bb2c8 main.cpp.obj + 0002:000222dc __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100bb2dc main.cpp.obj + 0002:000222f4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IIPAI00@ZPAX@hadesmem@@UAEXXZ 100bb2f4 main.cpp.obj + 0002:00022318 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$3 100bb318 main.cpp.obj + 0002:00022328 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100bb328 main.cpp.obj + 0002:0002233c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100bb33c main.cpp.obj + 0002:00022354 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100bb354 main.cpp.obj + 0002:00022378 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$3 100bb378 main.cpp.obj + 0002:00022388 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100bb388 main.cpp.obj + 0002:0002239c __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100bb39c main.cpp.obj + 0002:000223b4 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100bb3b4 main.cpp.obj + 0002:000223d8 __unwindtable$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 100bb3d8 main.cpp.obj + 0002:000223d8 __unwindtable$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 100bb3d8 main.cpp.obj + 0002:000223e0 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 100bb3e0 main.cpp.obj + 0002:000223e0 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 100bb3e0 main.cpp.obj + 0002:00022404 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$3 100bb404 main.cpp.obj + 0002:00022414 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100bb414 main.cpp.obj + 0002:00022428 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100bb428 main.cpp.obj + 0002:00022440 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100bb440 main.cpp.obj + 0002:00022464 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$3 100bb464 main.cpp.obj + 0002:00022474 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100bb474 main.cpp.obj + 0002:00022488 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100bb488 main.cpp.obj + 0002:000224a0 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100bb4a0 main.cpp.obj + 0002:000224c4 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$3 100bb4c4 main.cpp.obj + 0002:000224d4 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100bb4d4 main.cpp.obj + 0002:000224e8 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100bb4e8 main.cpp.obj + 0002:00022500 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100bb500 main.cpp.obj + 0002:00022524 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$3 100bb524 main.cpp.obj + 0002:00022534 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100bb534 main.cpp.obj + 0002:00022548 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100bb548 main.cpp.obj + 0002:00022560 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100bb560 main.cpp.obj + 0002:00022584 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100bb584 main.cpp.obj + 0002:00022594 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb594 main.cpp.obj + 0002:000225a8 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb5a8 main.cpp.obj + 0002:000225c0 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb5c0 main.cpp.obj + 0002:000225e4 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100bb5e4 main.cpp.obj + 0002:000225f4 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb5f4 main.cpp.obj + 0002:00022608 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb608 main.cpp.obj + 0002:00022620 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb620 main.cpp.obj + 0002:00022644 __catchsym$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100bb644 main.cpp.obj + 0002:00022654 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb654 main.cpp.obj + 0002:00022668 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb668 main.cpp.obj + 0002:00022680 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb680 main.cpp.obj + 0002:000226a4 __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$3 100bb6a4 main.cpp.obj + 0002:000226b4 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100bb6b4 main.cpp.obj + 0002:000226c8 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100bb6c8 main.cpp.obj + 0002:000226e0 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100bb6e0 main.cpp.obj + 0002:00022704 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$3 100bb704 main.cpp.obj + 0002:00022714 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100bb714 main.cpp.obj + 0002:00022728 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100bb728 main.cpp.obj + 0002:00022740 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100bb740 main.cpp.obj + 0002:00022764 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$3 100bb764 main.cpp.obj + 0002:00022774 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100bb774 main.cpp.obj + 0002:00022788 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100bb788 main.cpp.obj + 0002:000227a0 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100bb7a0 main.cpp.obj + 0002:000227c4 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$3 100bb7c4 main.cpp.obj + 0002:000227d4 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100bb7d4 main.cpp.obj + 0002:000227e8 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100bb7e8 main.cpp.obj + 0002:00022800 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100bb800 main.cpp.obj + 0002:00022824 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$3 100bb824 main.cpp.obj + 0002:00022834 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100bb834 main.cpp.obj + 0002:00022848 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100bb848 main.cpp.obj + 0002:00022860 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100bb860 main.cpp.obj + 0002:00022884 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 100bb884 main.cpp.obj + 0002:00022894 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb894 main.cpp.obj + 0002:000228a8 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb8a8 main.cpp.obj + 0002:000228c0 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100bb8c0 main.cpp.obj + 0002:000228e4 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$3 100bb8e4 main.cpp.obj + 0002:000228f4 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100bb8f4 main.cpp.obj + 0002:00022908 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100bb908 main.cpp.obj + 0002:00022920 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100bb920 main.cpp.obj + 0002:00022944 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$3 100bb944 main.cpp.obj + 0002:00022954 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100bb954 main.cpp.obj + 0002:00022968 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100bb968 main.cpp.obj + 0002:00022980 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100bb980 main.cpp.obj + 0002:000229a4 __unwindtable$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 100bb9a4 main.cpp.obj + 0002:000229ac __ehfuncinfo$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 100bb9ac main.cpp.obj + 0002:000229d0 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$3 100bb9d0 main.cpp.obj + 0002:000229e0 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100bb9e0 main.cpp.obj + 0002:000229f4 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100bb9f4 main.cpp.obj + 0002:00022a0c __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100bba0c main.cpp.obj + 0002:00022a30 __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$3 100bba30 main.cpp.obj + 0002:00022a40 __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100bba40 main.cpp.obj + 0002:00022a54 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100bba54 main.cpp.obj + 0002:00022a6c __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100bba6c main.cpp.obj + 0002:00022a90 __unwindtable$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 100bba90 main.cpp.obj + 0002:00022a90 __unwindtable$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 100bba90 main.cpp.obj + 0002:00022a98 __ehfuncinfo$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 100bba98 main.cpp.obj + 0002:00022a98 __ehfuncinfo$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 100bba98 main.cpp.obj + 0002:00022abc __catchsym$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$3 100bbabc main.cpp.obj + 0002:00022acc __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100bbacc main.cpp.obj + 0002:00022ae0 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100bbae0 main.cpp.obj + 0002:00022af8 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100bbaf8 main.cpp.obj + 0002:00022b1c __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$3 100bbb1c main.cpp.obj + 0002:00022b2c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100bbb2c main.cpp.obj + 0002:00022b40 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100bbb40 main.cpp.obj + 0002:00022b58 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100bbb58 main.cpp.obj + 0002:00022b7c __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$3 100bbb7c main.cpp.obj + 0002:00022b8c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100bbb8c main.cpp.obj + 0002:00022ba0 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100bbba0 main.cpp.obj + 0002:00022bb8 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100bbbb8 main.cpp.obj + 0002:00022bdc __catchsym$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$3 100bbbdc main.cpp.obj + 0002:00022bec __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100bbbec main.cpp.obj + 0002:00022c00 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100bbc00 main.cpp.obj + 0002:00022c18 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100bbc18 main.cpp.obj + 0002:00022c3c __catchsym$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$3 100bbc3c main.cpp.obj + 0002:00022c4c __tryblocktable$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100bbc4c main.cpp.obj + 0002:00022c60 __unwindtable$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100bbc60 main.cpp.obj + 0002:00022c78 __ehfuncinfo$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100bbc78 main.cpp.obj + 0002:00022c9c __catchsym$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$5 100bbc9c main.cpp.obj + 0002:00022cac __tryblocktable$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100bbcac main.cpp.obj + 0002:00022cc0 __unwindtable$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100bbcc0 main.cpp.obj + 0002:00022ce0 __ehfuncinfo$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100bbce0 main.cpp.obj + 0002:00022d04 __ehfuncinfo$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100bbd04 main.cpp.obj + 0002:00022d28 __unwindtable$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100bbd28 main.cpp.obj + 0002:00022d90 __ehfuncinfo$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100bbd90 main.cpp.obj + 0002:00022db4 __unwindtable$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 100bbdb4 main.cpp.obj + 0002:00022e1c __unwindtable$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 100bbe1c main.cpp.obj + 0002:00022e3c __ehfuncinfo$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 100bbe3c main.cpp.obj + 0002:00022e60 __unwindtable$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 100bbe60 main.cpp.obj + 0002:00022e70 __ehfuncinfo$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 100bbe70 main.cpp.obj + 0002:00022e94 __unwindtable$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 100bbe94 main.cpp.obj + 0002:00022eb4 __ehfuncinfo$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 100bbeb4 main.cpp.obj + 0002:00022ed8 __catchsym$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$3 100bbed8 main.cpp.obj + 0002:00022ee8 __tryblocktable$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 100bbee8 main.cpp.obj + 0002:00022efc __unwindtable$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 100bbefc main.cpp.obj + 0002:00022f14 __ehfuncinfo$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 100bbf14 main.cpp.obj + 0002:00022f38 __unwindtable$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100bbf38 main.cpp.obj + 0002:00022f50 __ehfuncinfo$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 100bbf50 main.cpp.obj + 0002:00022f74 __unwindtable$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 100bbf74 main.cpp.obj + 0002:00022f7c __ehfuncinfo$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 100bbf7c main.cpp.obj + 0002:00022fa0 __unwindtable$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 100bbfa0 main.cpp.obj + 0002:00022fa8 __ehfuncinfo$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 100bbfa8 main.cpp.obj + 0002:00022fcc __catchsym$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z$3 100bbfcc main.cpp.obj + 0002:00022fdc __unwindtable$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 100bbfdc main.cpp.obj + 0002:00022fec __tryblocktable$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 100bbfec main.cpp.obj + 0002:00023000 __ehfuncinfo$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 100bc000 main.cpp.obj + 0002:00023024 __unwindtable$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100bc024 main.cpp.obj + 0002:0002303c __ehfuncinfo$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100bc03c main.cpp.obj + 0002:00023060 __unwindtable$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100bc060 main.cpp.obj + 0002:00023060 __unwindtable$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100bc060 main.cpp.obj + 0002:00023068 __ehfuncinfo$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100bc068 main.cpp.obj + 0002:00023068 __ehfuncinfo$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100bc068 main.cpp.obj + 0002:0002308c __unwindtable$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100bc08c main.cpp.obj + 0002:000230a4 __ehfuncinfo$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100bc0a4 main.cpp.obj + 0002:000230c8 __unwindtable$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100bc0c8 main.cpp.obj + 0002:000230e0 __ehfuncinfo$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100bc0e0 main.cpp.obj + 0002:00023104 __unwindtable$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100bc104 main.cpp.obj + 0002:0002311c __ehfuncinfo$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100bc11c main.cpp.obj + 0002:00023140 __ehfuncinfo$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 100bc140 main.cpp.obj + 0002:00023164 __unwindtable$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 100bc164 main.cpp.obj + 0002:000231a4 __ehfuncinfo$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 100bc1a4 main.cpp.obj + 0002:000231c8 __unwindtable$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 100bc1c8 main.cpp.obj + 0002:000231f0 __unwindtable$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 100bc1f0 main.cpp.obj + 0002:000231f0 __unwindtable$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 100bc1f0 main.cpp.obj + 0002:000231f8 __ehfuncinfo$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 100bc1f8 main.cpp.obj + 0002:000231f8 __ehfuncinfo$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 100bc1f8 main.cpp.obj + 0002:0002321c __catchsym$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z$3 100bc21c main.cpp.obj + 0002:0002322c __unwindtable$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 100bc22c main.cpp.obj + 0002:0002323c __tryblocktable$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 100bc23c main.cpp.obj + 0002:00023250 __ehfuncinfo$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 100bc250 main.cpp.obj + 0002:00023274 __catchsym$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z$3 100bc274 main.cpp.obj + 0002:00023284 __unwindtable$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 100bc284 main.cpp.obj + 0002:00023294 __tryblocktable$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 100bc294 main.cpp.obj + 0002:000232a8 __ehfuncinfo$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 100bc2a8 main.cpp.obj + 0002:000232cc __unwindtable$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 100bc2cc main.cpp.obj + 0002:000232e4 __ehfuncinfo$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 100bc2e4 main.cpp.obj + 0002:00023308 __catchsym$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$3 100bc308 main.cpp.obj + 0002:00023318 __unwindtable$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100bc318 main.cpp.obj + 0002:00023328 __tryblocktable$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100bc328 main.cpp.obj + 0002:0002333c __ehfuncinfo$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 100bc33c main.cpp.obj + 0002:00023360 __catchsym$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$3 100bc360 main.cpp.obj + 0002:00023370 __unwindtable$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100bc370 main.cpp.obj + 0002:00023380 __tryblocktable$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100bc380 main.cpp.obj + 0002:00023394 __ehfuncinfo$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 100bc394 main.cpp.obj + 0002:000235e0 __ehfuncinfo$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 100bc5e0 helper.cpp.obj + 0002:00023604 __unwindtable$?GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z 100bc604 helper.cpp.obj + 0002:0002362c __unwindtable$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 100bc62c helper.cpp.obj + 0002:00023644 __ehfuncinfo$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 100bc644 helper.cpp.obj + 0002:00023668 __unwindtable$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 100bc668 helper.cpp.obj + 0002:00023678 __ehfuncinfo$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 100bc678 helper.cpp.obj + 0002:0002369c __unwindtable$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bc69c helper.cpp.obj + 0002:000236ac __ehfuncinfo$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bc6ac helper.cpp.obj + 0002:000236d0 __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$7 100bc6d0 spellcast.cpp.obj + 0002:000236e0 __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100bc6e0 spellcast.cpp.obj + 0002:000236f4 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100bc6f4 spellcast.cpp.obj + 0002:00023718 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100bc718 spellcast.cpp.obj + 0002:00023740 __unwindtable$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 100bc740 spellcast.cpp.obj + 0002:00023750 __ehfuncinfo$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 100bc750 spellcast.cpp.obj + 0002:00023774 __unwindtable$?CastQueuedNormalSpell@Nampower@@YAXXZ 100bc774 spellcast.cpp.obj + 0002:00023784 __ehfuncinfo$?CastQueuedNormalSpell@Nampower@@YAXXZ 100bc784 spellcast.cpp.obj + 0002:000237a8 __unwindtable$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 100bc7a8 spellcast.cpp.obj + 0002:000237a8 __unwindtable$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 100bc7a8 spellcast.cpp.obj + 0002:000237a8 __unwindtable$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100bc7a8 spellevents.cpp.obj + 0002:000237b0 __ehfuncinfo$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 100bc7b0 spellcast.cpp.obj + 0002:000237b0 __ehfuncinfo$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 100bc7b0 spellcast.cpp.obj + 0002:000237b0 __ehfuncinfo$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 100bc7b0 spellevents.cpp.obj + 0002:000237d4 __ehfuncinfo$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 100bc7d4 spellcast.cpp.obj + 0002:000237f8 __unwindtable$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 100bc7f8 spellcast.cpp.obj + 0002:000238b8 __unwindtable$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 100bc8b8 spellcast.cpp.obj + 0002:000238c8 __ehfuncinfo$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 100bc8c8 spellcast.cpp.obj + 0002:000238ec __ehfuncinfo$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 100bc8ec spellcast.cpp.obj + 0002:00023910 __unwindtable$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 100bc910 spellcast.cpp.obj + 0002:00023938 __ehfuncinfo$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100bc938 spellchannel.cpp.obj + 0002:0002395c __unwindtable$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100bc95c spellchannel.cpp.obj + 0002:0002398c __unwindtable$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100bc98c spellchannel.cpp.obj + 0002:0002399c __ehfuncinfo$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100bc99c spellchannel.cpp.obj + 0002:000239c0 __ehfuncinfo$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 100bc9c0 spellevents.cpp.obj + 0002:000239e4 __unwindtable$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 100bc9e4 spellevents.cpp.obj + 0002:00023a5c __unwindtable$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100bca5c spellevents.cpp.obj + 0002:00023a74 __ehfuncinfo$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100bca74 spellevents.cpp.obj + 0002:00023a98 __unwindtable$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100bca98 spellevents.cpp.obj + 0002:00023ab0 __ehfuncinfo$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100bcab0 spellevents.cpp.obj + 0002:00023ad4 __unwindtable$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 100bcad4 spellevents.cpp.obj + 0002:00023ae4 __ehfuncinfo$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 100bcae4 spellevents.cpp.obj + 0002:00023b08 __ehfuncinfo$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 100bcb08 spellevents.cpp.obj + 0002:00023b2c __unwindtable$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 100bcb2c spellevents.cpp.obj + 0002:00023b5c __unwindtable$?RunQueuedScript@Nampower@@YA_NH@Z 100bcb5c misc_scripts.cpp.obj + 0002:00023b5c __unwindtable$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 100bcb5c misc_scripts.cpp.obj + 0002:00023b64 __ehfuncinfo$?RunQueuedScript@Nampower@@YA_NH@Z 100bcb64 misc_scripts.cpp.obj + 0002:00023b64 __ehfuncinfo$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 100bcb64 misc_scripts.cpp.obj + 0002:00023b88 __unwindtable$?InitializeFieldMaps@Nampower@@YAXXZ 100bcb88 dbc_fields.cpp.obj + 0002:00023b88 __unwindtable$?Script_QueueScript@Nampower@@YAIPAI@Z 100bcb88 misc_scripts.cpp.obj + 0002:00023ba8 __ehfuncinfo$?InitializeFieldMaps@Nampower@@YAXXZ 100bcba8 dbc_fields.cpp.obj + 0002:00023ba8 __ehfuncinfo$?Script_QueueScript@Nampower@@YAIPAI@Z 100bcba8 misc_scripts.cpp.obj + 0002:00023bcc __unwindtable$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 100bcbcc item_scripts.cpp.obj + 0002:00023bcc __unwindtable$?Script_GetUnitField@Nampower@@YAIPAI@Z 100bcbcc misc_scripts.cpp.obj + 0002:00023bcc __unwindtable$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 100bcbcc spell_scripts.cpp.obj + 0002:00023bd4 __ehfuncinfo$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 100bcbd4 item_scripts.cpp.obj + 0002:00023bd4 __ehfuncinfo$?Script_GetUnitField@Nampower@@YAIPAI@Z 100bcbd4 misc_scripts.cpp.obj + 0002:00023bd4 __ehfuncinfo$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 100bcbd4 spell_scripts.cpp.obj + 0002:00023bf8 __ehfuncinfo$?TryDisenchant@Nampower@@YA_NXZ 100bcbf8 misc_scripts.cpp.obj + 0002:00023c1c __unwindtable$?TryDisenchant@Nampower@@YA_NXZ 100bcc1c misc_scripts.cpp.obj + 0002:00023c44 __unwindtable$?Script_DisenchantAll@Nampower@@YAIPAI@Z 100bcc44 misc_scripts.cpp.obj + 0002:00023c4c __ehfuncinfo$?Script_DisenchantAll@Nampower@@YAIPAI@Z 100bcc4c misc_scripts.cpp.obj + 0002:00023c70 __unwindtable$?Script_LearnTalentRank@Nampower@@YAIPAI@Z 100bcc70 misc_scripts.cpp.obj + 0002:00023c80 __ehfuncinfo$?Script_LearnTalentRank@Nampower@@YAIPAI@Z 100bcc80 misc_scripts.cpp.obj + 0002:00023ca4 __unwindtable$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 100bcca4 items.cpp.obj + 0002:00023ca4 __unwindtable$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 100bcca4 misc_scripts.cpp.obj + 0002:00023cb4 __ehfuncinfo$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 100bccb4 items.cpp.obj + 0002:00023cb4 __ehfuncinfo$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 100bccb4 misc_scripts.cpp.obj + 0002:00023cd8 __unwindtable$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100bccd8 item_scripts.cpp.obj + 0002:00023cd8 __unwindtable$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100bccd8 misc_scripts.cpp.obj + 0002:00023cd8 __unwindtable$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100bccd8 spell_scripts.cpp.obj + 0002:00023ce0 __ehfuncinfo$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100bcce0 item_scripts.cpp.obj + 0002:00023ce0 __ehfuncinfo$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100bcce0 misc_scripts.cpp.obj + 0002:00023ce0 __ehfuncinfo$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 100bcce0 spell_scripts.cpp.obj + 0002:00023d04 __unwindtable$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bcd04 dbc_fields.cpp.obj + 0002:00023d04 __unwindtable$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bcd04 misc_scripts.cpp.obj + 0002:00023d14 __ehfuncinfo$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bcd14 dbc_fields.cpp.obj + 0002:00023d14 __ehfuncinfo$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bcd14 misc_scripts.cpp.obj + 0002:00023d38 __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$8 100bcd38 file_scripts.cpp.obj + 0002:00023d48 __catchsym$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$7 100bcd48 file_scripts.cpp.obj + 0002:00023d58 __ehfuncinfo$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100bcd58 file_scripts.cpp.obj + 0002:00023d7c __tryblocktable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100bcd7c file_scripts.cpp.obj + 0002:00023da4 __unwindtable$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 100bcda4 file_scripts.cpp.obj + 0002:00023dd4 __unwindtable$?Script_CustomFileExists@Nampower@@YAIPAI@Z 100bcdd4 file_scripts.cpp.obj + 0002:00023dd4 __unwindtable$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 100bcdd4 spell_scripts.cpp.obj + 0002:00023dd4 __unwindtable$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 100bcdd4 spell_scripts.cpp.obj + 0002:00023ddc __ehfuncinfo$?Script_CustomFileExists@Nampower@@YAIPAI@Z 100bcddc file_scripts.cpp.obj + 0002:00023ddc __ehfuncinfo$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 100bcddc spell_scripts.cpp.obj + 0002:00023ddc __ehfuncinfo$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 100bcddc spell_scripts.cpp.obj + 0002:00023e00 __unwindtable$?Script_ExecuteCustomLuaFile@Nampower@@YAIPAI@Z 100bce00 file_scripts.cpp.obj + 0002:00023e18 __ehfuncinfo$?Script_ExecuteCustomLuaFile@Nampower@@YAIPAI@Z 100bce18 file_scripts.cpp.obj + 0002:00023e3c __unwindtable$?Script_EncryptPassword@Nampower@@YAIPAI@Z 100bce3c file_scripts.cpp.obj + 0002:00023e5c __ehfuncinfo$?Script_EncryptPassword@Nampower@@YAIPAI@Z 100bce5c file_scripts.cpp.obj + 0002:00023e80 __unwindtable$?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z 100bce80 file_scripts.cpp.obj + 0002:00023ea0 __ehfuncinfo$?Script_EncryptedServerLogin@Nampower@@YAIPAI@Z 100bcea0 file_scripts.cpp.obj + 0002:00023ec4 __unwindtable$?GetEnvVar@Nampower@@YA_NPBDAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100bcec4 file_scripts.cpp.obj + 0002:00023ecc __ehfuncinfo$?GetEnvVar@Nampower@@YA_NPBDAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100bcecc file_scripts.cpp.obj + 0002:00023ef0 __unwindtable$?DecryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 100bcef0 file_scripts.cpp.obj + 0002:00023ef0 __unwindtable$?EncryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 100bcef0 file_scripts.cpp.obj + 0002:00023ef8 __ehfuncinfo$?DecryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 100bcef8 file_scripts.cpp.obj + 0002:00023ef8 __ehfuncinfo$?EncryptDpapiBase64@Nampower@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0AAV23@@Z 100bcef8 file_scripts.cpp.obj + 0002:00023f1c __unwindtable$?BuildPath@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD0_N@Z 100bcf1c file_scripts.cpp.obj + 0002:00023f2c __ehfuncinfo$?BuildPath@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD0_N@Z 100bcf2c file_scripts.cpp.obj + 0002:00023f50 __ehfuncinfo$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100bcf50 file_scripts.cpp.obj + 0002:00023f74 __unwindtable$?ResolveValidatedPath@Nampower@@YA_NPBD0_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100bcf74 file_scripts.cpp.obj + 0002:00023f9c __ehfuncinfo$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z 100bcf9c file_scripts.cpp.obj + 0002:00023fc0 __unwindtable$?ReadFileFromDirectory@Nampower@@YAIPAIPBD_N2@Z 100bcfc0 file_scripts.cpp.obj + 0002:00024010 __ehfuncinfo$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z 100bd010 file_scripts.cpp.obj + 0002:00024034 __unwindtable$?WriteFileToDirectory@Nampower@@YAIPAIPBD_N1D1@Z 100bd034 file_scripts.cpp.obj + 0002:00024074 __unwindtable$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 100bd074 spell_scripts.cpp.obj + 0002:00024084 __ehfuncinfo$?Script_CastSpellNoQueue@Nampower@@YAIPAI@Z 100bd084 spell_scripts.cpp.obj + 0002:000240a8 __unwindtable$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 100bd0a8 spell_scripts.cpp.obj + 0002:000240c0 __ehfuncinfo$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 100bd0c0 spell_scripts.cpp.obj + 0002:000240e4 __unwindtable$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100bd0e4 item_scripts.cpp.obj + 0002:000240f4 __ehfuncinfo$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100bd0f4 item_scripts.cpp.obj + 0002:00024118 __ehfuncinfo$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 100bd118 items.cpp.obj + 0002:0002413c __unwindtable$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 100bd13c items.cpp.obj + 0002:0002416c __unwindtable$??__EitemStatsCache@Nampower@@YAXXZ 100bd16c items.cpp.obj + 0002:0002417c __ehfuncinfo$??__EitemStatsCache@Nampower@@YAXXZ 100bd17c items.cpp.obj + 0002:000241a0 __unwindtable$??__EitemNameToIdCache@Nampower@@YAXXZ 100bd1a0 items.cpp.obj + 0002:000241b0 __ehfuncinfo$??__EitemNameToIdCache@Nampower@@YAXXZ 100bd1b0 items.cpp.obj + 0002:000241d4 __unwindtable$??__EpendingItemIds@Nampower@@YAXXZ 100bd1d4 items.cpp.obj + 0002:000241e4 __ehfuncinfo$??__EpendingItemIds@Nampower@@YAXXZ 100bd1e4 items.cpp.obj + 0002:00024208 __unwindtable$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 100bd208 items.cpp.obj + 0002:00024210 __ehfuncinfo$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 100bd210 items.cpp.obj + 0002:00024234 __unwindtable$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 100bd234 items.cpp.obj + 0002:00024244 __ehfuncinfo$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 100bd244 items.cpp.obj + 0002:00024268 __unwindtable$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 100bd268 items.cpp.obj + 0002:00024278 __ehfuncinfo$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 100bd278 items.cpp.obj + 0002:0002429c __unwindtable$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bd29c items.cpp.obj + 0002:000242ac __ehfuncinfo$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100bd2ac items.cpp.obj + 0002:000242d0 __unwindtable$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 100bd2d0 items.cpp.obj + 0002:000242e0 __ehfuncinfo$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 100bd2e0 items.cpp.obj + 0002:00024304 __unwindtable$?InitializeUnitFieldMaps@Nampower@@YAXXZ 100bd304 unit_fields.cpp.obj + 0002:00024314 __ehfuncinfo$?InitializeUnitFieldMaps@Nampower@@YAXXZ 100bd314 unit_fields.cpp.obj + 0002:00024338 __unwindtable$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 100bd338 lua_refs.cpp.obj + 0002:00024348 __ehfuncinfo$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 100bd348 lua_refs.cpp.obj + 0002:0002436c __ehfuncinfo$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 100bd36c pet.cpp.obj + 0002:00024390 __unwindtable$?SaveGreaterDemonAutocastPreferences@Nampower@@YAXII@Z 100bd390 pet.cpp.obj + 0002:000243c0 __ehfuncinfo$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 100bd3c0 pet.cpp.obj + 0002:000243e4 __unwindtable$?RestoreGreaterDemonAutocastPreferences@Nampower@@YAXXZ 100bd3e4 pet.cpp.obj + 0002:00024414 __unwindtable$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100bd414 pet.cpp.obj + 0002:00024424 __ehfuncinfo$?SerializeAutocastData@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100bd424 pet.cpp.obj + 0002:00024448 __unwindtable$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100bd448 pet.cpp.obj + 0002:00024468 __ehfuncinfo$?ParseAutocastData@Nampower@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$map@IIU?$less@I@std@@V?$allocator@U?$pair@$$CBII@std@@@2@@3@@Z 100bd468 pet.cpp.obj + 0002:00024490 __sehtable$___DestructExceptionObject 100bd490 libvcruntime:ehhelpers.obj + 0002:000244b0 __sehtable$___RTDynamicCast 100bd4b0 libvcruntime:rtti.obj + 0002:000244d0 __sehtable$___RTtypeid 100bd4d0 libvcruntime:rtti.obj + 0002:00024560 __sehtable$?FrameUnwindToState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@H@Z 100bd560 libvcruntime:frame.obj + 0002:00024588 __sehtable$?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PBU_s_FuncInfo@@PAXHK@Z 100bd588 libvcruntime:frame.obj + 0002:000245b0 __catchsym$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z$2 100bd5b0 libvcruntime:frame.obj + 0002:000245c0 __unwindtable$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 100bd5c0 libvcruntime:frame.obj + 0002:000245d0 __tryblocktable$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 100bd5d0 libvcruntime:frame.obj + 0002:000245e4 __ehfuncinfo$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 100bd5e4 libvcruntime:frame.obj + 0002:00024608 __sehtable$??$BuildCatchObjectHelperInternal@V__FrameHandler3@@@@YAHPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100bd608 libvcruntime:frame.obj + 0002:00024628 __sehtable$??$BuildCatchObjectInternal@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100bd628 libvcruntime:frame.obj + 0002:00024680 __sehtable$___unDNameEx 100bd680 libvcruntime:undname.obj + 0002:0002469c __unwindtable$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 100bd69c libvcruntime:undname.obj + 0002:000246a4 __ehfuncinfo$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 100bd6a4 libvcruntime:undname.obj + 0002:000246c8 __sehtable$?_fclose_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 100bd6c8 libucrt:fclose.obj + 0002:000246e8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd6e8 libucrt:fflush.obj + 0002:00024708 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd708 libucrt:fflush.obj + 0002:00024728 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100bd728 libucrt:fflush.obj + 0002:00024748 __sehtable$_fgetc 100bd748 libucrt:fgetc.obj + 0002:00024768 __sehtable$?_fputc_internal@@YAHHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 100bd768 libucrt:fputc.obj + 0002:00024788 __sehtable$_fread_s 100bd788 libucrt:fread.obj + 0002:000247a8 __sehtable$?common_fseek@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 100bd7a8 libucrt:fseek.obj + 0002:000247c8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@I@@QAEI$$QAV@@AAV@@$$QAV@@@Z 100bd7c8 libucrt:fwrite.obj + 0002:000247e8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100bd7e8 libucrt:setvbuf.obj + 0002:00024808 __sehtable$_ungetc 100bd808 libucrt:ungetc.obj + 0002:00024828 __sehtable$_terminate 100bd828 libucrt:terminate.obj + 0002:00024848 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd848 libucrt:per_thread_data.obj + 0002:00024868 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd868 libucrt:per_thread_data.obj + 0002:00024888 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd888 libucrt:per_thread_data.obj + 0002:000248a8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd8a8 libucrt:per_thread_data.obj + 0002:000248c8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd8c8 libucrt:wsetlocale.obj + 0002:000248e8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bd8e8 libucrt:wsetlocale.obj + 0002:00024908 __sehtable$??$?RV@@AAV@@AAV@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@AAV@@@Z 100bd908 libucrt:wsetlocale.obj + 0002:00024928 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100bd928 libucrt:winapi_thunks.obj + 0002:00024948 __sehtable$__fcloseall 100bd948 libucrt:closeall.obj + 0002:00024968 __sehtable$___acrt_initialize_lowio 100bd968 libucrt:ioinit.obj + 0002:00024988 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100bd988 libucrt:close.obj + 0002:000249a8 __sehtable$?__acrt_stdio_allocate_stream@@YA?AV__crt_stdio_stream@@XZ 100bd9a8 libucrt:stream.obj + 0002:000249c8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100bd9c8 libucrt:commit.obj + 0002:000249e8 __sehtable$__write_internal 100bd9e8 libucrt:write.obj + 0002:00024a08 __sehtable$??$common_ftell@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 100bda08 libucrt:ftell.obj + 0002:00024a28 __sehtable$__read 100bda28 libucrt:read.obj + 0002:00024a48 __sehtable$??$common_lseek@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 100bda48 libucrt:lseek.obj + 0002:00024a68 __sehtable$___set_fpsr_sse2 100bda68 libucrt:fpctrl.obj + 0002:00024a88 __sehtable$??R@@QBE@XZ 100bda88 libucrt:exit.obj + 0002:00024aa8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bdaa8 libucrt:exit.obj + 0002:00024ac8 __sehtable$_raise 100bdac8 libucrt:signal.obj + 0002:00024ae8 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@P6AXH@Z@@QAEP6AXH@Z$$QAV@@AAV@@$$QAV@@@Z 100bdae8 libucrt:signal.obj + 0002:00024b08 __sehtable$__isindst 100bdb08 libucrt:tzset.obj + 0002:00024b28 __sehtable$___tzset 100bdb28 libucrt:tzset.obj + 0002:00024b48 __sehtable$___acrt_update_thread_locale_data 100bdb48 libucrt:locale_refcounting.obj + 0002:00024b68 __sehtable$?update_thread_multibyte_data_internal@@YAPAU__crt_multibyte_data@@QAU__acrt_ptd@@QAPAU1@@Z 100bdb68 libucrt:mbctype.obj + 0002:00024b88 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100bdb88 libucrt:mbctype.obj + 0002:00024ba8 __sehtable$__query_new_handler 100bdba8 libucrt:new_handler.obj + 0002:00024bc8 __sehtable$__alloc_osfhnd 100bdbc8 libucrt:osfinfo.obj + 0002:00024be8 __sehtable$___acrt_lowio_ensure_fh_exists 100bdbe8 libucrt:osfinfo.obj + 0002:00024c08 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100bdc08 libucrt:onexit.obj + 0002:00024c28 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100bdc28 libucrt:onexit.obj + 0002:00024c48 __sehtable$??$common_getenv_s@_W@@YAHQAIQA_WIQB_W@Z 100bdc48 libucrt:getenv.obj + 0002:00024c64 __unwindtable$___dcrt_uninitialize_environments_nolock 100bdc64 libucrt:environment_initialization.obj + 0002:00024c74 __ehfuncinfo$___dcrt_uninitialize_environments_nolock 100bdc74 libucrt:environment_initialization.obj + 0002:00024dd8 __unwindtable$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 100bddd8 libcpmt:locale0.obj + 0002:00024de0 __ehfuncinfo$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 100bdde0 libcpmt:locale0.obj + 0002:00024e08 __sehtable$___scrt_is_nonwritable_in_current_image 100bde08 LIBCMT:utility.obj + 0002:00024e28 __sehtable$?dllmain_crt_process_attach@@YAHQAUHINSTANCE__@@QAX@Z 100bde28 LIBCMT:dll_dllmain.obj + 0002:00024e48 __sehtable$?dllmain_crt_process_detach@@YAH_N@Z 100bde48 LIBCMT:dll_dllmain.obj + 0002:00024e70 __sehtable$?dllmain_dispatch@@YAHQAUHINSTANCE__@@KQAX@Z 100bde70 LIBCMT:dll_dllmain.obj + 0002:00024e90 __sehtable$__IsNonwritableInCurrentImage 100bde90 LIBCMT:pesect.obj + 0002:00024eb0 __sehtable$??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@PAD@@QAEPAD$$QAV@@AAV@@$$QAV@@@Z 100bdeb0 libucrt:setlocale.obj + 0002:00024ed0 __sehtable$??$common_fsopen@D@@YAPAU_iobuf@@QBD0H@Z 100bded0 libucrt:fopen.obj + 0002:00024ef0 __sehtable$??$common_sopen_dispatch@D@@YAHQBDHHHQAHH@Z 100bdef0 libucrt:open.obj + 0002:00024f10 .edata 100bdf10 nampower.exp + 0002:00024f38 rgpv 100bdf38 nampower.exp + 0002:00024f3c rgszName 100bdf3c nampower.exp + 0002:00024f40 rgwOrd 100bdf40 nampower.exp + 0002:00024f42 szName 100bdf42 nampower.exp + 0002:00024f4f $N00001 100bdf4f nampower.exp + 0002:0002591e .idata$6 100be91e kernel32:KERNEL32.dll + 0002:0002593a .idata$6 100be93a user32:USER32.dll + 0002:000259a0 .idata$6 100be9a0 Crypt32:CRYPT32.dll + 0003:00000104 ?p_GetContext@?1??GetLuaStatePtr@Nampower@@YAPAIXZ@4P6IPAIXZA 100bf104 main.cpp.obj + 0003:00000154 ?format@?1??TriggerSpellCastEvent@Nampower@@YAX_NIW4CastType@@_KI@Z@4PADA 100bf154 spellcast.cpp.obj + 0003:00000160 ?message@?O@??Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@4PADA 100bf160 spellcast.cpp.obj + 0003:00000198 ?format@?1??TriggerSpellChannelStartEvent@Nampower@@YAXII@Z@4PADA 100bf198 spellchannel.cpp.obj + 0003:000001a0 ?format@?1??TriggerSpellChannelUpdateEvent@Nampower@@YAXII@Z@4PADA 100bf1a0 spellchannel.cpp.obj + 0003:000001a8 ?format@?1??TriggerSpellFailedSelfEvent@Nampower@@YAXIW4SpellCastResult@game@@_N@Z@4PADA 100bf1a8 spellevents.cpp.obj + 0003:000001b0 ?format@?1??TriggerSpellFailedOtherEvent@Nampower@@YAX_KI@Z@4PADA 100bf1b0 spellevents.cpp.obj + 0003:000001b8 ?format@?1??TriggerSpellHealEvent@Nampower@@YAX_K0IIEE@Z@4PADA 100bf1b8 spellevents.cpp.obj + 0003:000001c8 ?format@?1??TriggerSpellEnergizeEvent@Nampower@@YAX_K0IIIE@Z@4PADA 100bf1c8 spellevents.cpp.obj + 0003:000001d8 ?format@?1??TriggerSpellDelayedEvent@Nampower@@YAX_KI@Z@4PADA 100bf1d8 spellevents.cpp.obj + 0003:000001e0 ?format@?1??triggerAuraCastEventOnTarget@Nampower@@YAXPBUSpellRec@game@@HPAD1_K2II@Z@4PADA 100bf1e0 spellevents.cpp.obj + 0003:000001f4 ?format@?1??TriggerSpellStartEvent@Nampower@@YAXII_K00GI@Z@4PADA 100bf1f4 spellevents.cpp.obj + 0003:00000208 ?format@?1??TriggerSpellGoEvent@Nampower@@YAXIIPB_K_K1GEE@Z@4PADA 100bf208 spellevents.cpp.obj + 0003:0000021c ?format@?1??TriggerSpellMissEvent@Nampower@@YAX_K0II@Z@4PADA 100bf21c spellevents.cpp.obj + 0003:00000228 ?format@?1??TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z@4PADA 100bf228 spellevents.cpp.obj + 0003:00000240 ?castId@LuaFields@Nampower@@3PADA 100bf240 misc_scripts.cpp.obj + 0003:00000248 ?spellId@LuaFields@Nampower@@3PADA 100bf248 misc_scripts.cpp.obj + 0003:00000250 ?guid@LuaFields@Nampower@@3PADA 100bf250 misc_scripts.cpp.obj + 0003:00000258 ?castType@LuaFields@Nampower@@3PADA 100bf258 misc_scripts.cpp.obj + 0003:00000264 ?castStartS@LuaFields@Nampower@@3PADA 100bf264 misc_scripts.cpp.obj + 0003:00000270 ?castEndS@LuaFields@Nampower@@3PADA 100bf270 misc_scripts.cpp.obj + 0003:0000027c ?castRemainingMs@LuaFields@Nampower@@3PADA 100bf27c misc_scripts.cpp.obj + 0003:0000028c ?castDurationMs@LuaFields@Nampower@@3PADA 100bf28c misc_scripts.cpp.obj + 0003:0000029c ?gcdEndS@LuaFields@Nampower@@3PADA 100bf29c misc_scripts.cpp.obj + 0003:000002a4 ?gcdRemainingMs@LuaFields@Nampower@@3PADA 100bf2a4 misc_scripts.cpp.obj + 0003:000002b4 ?castInfoTableRef@Nampower@@3HA 100bf2b4 misc_scripts.cpp.obj + 0003:000002b8 ?unitDataTableRef@Nampower@@3HA 100bf2b8 misc_scripts.cpp.obj + 0003:000002bc ?typeIdCounter@?1??CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z@4PAIA 100bf2bc misc_scripts.cpp.obj + 0003:000002c0 ?nameplateTypeId@?1??CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z@4PAIA 100bf2c0 misc_scripts.cpp.obj + 0003:000002c4 ?format@?1??EmitKeyEvent@Nampower@@YAXIPAUEVENT_DATA_KEY@@@Z@4PADA 100bf2c4 misc_scripts.cpp.obj + 0003:000002d0 ?spellRecTableRef@Nampower@@3HA 100bf2d0 spell_scripts.cpp.obj + 0003:000002d4 ?cooldownDetailTableRef@Nampower@@3HA 100bf2d4 cooldown_scripts.cpp.obj + 0003:000002d8 ?isOnCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf2d8 cooldown_scripts.cpp.obj + 0003:000002e8 ?cooldownRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf2e8 cooldown_scripts.cpp.obj + 0003:000002fc ?itemIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf2fc cooldown_scripts.cpp.obj + 0003:00000304 ?itemHasActiveSpellKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf304 cooldown_scripts.cpp.obj + 0003:00000318 ?itemActiveSpellIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf318 cooldown_scripts.cpp.obj + 0003:0000032c ?individualStartSKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf32c cooldown_scripts.cpp.obj + 0003:00000340 ?individualDurationMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf340 cooldown_scripts.cpp.obj + 0003:00000358 ?individualRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf358 cooldown_scripts.cpp.obj + 0003:00000370 ?isOnIndividualCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf370 cooldown_scripts.cpp.obj + 0003:00000388 ?categoryIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf388 cooldown_scripts.cpp.obj + 0003:00000394 ?categoryStartSKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf394 cooldown_scripts.cpp.obj + 0003:000003a4 ?categoryDurationMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf3a4 cooldown_scripts.cpp.obj + 0003:000003b8 ?categoryRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf3b8 cooldown_scripts.cpp.obj + 0003:000003cc ?isOnCategoryCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf3cc cooldown_scripts.cpp.obj + 0003:000003e4 ?gcdCategoryIdKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf3e4 cooldown_scripts.cpp.obj + 0003:000003f4 ?gcdCategoryStartSKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf3f4 cooldown_scripts.cpp.obj + 0003:00000408 ?gcdCategoryDurationMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf408 cooldown_scripts.cpp.obj + 0003:00000420 ?gcdCategoryRemainingMsKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf420 cooldown_scripts.cpp.obj + 0003:00000438 ?isOnGcdCategoryCooldownKey@?1??PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@2@@Z@4PADA 100bf438 cooldown_scripts.cpp.obj + 0003:00000450 ?basicItemInfoTableRef@Nampower@@3HA 100bf450 item_scripts.cpp.obj + 0003:00000454 ?itemInfoTableRef@Nampower@@3HA 100bf454 item_scripts.cpp.obj + 0003:00000458 ?equippedItemsTableRef@Nampower@@3HA 100bf458 item_scripts.cpp.obj + 0003:0000045c ?bagItemsTableRef@Nampower@@3HA 100bf45c item_scripts.cpp.obj + 0003:00000460 ?trinketsTableRef@Nampower@@3HA 100bf460 item_scripts.cpp.obj + 0003:00000464 ?itemStatsTableRef@Nampower@@3HA 100bf464 item_scripts.cpp.obj + 0003:00000468 ?itemIdKey@Nampower@@3PADA 100bf468 item_scripts.cpp.obj + 0003:00000470 ?permanentEnchantIdKey@Nampower@@3PADA 100bf470 item_scripts.cpp.obj + 0003:00000484 ?tempEnchantIdKey@Nampower@@3PADA 100bf484 item_scripts.cpp.obj + 0003:00000494 ?stackCountKey@Nampower@@3PADA 100bf494 item_scripts.cpp.obj + 0003:000004a0 ?durationKey@Nampower@@3PADA 100bf4a0 item_scripts.cpp.obj + 0003:000004ac ?flagsKey@Nampower@@3PADA 100bf4ac item_scripts.cpp.obj + 0003:000004b4 ?durabilityKey@Nampower@@3PADA 100bf4b4 item_scripts.cpp.obj + 0003:000004c0 ?maxDurabilityKey@Nampower@@3PADA 100bf4c0 item_scripts.cpp.obj + 0003:000004d0 ?tempEnchantmentTimeLeftMsKey@Nampower@@3PADA 100bf4d0 item_scripts.cpp.obj + 0003:000004ec ?tempEnchantmentChargesKey@Nampower@@3PADA 100bf4ec item_scripts.cpp.obj + 0003:00000504 ?bagIndexKey@Nampower@@3PADA 100bf504 item_scripts.cpp.obj + 0003:00000510 ?slotIndexKey@Nampower@@3PADA 100bf510 item_scripts.cpp.obj + 0003:0000051c ?trinketNameKey@Nampower@@3PADA 100bf51c item_scripts.cpp.obj + 0003:00000528 ?textureKey@Nampower@@3PADA 100bf528 item_scripts.cpp.obj + 0003:00000530 ?itemLevelKey@Nampower@@3PADA 100bf530 item_scripts.cpp.obj + 0003:0000053c ?format@?1??TriggerAuraEvent@Nampower@@YAXPAIII_NI@Z@4PADA 100bf53c auras.cpp.obj + 0003:0000054c ?format@?4??CGBuffBar_UpdateDurationHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@EH@Z@4PADA 100bf54c auras.cpp.obj + 0003:00000558 ?format@?1??UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z@4PADA 100bf558 auras.cpp.obj + 0003:0000055c ?format@?1??TriggerAutoAttackEvent@Nampower@@YAX_K0IIIEIII@Z@4PADA 100bf55c autoattack.cpp.obj + 0003:00000570 ?__vcrt_flsindex@@3KA 100bf570 libvcruntime:per_thread_data.obj + 0003:00000580 ?prefix@?1??getDimension@UnDecorator@@CA?AVDName@@_N@Z@4UStringLiteral@@A 100bf580 libvcruntime:undname.obj + 0003:00000648 ?errno_no_memory@@3HA 100bf648 libucrt:errno.obj + 0003:0000064c ?doserrno_no_memory@@3KA 100bf64c libucrt:errno.obj + 0003:000006c0 ?__acrt_flsindex@@3KA 100bf6c0 libucrt:per_thread_data.obj + 0003:000006c4 __ctype_loc_style 100bf6c4 libucrt:wsetlocale.obj + 0003:000008c8 ?__DAZ_ENABLED@?1??__set_fpsr_sse2@@9@9 100bf8c8 libucrt:fpctrl.obj + 0003:000008d8 ?tzstd_program@@3PADA 100bf8d8 libucrt:timeset.obj + 0003:00000918 ?tzdst_program@@3PADA 100bf918 libucrt:timeset.obj + 0003:00000958 ?w_tzstd_program@@3PA_WA 100bf958 libucrt:timeset.obj + 0003:000009d8 ?w_tzdst_program@@3PA_WA 100bf9d8 libucrt:timeset.obj + 0003:00000a58 ?tzname_states@@3PAY01PADA 100bfa58 libucrt:timeset.obj + 0003:00000a60 ?w_tzname_states@@3PAY01PA_WA 100bfa60 libucrt:timeset.obj + 0003:00000a68 ?dststart@@3Utransitiondate@?A0x7639d0b4@@A 100bfa68 libucrt:tzset.obj + 0003:00000a74 ?dstend@@3Utransitiondate@?A0x7639d0b4@@A 100bfa74 libucrt:tzset.obj + 0003:00000ca0 __mbctypes 100bfca0 libucrt:mbctype.obj + 0003:00000da8 __mbcasemaps 100bfda8 libucrt:mbctype.obj + 0003:00000ea8 ?__rgctypeflag@@3PADA 100bfea8 libucrt:mbctype.obj + 0003:00000eb0 ?__rgcode_page_info@@3PAUcode_page_info@@A 100bfeb0 libucrt:mbctype.obj + 0003:00000fb0 ?__dcrt_lowio_console_output_handle@@3PAXA 100bffb0 libucrt:initcon.obj + 0003:00000fc0 ?init@std@@3JA 100bffc0 libcpmt:xlock.obj + 0003:00000fc8 ?valid@?1???$_Xfiopen@D@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z@4QBHB 100bffc8 libcpmt:fiopen.obj + 0003:00001018 ?atcount_cdecl@@3IA 100c0018 libcpmt:iosptrs.obj + 0003:00017868 ?spellSlotCache@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@4V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@@std@@@2@@std@@A 100d6868 helper.cpp.obj + 0003:00017888 ?$TSS0@?1??GetSpellSlotAndTypeForName@Nampower@@YAHPBDPAI@Z@4HA 100d6888 helper.cpp.obj + 0003:0001788c ?spellIdToSlotCache@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@4V?$unordered_map@_KIU?$hash@_K@std@@U?$equal_to@_K@2@V?$allocator@U?$pair@$$CB_KI@std@@@2@@std@@A 100d688c helper.cpp.obj + 0003:000178ac ?$TSS0@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@4HA 100d68ac helper.cpp.obj + 0003:000178b8 ?targetHitGuids@?1??SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@2@@Z@4PA_KA 100d68b8 spellevents.cpp.obj + 0003:00017be0 ?unitFieldsArrayFieldRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d6be0 misc_scripts.cpp.obj + 0003:00017c00 ?unitFieldsNestedArrayRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d6c00 misc_scripts.cpp.obj + 0003:00017c20 ?spellRecArrayFieldRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d6c20 spell_scripts.cpp.obj + 0003:00017c40 ?spellRecNestedArrayRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d6c40 spell_scripts.cpp.obj + 0003:00017c60 ?itemStatsNestedArrayRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d6c60 item_scripts.cpp.obj + 0003:00017c80 ?itemStatsArrayFieldRefs@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@A 100d6c80 item_scripts.cpp.obj + 0003:00017ca0 ?lastTrinketCount@Nampower@@3IA 100d6ca0 item_scripts.cpp.obj + 0003:00017ca4 ?bagTableRefs@Nampower@@3V?$array@H$0N@@std@@A 100d6ca4 item_scripts.cpp.obj + 0003:00017cd8 ?itemEntryTableRefs@Nampower@@3V?$array@V?$array@H$0EA@@std@@$0N@@std@@A 100d6cd8 item_scripts.cpp.obj + 0003:000189d8 ?equippedItemTableRefs@Nampower@@3V?$array@H$0BD@@std@@A 100d79d8 item_scripts.cpp.obj + 0003:00018a74 ?isExporting@Nampower@@3_NA 100d7a74 items.cpp.obj + 0003:00021c70 ?itemStatsCache@Nampower@@3V?$unordered_map@IPAUItemStats_C@game@@U?$hash@I@std@@U?$equal_to@I@4@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@@std@@A 100e0c70 items.cpp.obj + 0003:00021c90 ?itemNameToIdCache@Nampower@@3V?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@A 100e0c90 items.cpp.obj + 0003:00021cb0 ?pendingItemIds@Nampower@@3V?$unordered_set@IU?$hash@I@std@@U?$equal_to@I@2@V?$allocator@I@2@@std@@A 100e0cb0 items.cpp.obj + 0003:00021cd0 ?currentExportItemId@Nampower@@3IA 100e0cd0 items.cpp.obj + 0003:00021d54 ?fieldMapsInitialized@Nampower@@3_NA 100e0d54 dbc_fields.cpp.obj + 0003:00021d98 ?unitFieldMapsInitialized@Nampower@@3_NA 100e0d98 unit_fields.cpp.obj + 0003:00021e60 ?registeredTableRefs@Nampower@@3V?$vector@PAHV?$allocator@PAH@std@@@std@@A 100e0e60 lua_refs.cpp.obj + 0003:00021e78 ?__vcrt_startup_thread_ptd@@3U__vcrt_ptd@@A 100e0e78 libvcruntime:per_thread_data.obj + 0003:00021ec8 ?heap@@3V_HeapManager@@A 100e0ec8 libvcruntime:undname.obj + 0003:00021edc ?module_handles@@3PAPAUHINSTANCE__@@A 100e0edc libvcruntime:winapi_downlevel.obj + 0003:00021ee8 ?function_pointers@@3PAPAXA 100e0ee8 libvcruntime:winapi_downlevel.obj + 0003:00021efc ___vcrt_lock_table 100e0efc libvcruntime:locks.obj + 0003:00021f14 ___vcrt_locks_initialized 100e0f14 libvcruntime:locks.obj + 0003:00021f18 ?__acrt_invalid_parameter_handler@@3V?$dual_state_global@P6AXPB_W00II@Z@__crt_state_management@@A 100e0f18 libucrt:invalid_parameter.obj + 0003:00021f38 ?module_handles@@3PAPAUHINSTANCE__@@A 100e0f38 libucrt:winapi_thunks.obj + 0003:00021f90 ?encoded_function_pointers@@3PAPAXA 100e0f90 libucrt:winapi_thunks.obj + 0003:0002201c ?static_enum_proc@?1??enum_system_locales_ex_nolock@@YAHQ6GHPA_WKJ@Z@Z@4P6GH0KJ@ZA 100e101c libucrt:winapi_thunks.obj + 0003:00022228 ?__acrt_lock_table@@3PAU_RTL_CRITICAL_SECTION@@A 100e1228 libucrt:locks.obj + 0003:00022378 ?__acrt_locks_initialized@@3IA 100e1378 libucrt:locks.obj + 0003:00022384 ?internal_state@?1??_mbtowc_internal@@9@4U_Mbstatet@@A 100e1384 libucrt:mbtowc.obj + 0003:0002238c ?enable_percent_n@@3IA 100e138c libucrt:printf_count_output.obj + 0003:00022390 ?c_termination_complete@@3JA 100e1390 libucrt:exit.obj + 0003:00022394 ?thread_local_exit_callback_func@@3P6GXPAXK0@ZA 100e1394 libucrt:exit.obj + 0003:00022398 ?c_exit_complete@?1???R@@QBE@XZ@4_NA 100e1398 libucrt:exit.obj + 0003:0002239c ?ctrlc_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100e139c libucrt:signal.obj + 0003:000223a0 ?ctrlbreak_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100e13a0 libucrt:signal.obj + 0003:000223a4 ?abort_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100e13a4 libucrt:signal.obj + 0003:000223a8 ?term_action@@3V?$dual_state_global@P6AXH@Z@__crt_state_management@@A 100e13a8 libucrt:signal.obj + 0003:000223b8 ?_tzname@@3V?$dual_state_global@PAPAD@__crt_state_management@@A 100e13b8 libucrt:timeset.obj + 0003:000223bc ?w_tzname@@3V?$dual_state_global@PAPA_W@__crt_state_management@@A 100e13bc libucrt:timeset.obj + 0003:000223c0 ?last_wide_tz@@3PA_WA 100e13c0 libucrt:tzset.obj + 0003:000223c8 ?tz_api_used@@3HA 100e13c8 libucrt:tzset.obj + 0003:000223cc ?tzset_init_state@@3V?$dual_state_global@J@__crt_state_management@@A 100e13cc libucrt:tzset.obj + 0003:000223d0 ?tz_info@@3U_TIME_ZONE_INFORMATION@@A 100e13d0 libucrt:tzset.obj + 0003:0002247c __pmatherr_set 100e147c libucrt:libm_error.obj + 0003:0002248c ?fSystemSet@@3HA 100e148c libucrt:mbctype.obj + 0003:00022490 ?initialized@?1??__acrt_initialize_multibyte@@9@4_NA 100e1490 libucrt:mbctype.obj + 0003:00022494 ?__acrt_new_handler@@3V?$dual_state_global@P6AHI@Z@__crt_state_management@@A 100e1494 libucrt:new_handler.obj + 0003:00022498 ?__acrt_global_new_mode@@3V?$dual_state_global@J@__crt_state_management@@A 100e1498 libucrt:new_mode.obj + 0003:000224a0 ?user_matherr@@3V?$dual_state_global@P6AHPAU_exception@@@Z@__crt_state_management@@A 100e14a0 libucrt:matherr.obj + 0003:000224bc ?__acrt_app_type@@3W4_crt_app_type@@A 100e14bc libucrt:report_runtime_error.obj + 0003:000224c0 ?internal_pst@?1??__mbrtoc32_utf8@__crt_mbstring@@YAIPA_UPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z@4U3@A 100e14c0 libucrt:mbrtoc32.obj + 0003:000224e0 ?initlocks@std@@3V_Init_locks@1@A 100e14e0 libcpmt:xlock.obj + 0003:000224e8 ?mtx@std@@3PAU_RTL_CRITICAL_SECTION@@A 100e14e8 libcpmt:xlock.obj + 0003:000225c4 ?classic_locale@std@@3Vlocale@1@A 100e15c4 libcpmt:locale0.obj + 0003:000225cc ?_Fac_head@std@@3PAU_Fac_node@1@A 100e15cc libcpmt:locale0.obj + 0003:000225d0 ?_Fac_tidy_reg@std@@3U_Fac_tidy_reg_t@1@B 100e15d0 libcpmt:locale0.obj + 0003:000225d4 _global_locale 100e15d4 libcpmt:locale0.obj + 0003:000225d8 ?registered@?1??_Setgloballocale@locale@std@@CAXPAX@Z@4_NA 100e15d8 libcpmt:locale0.obj + 0003:000225e0 ?stdstr@std@@3PAPAVios_base@1@A 100e15e0 libcpmt:ios.obj + 0003:00022608 ?stdopens@std@@3PADA 100e1608 libcpmt:ios.obj + 0003:00022618 ?freq_cached@?1??_Query_perf_frequency@@9@4U?$atomic@_J@std@@A 100e1618 libcpmt:xtime.obj + 0003:00022640 ?initlocks@std@@3V_Init_locks@1@A 100e1640 libcpmt:iosptrs.obj + 0003:00022641 ?init_atexit@@3U_Init_atexit@@A 100e1641 libcpmt:iosptrs.obj + 0003:00022644 ?atfuns_cdecl@@3PAP6AXXZA 100e1644 libcpmt:iosptrs.obj + 0003:0002266c ?__KERNEL32Function_GetCurrentPackageId@?A0x995b63b9@@3P6GJPAIPAE@ZA 100e166c libcpmt:winapisupp.obj + 0003:00022670 ?__KERNEL32Function_GetSystemTimePreciseAsFileTime@?A0x995b63b9@@3P6GXPAU_FILETIME@@@ZA 100e1670 libcpmt:winapisupp.obj + 0003:00022674 ?__KERNEL32Function_GetTempPath2W@?A0x995b63b9@@3P6GKKPA_W@ZA 100e1674 libcpmt:winapisupp.obj + 0003:000226e8 ?is_initialized_as_dll@@3_NA 100e16e8 LIBCMT:utility.obj + 0003:000226e9 ?module_local_atexit_table_initialized@@3_NA 100e16e9 LIBCMT:utility.obj + 0003:000226ec ?module_local_atexit_table@@3U_onexit_table_t@@A 100e16ec LIBCMT:utility.obj + 0003:000226f8 ?module_local_at_quick_exit_table@@3U_onexit_table_t@@A 100e16f8 LIBCMT:utility.obj + 0003:00022704 ?g_tss_cv@@3U_RTL_CONDITION_VARIABLE@@A 100e1704 LIBCMT:thread_safe_statics.obj + 0003:00022708 ?g_tss_srw@@3U_RTL_SRWLOCK@@A 100e1708 LIBCMT:thread_safe_statics.obj + 0003:0002271c ?__proc_attached@@3HA 100e171c LIBCMT:dll_dllmain.obj + 0003:00022730 _GS_ExceptionRecord 100e1730 LIBCMT:gs_report.obj + 0003:00022780 _GS_ContextRecord 100e1780 LIBCMT:gs_report.obj + 0003:00022a58 ?program_name@?1???$common_configure_argv@D@@YAHW4_crt_argv_mode@@@Z@4PADA 100e1a58 libucrt:argv_parsing.obj + 0003:00022b7c ?internal_pst@?1??__c16rtomb_utf8@__crt_mbstring@@YAIPAD_SPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z@4U3@A 100e1b7c libucrt:c16rtomb.obj + 0004:00000060 $R000000 100e2060 * linker generated manifest res * diff --git a/nampower/CMakeLists.txt b/nampower/CMakeLists.txt index 8093ba0..7464e2f 100644 --- a/nampower/CMakeLists.txt +++ b/nampower/CMakeLists.txt @@ -25,6 +25,8 @@ set(SOURCE_FILES spellevents.cpp misc_scripts.hpp misc_scripts.cpp + file_scripts.hpp + file_scripts.cpp spell_scripts.hpp spell_scripts.cpp cooldown_scripts.hpp diff --git a/nampower/file_scripts.cpp b/nampower/file_scripts.cpp new file mode 100644 index 0000000..ee24aa6 --- /dev/null +++ b/nampower/file_scripts.cpp @@ -0,0 +1,525 @@ +#include "file_scripts.hpp" + +#include "helper.hpp" +#include "offsets.hpp" + +#include +#include +#include +#include +#include +#include +#include + +#pragma comment(lib, "Crypt32.lib") + +namespace Nampower { + static constexpr const char *kEncryptedPasswordPrefix = ":encrypted:"; + + static bool IsValidFilename(const char *name) { + return name && name[0] != '\0' && std::strpbrk(name, "<>:\"/\\|?*") == nullptr; + } + + static bool ValidateLuaFilename(uintptr_t *luaState, const char *filename) { + if (!IsValidFilename(filename)) { + lua_error(luaState, "Invalid or empty filename (must not contain: < > : \" / \\ | ?*)"); + return false; + } + return true; + } + + static bool GetEnvVar(const char *name, std::string &outValue) { + const DWORD valueLen = GetEnvironmentVariableA(name, nullptr, 0); + if (valueLen == 0) { + return false; + } + + std::vector buffer(valueLen); + const DWORD copied = GetEnvironmentVariableA(name, buffer.data(), valueLen); + if (copied == 0 || copied >= valueLen) { + return false; + } + + outValue.assign(buffer.data(), copied); + return true; + } + + static bool Base64Decode(const std::string &input, std::vector &outBytes) { + DWORD decodedLen = 0; + if (!CryptStringToBinaryA(input.c_str(), static_cast(input.size()), CRYPT_STRING_BASE64, nullptr, + &decodedLen, nullptr, nullptr)) { + return false; + } + + outBytes.resize(decodedLen); + if (!CryptStringToBinaryA(input.c_str(), static_cast(input.size()), CRYPT_STRING_BASE64, outBytes.data(), + &decodedLen, nullptr, nullptr)) { + return false; + } + outBytes.resize(decodedLen); + return true; + } + + static bool Base64Encode(const BYTE *data, DWORD dataLen, std::string &outBase64) { + DWORD encodedLen = 0; + if (!CryptBinaryToStringA(data, dataLen, CRYPT_STRING_BASE64 | CRYPT_STRING_NOCRLF, nullptr, &encodedLen)) { + return false; + } + + std::vector encoded(encodedLen); + if (!CryptBinaryToStringA(data, dataLen, CRYPT_STRING_BASE64 | CRYPT_STRING_NOCRLF, encoded.data(), + &encodedLen)) { + return false; + } + + if (encodedLen > 0 && encoded[encodedLen - 1] == '\0') { + --encodedLen; + } + outBase64.assign(encoded.data(), encodedLen); + return true; + } + + static bool EncryptDpapiBase64(const std::string &plaintext, const std::string &entropy, + std::string &outCiphertextBase64) { + DATA_BLOB plainBlob = {}; + plainBlob.pbData = reinterpret_cast(const_cast(plaintext.data())); + plainBlob.cbData = static_cast(plaintext.size()); + + DATA_BLOB entropyBlob = {}; + if (!entropy.empty()) { + entropyBlob.pbData = reinterpret_cast(const_cast(entropy.data())); + entropyBlob.cbData = static_cast(entropy.size()); + } + + DATA_BLOB encryptedBlob = {}; + if (!CryptProtectData(&plainBlob, nullptr, entropy.empty() ? nullptr : &entropyBlob, nullptr, nullptr, 0, + &encryptedBlob)) { + return false; + } + + const bool encoded = Base64Encode(encryptedBlob.pbData, encryptedBlob.cbData, outCiphertextBase64); + SecureZeroMemory(encryptedBlob.pbData, encryptedBlob.cbData); + LocalFree(encryptedBlob.pbData); + return encoded; + } + + static bool DecryptDpapiBase64(const std::string &ciphertextBase64, const std::string &entropy, + std::string &outPlaintext) { + std::vector encryptedBytes; + if (!Base64Decode(ciphertextBase64, encryptedBytes)) { + return false; + } + + DATA_BLOB encryptedBlob = {}; + encryptedBlob.pbData = encryptedBytes.data(); + encryptedBlob.cbData = static_cast(encryptedBytes.size()); + + DATA_BLOB entropyBlob = {}; + if (!entropy.empty()) { + entropyBlob.pbData = reinterpret_cast(const_cast(entropy.data())); + entropyBlob.cbData = static_cast(entropy.size()); + } + + DATA_BLOB decryptedBlob = {}; + if (!CryptUnprotectData(&encryptedBlob, nullptr, entropy.empty() ? nullptr : &entropyBlob, nullptr, nullptr, 0, + &decryptedBlob)) { + return false; + } + + outPlaintext.assign(reinterpret_cast(decryptedBlob.pbData), decryptedBlob.cbData); + SecureZeroMemory(decryptedBlob.pbData, decryptedBlob.cbData); + LocalFree(decryptedBlob.pbData); + return true; + } + + static bool EnsureDirectoryExists(const char *baseDir) { + if (CreateDirectoryA(baseDir, nullptr) != 0) { + return true; + } + + const DWORD errorCode = GetLastError(); + return errorCode == ERROR_ALREADY_EXISTS; + } + + static std::string BuildPath(const char *baseDir, const char *filename, bool forceTxtExtension) { + std::string fileNameStr(filename); + + if (forceTxtExtension) { + fileNameStr += ".txt"; + } + + std::string fullPath(baseDir); + fullPath += "\\"; + fullPath += fileNameStr; + return fullPath; + } + + static bool TryGetFullPath(const std::string &inputPath, std::string &outFullPath) { + char buffer[MAX_PATH] = {}; + const DWORD result = GetFullPathNameA(inputPath.c_str(), MAX_PATH, buffer, nullptr); + if (result == 0 || result >= MAX_PATH) { + return false; + } + + outFullPath.assign(buffer, result); + return true; + } + + static bool ResolveValidatedPath(const char *baseDir, const char *filename, bool forceTxtExtension, + std::string &outPath) { + if (!filename || filename[0] == '\0') { + return false; + } + + std::string baseFullPath; + if (!TryGetFullPath(baseDir, baseFullPath)) { + return false; + } + + std::string candidatePath = BuildPath(baseDir, filename, forceTxtExtension); + std::string candidateFullPath; + if (!TryGetFullPath(candidatePath, candidateFullPath)) { + return false; + } + + std::string basePrefix = baseFullPath; + if (!basePrefix.empty() && basePrefix.back() != '\\' && basePrefix.back() != '/') { + basePrefix += "\\"; + } + + if (candidateFullPath.size() <= basePrefix.size()) { + return false; + } + + if (_strnicmp(candidateFullPath.c_str(), basePrefix.c_str(), basePrefix.size()) != 0) { + return false; + } + + outPath = candidateFullPath; + return true; + } + + static uint32_t ReadFileFromDirectory(uintptr_t *luaState, const char *baseDir, bool forceTxtExtension, + bool returnNilIfMissing) { + const auto *filename = lua_tostring(luaState, 1); + std::string fullPath; + if (!ResolveValidatedPath(baseDir, filename, forceTxtExtension, fullPath)) { + std::string err = "Invalid filename/path (must remain inside "; + err += baseDir; + err += ")."; + lua_error(luaState, err.c_str()); + return 0; + } + + DEBUG_LOG("Attempting to read file from " << baseDir << ": " << fullPath); + + const DWORD attributes = GetFileAttributesA(fullPath.c_str()); + if (attributes == INVALID_FILE_ATTRIBUTES) { + const DWORD errorCode = GetLastError(); + if (returnNilIfMissing && (errorCode == ERROR_FILE_NOT_FOUND || errorCode == ERROR_PATH_NOT_FOUND)) { + lua_pushnil(luaState); + return 1; + } + lua_error(luaState, "Failed to open file for reading."); + return 0; + } + + if ((attributes & FILE_ATTRIBUTE_DIRECTORY) != 0) { + lua_error(luaState, "Failed to open file for reading."); + return 0; + } + + std::ifstream in(fullPath); + if (!in) { + lua_error(luaState, "Failed to open file for reading."); + return 0; + } + + std::ostringstream buf; + buf << in.rdbuf(); + std::string data = buf.str(); + + lua_pushstring(luaState, const_cast(data.c_str())); + return 1; + } + + static uint32_t WriteFileToDirectory(uintptr_t *luaState, const char *baseDir, bool forceTxtExtension, + const char *filename, char mode, const char *content) { + if (!EnsureDirectoryExists(baseDir)) { + lua_error(luaState, "Failed to create output directory."); + return 0; + } + + std::string fullPath; + if (!ResolveValidatedPath(baseDir, filename, forceTxtExtension, fullPath)) { + std::string err = "Invalid filename/path (must remain inside "; + err += baseDir; + err += ")."; + lua_error(luaState, err.c_str()); + return 0; + } + + DEBUG_LOG("Writing file to " << baseDir << ": " << fullPath << " (mode=" << mode << ")"); + + std::ios::openmode openMode = std::ios::out; + if (mode == 'w') { + openMode |= std::ios::trunc; + } else if (mode == 'a') { + openMode |= std::ios::app; + } else if (mode == 'b') { + openMode |= std::ios::binary; + } else { + lua_error(luaState, "WriteCustomFile: mode must be 'w', 'b', or 'a'"); + return 0; + } + + std::ofstream out(fullPath, openMode); + if (!out) { + lua_error(luaState, "Failed to open file for writing."); + return 0; + } + + out << content; + if (!out) { + lua_error(luaState, "Failed to write file."); + return 0; + } + + return 0; + } + + uint32_t Script_WriteCustomFile(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + + const int argCount = lua_gettop(luaState); + if (argCount < 2 || argCount > 3) { + lua_error(luaState, "Usage: WriteCustomFile(filename, content, [mode])"); + return 0; + } + + if (!lua_isstring(luaState, 1) || !lua_isstring(luaState, 2)) { + lua_error(luaState, "Usage: WriteCustomFile(filename, content, [mode])"); + return 0; + } + + const auto *filename = lua_tostring(luaState, 1); + if (!ValidateLuaFilename(luaState, filename)) { + return 0; + } + + const auto *content = lua_tostring(luaState, 2); + char mode = 'w'; + if (argCount == 3) { + if (!lua_isstring(luaState, 3)) { + lua_error(luaState, "Usage: WriteCustomFile(filename, content, [mode])"); + return 0; + } + const auto *modeStr = lua_tostring(luaState, 3); + if (!modeStr || modeStr[0] == '\0' || modeStr[1] != '\0') { + lua_error(luaState, "WriteCustomFile: mode must be 'w', 'b', or 'a'"); + return 0; + } + mode = modeStr[0]; + } + + if (!content) { + lua_error(luaState, "WriteCustomFile: invalid content"); + return 0; + } + + return WriteFileToDirectory(luaState, "CustomData", false, filename, mode, content); + } + + uint32_t Script_ReadCustomFile(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + if (!lua_isstring(luaState, 1)) { + lua_error(luaState, "Usage: ReadCustomFile(filename)"); + return 0; + } + + const auto *filename = lua_tostring(luaState, 1); + if (!ValidateLuaFilename(luaState, filename)) { + return 0; + } + return ReadFileFromDirectory(luaState, "CustomData", false, true); + } + + uint32_t Script_CustomFileExists(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + if (!lua_isstring(luaState, 1)) { + lua_error(luaState, "Usage: CustomFileExists(filename)"); + return 0; + } + + const auto *filename = lua_tostring(luaState, 1); + if (!ValidateLuaFilename(luaState, filename)) { + return 0; + } + + std::string fullPath; + if (!ResolveValidatedPath("CustomData", filename, false, fullPath)) { + lua_error(luaState, "Invalid filename/path (must remain inside CustomData)."); + return 0; + } + + const DWORD attributes = GetFileAttributesA(fullPath.c_str()); + if (attributes == INVALID_FILE_ATTRIBUTES) { + const DWORD errorCode = GetLastError(); + if (errorCode == ERROR_FILE_NOT_FOUND || errorCode == ERROR_PATH_NOT_FOUND) { + lua_pushboolean(luaState, 0); + return 1; + } + lua_error(luaState, "CustomFileExists: failed to check file"); + return 0; + } + + lua_pushboolean(luaState, (attributes & FILE_ATTRIBUTE_DIRECTORY) == 0); + return 1; + } + + uint32_t Script_ImportFile(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + if (!lua_isstring(luaState, 1)) { + lua_error(luaState, "Usage: ImportFile(filename)"); + return 0; + } + + const auto *filename = lua_tostring(luaState, 1); + if (!ValidateLuaFilename(luaState, filename)) { + return 0; + } + + return ReadFileFromDirectory(luaState, "Imports", true, true); + } + + uint32_t Script_ExportFile(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + if (lua_gettop(luaState) != 2 || !lua_isstring(luaState, 1) || !lua_isstring(luaState, 2)) { + lua_error(luaState, "Usage: ExportFile(filename, text)"); + return 0; + } + + const auto *filename = lua_tostring(luaState, 1); + if (!ValidateLuaFilename(luaState, filename)) { + return 0; + } + + const auto *content = lua_tostring(luaState, 2); + lua_settop(luaState, 2); + return WriteFileToDirectory(luaState, "Imports", true, filename, 'w', content); + } + + uint32_t Script_ExecuteCustomLuaFile(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + if (!lua_isstring(luaState, 1)) { + lua_error(luaState, "Usage: ExecuteCustomLuaFile(filename)"); + return 0; + } + + const auto *filename = lua_tostring(luaState, 1); + if (!ValidateLuaFilename(luaState, filename)) { + return 0; + } + + const char *dot = std::strrchr(filename, '.'); + if (!dot || _stricmp(dot, ".lua") != 0) { + lua_error(luaState, "ExecuteCustomLuaFile: filename must end with .lua"); + return 0; + } + + std::string validatedFullPath; + if (!ResolveValidatedPath("CustomData", filename, false, validatedFullPath)) { + lua_error(luaState, "Invalid filename/path (must remain inside CustomData)."); + return 0; + } + + std::string relativePath = BuildPath("CustomData", filename, false); + DEBUG_LOG("Executing Lua file: " << validatedFullPath); + auto const executeFile = reinterpret_cast( + Offsets::FrameScript_ExecuteFile); + executeFile(const_cast(relativePath.c_str()), nullptr, nullptr); + + return 0; + } + + uint32_t Script_EncryptPassword(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + + if (!lua_isstring(luaState, 1)) { + lua_error(luaState, "Usage: EncryptPassword(password)"); + return 0; + } + + auto *password = lua_tostring(luaState, 1); + if (!password) { + lua_error(luaState, "EncryptPassword: invalid password"); + return 0; + } + + const std::string passwordString(password); + const std::string prefix(kEncryptedPasswordPrefix); + if (passwordString.compare(0, prefix.size(), prefix) == 0) { + lua_pushstring(luaState, const_cast(passwordString.c_str())); + return 1; + } + + std::string entropy; + if (!GetEnvVar("WOW_ENCRYPTION_KEY", entropy)) { + lua_error(luaState, "EncryptPassword: WOW_ENCRYPTION_KEY is not set"); + return 0; + } + + std::string encryptedPasswordBase64; + if (!EncryptDpapiBase64(passwordString, entropy, encryptedPasswordBase64)) { + lua_error(luaState, "EncryptPassword: failed to encrypt password"); + return 0; + } + + encryptedPasswordBase64.insert(0, prefix); + + lua_pushstring(luaState, const_cast(encryptedPasswordBase64.c_str())); + return 1; + } + + uint32_t Script_EncryptedServerLogin(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + + if (!lua_isstring(luaState, 1) || !lua_isstring(luaState, 2)) { + lua_error(luaState, "Usage: EncryptedServerLogin(username, encryptedPasswordBase64String)"); + return 0; + } + + auto *username = lua_tostring(luaState, 1); + auto *encryptedPasswordBase64 = lua_tostring(luaState, 2); + if (!username || !encryptedPasswordBase64) { + lua_error(luaState, "EncryptedServerLogin: invalid username or encrypted password"); + return 0; + } + + std::string encryptedPasswordValue(encryptedPasswordBase64); + const std::string prefix(kEncryptedPasswordPrefix); + if (encryptedPasswordValue.compare(0, prefix.size(), prefix) != 0) { + lua_error(luaState, "EncryptedServerLogin: encrypted password must start with :encrypted:"); + return 0; + } + encryptedPasswordValue.erase(0, prefix.size()); + + std::string entropy; + if (!GetEnvVar("WOW_ENCRYPTION_KEY", entropy)) { + lua_error(luaState, "EncryptedServerLogin: WOW_ENCRYPTION_KEY is not set"); + return 0; + } + + std::string decryptedPassword; + if (!DecryptDpapiBase64(encryptedPasswordValue, entropy, decryptedPassword)) { + lua_error(luaState, "EncryptedServerLogin: failed to decrypt password"); + return 0; + } + + auto const defaultServerLogin = reinterpret_cast( + Offsets::CGlueMgr_DefaultServerLogin); + defaultServerLogin(username, const_cast(decryptedPassword.c_str())); + return 0; + } + +} diff --git a/nampower/file_scripts.hpp b/nampower/file_scripts.hpp new file mode 100644 index 0000000..09b8ca5 --- /dev/null +++ b/nampower/file_scripts.hpp @@ -0,0 +1,18 @@ +// +// File read/write Lua script bindings +// + +#pragma once + +#include "main.hpp" + +namespace Nampower { + uint32_t Script_WriteCustomFile(uintptr_t *luaState); + uint32_t Script_ReadCustomFile(uintptr_t *luaState); + uint32_t Script_CustomFileExists(uintptr_t *luaState); + uint32_t Script_ImportFile(uintptr_t *luaState); + uint32_t Script_ExportFile(uintptr_t *luaState); + uint32_t Script_ExecuteCustomLuaFile(uintptr_t *luaState); + uint32_t Script_EncryptPassword(uintptr_t *luaState); + uint32_t Script_EncryptedServerLogin(uintptr_t *luaState); +} diff --git a/nampower/helper.cpp b/nampower/helper.cpp index d98eefc..a5c7b21 100644 --- a/nampower/helper.cpp +++ b/nampower/helper.cpp @@ -24,7 +24,7 @@ namespace Nampower { lua_tonumberT lua_tonumber = reinterpret_cast(Offsets::lua_tonumber); lua_pushnumberT lua_pushnumber = reinterpret_cast(Offsets::lua_pushnumber); lua_pushstringT lua_pushstring = reinterpret_cast(Offsets::lua_pushstring); - // lua_pushbooleanT lua_pushboolean = reinterpret_cast(Offsets::lua_pushboolean); doesn't seem to work properly + lua_pushbooleanT lua_pushboolean = reinterpret_cast(Offsets::lua_pushboolean); lua_pushnilT lua_pushnil = reinterpret_cast(Offsets::lua_pushnil); lua_newtableT lua_newtable = reinterpret_cast(Offsets::lua_newtable); lua_settableT lua_settable = reinterpret_cast(Offsets::lua_settable); diff --git a/nampower/main.cpp b/nampower/main.cpp index f52c95a..0c24d98 100644 --- a/nampower/main.cpp +++ b/nampower/main.cpp @@ -34,6 +34,7 @@ #include "spellevents.hpp" #include "spellcast.hpp" #include "misc_scripts.hpp" +#include "file_scripts.hpp" #include "spell_scripts.hpp" #include "player_scripts.hpp" #include "spellchannel.hpp" @@ -167,13 +168,15 @@ namespace Nampower { std::unique_ptr > gTogglePetSlotAutocastDetour; std::unique_ptr > gCGPetInfo_GetPetSpellActionDetour; std::unique_ptr > gCGGameUI_ShowCombatFeedbackDetour; + std::unique_ptr > gGlueLoadScriptFunctionsDetour; // Flags for one-time initialization std::once_flag loadFlag; std::once_flag initHooksFlag; // Forward declarations for hook functions - void LoadScriptFunctionsHook(hadesmem::PatchDetourBase *detour); + void Player_LoadScriptFunctionsHook(hadesmem::PatchDetourBase *detour); + void Glue_LoadScriptFunctionsHook(hadesmem::PatchDetourBase *detour); void FrameScript_CreateEventsHook(hadesmem::PatchDetourBase *detour, int param_1, uint32_t maxEventId); @@ -1524,8 +1527,10 @@ namespace Nampower { process, Offsets::CGPetInfo_GetPetSpellAction, &CGPetInfo_GetPetSpellActionHook); gCGGameUI_ShowCombatFeedbackDetour = createHook( process, Offsets::CGGameUI_ShowCombatFeedback, &CGGameUI_ShowCombatFeedbackHook); - gLoadScriptFunctionsDetour = createHook(process, Offsets::LoadScriptFunctions, - &LoadScriptFunctionsHook); + gLoadScriptFunctionsDetour = createHook(process, Offsets::Player_LoadScriptFunctions, + &Player_LoadScriptFunctionsHook); + gGlueLoadScriptFunctionsDetour = createHook(process, Offsets::Glue_LoadScriptFunctions, + &Glue_LoadScriptFunctionsHook); gCreateEventsDetour = createHook(process, Offsets::FrameScript_CreateEvents, &FrameScript_CreateEventsHook); gSetEventCountDetour = createHook(process, Offsets::Framescript_SetEventCount, @@ -1735,7 +1740,7 @@ namespace Nampower { setEventCount(thisPtr, dummy_edx, count); } - void LoadScriptFunctionsHook(hadesmem::PatchDetourBase *detour) { + void Player_LoadScriptFunctionsHook(hadesmem::PatchDetourBase *detour) { auto const loadScriptFunctions = detour->GetTrampolineT(); loadScriptFunctions(); @@ -1896,6 +1901,57 @@ namespace Nampower { char isAuraHidden[] = "IsAuraHidden"; RegisterLuaFunction(isAuraHidden, reinterpret_cast(Script_IsAuraHidden)); + char combatLogFlush[] = "CombatLogFlush"; + RegisterLuaFunction(combatLogFlush, reinterpret_cast(Script_CombatLogFlush)); + + char writeCustomFile[] = "WriteCustomFile"; + RegisterLuaFunction(writeCustomFile, reinterpret_cast(Script_WriteCustomFile)); + + char readCustomFile[] = "ReadCustomFile"; + RegisterLuaFunction(readCustomFile, reinterpret_cast(Script_ReadCustomFile)); + + char customFileExists[] = "CustomFileExists"; + RegisterLuaFunction(customFileExists, reinterpret_cast(Script_CustomFileExists)); + + char importFile[] = "ImportFile"; + RegisterLuaFunction(importFile, reinterpret_cast(Script_ImportFile)); + + char exportFile[] = "ExportFile"; + RegisterLuaFunction(exportFile, reinterpret_cast(Script_ExportFile)); + + char executeCustomLuaFile[] = "ExecuteCustomLuaFile"; + RegisterLuaFunction(executeCustomLuaFile, reinterpret_cast(Script_ExecuteCustomLuaFile)); + } + + void Glue_LoadScriptFunctionsHook(hadesmem::PatchDetourBase *detour) { + auto const loadScriptFunctions = detour->GetTrampolineT(); + loadScriptFunctions(); + + DEBUG_LOG("Registering Glue Lua functions"); + + char writeCustomFile[] = "WriteCustomFile"; + RegisterLuaFunction(writeCustomFile, reinterpret_cast(Script_WriteCustomFile)); + + char readCustomFile[] = "ReadCustomFile"; + RegisterLuaFunction(readCustomFile, reinterpret_cast(Script_ReadCustomFile)); + + char customFileExists[] = "CustomFileExists"; + RegisterLuaFunction(customFileExists, reinterpret_cast(Script_CustomFileExists)); + + char importFile[] = "ImportFile"; + RegisterLuaFunction(importFile, reinterpret_cast(Script_ImportFile)); + + char exportFile[] = "ExportFile"; + RegisterLuaFunction(exportFile, reinterpret_cast(Script_ExportFile)); + + char executeCustomLuaFile[] = "ExecuteCustomLuaFile"; + RegisterLuaFunction(executeCustomLuaFile, reinterpret_cast(Script_ExecuteCustomLuaFile)); + + char encryptPassword[] = "EncryptPassword"; + RegisterLuaFunction(encryptPassword, reinterpret_cast(Script_EncryptPassword)); + + char encryptedServerLogin[] = "EncryptedServerLogin"; + RegisterLuaFunction(encryptedServerLogin, reinterpret_cast(Script_EncryptedServerLogin)); } void load() { diff --git a/nampower/main.hpp b/nampower/main.hpp index 25b3b16..8c15999 100644 --- a/nampower/main.hpp +++ b/nampower/main.hpp @@ -26,7 +26,7 @@ namespace Nampower { constexpr uint32_t DISENCHANT_QUALITY_PURPLE = 0x04; // Epic constexpr uint32_t MAJOR_VERSION = 3; - constexpr uint32_t MINOR_VERSION = 1; + constexpr uint32_t MINOR_VERSION = 2; constexpr uint32_t PATCH_VERSION = 0; constexpr int32_t LUA_REGISTRYINDEX = -10000; diff --git a/nampower/misc_scripts.cpp b/nampower/misc_scripts.cpp index e506123..6b9c3eb 100644 --- a/nampower/misc_scripts.cpp +++ b/nampower/misc_scripts.cpp @@ -962,6 +962,16 @@ namespace Nampower { return 1; } + uint32_t Script_CombatLogFlush(uintptr_t *luaState) { + luaState = GetLuaStatePtr(); + + auto const slogFlush = reinterpret_cast(Offsets::SLogFlush); + auto const combatLogFileHandle = *reinterpret_cast(Offsets::CombatLogFileHandle); + slogFlush(combatLogFileHandle); + + return 0; + } + uint64_t GetGUIDFromNameHook(hadesmem::PatchDetourBase *detour, const char *nameStr) { auto const original = detour->GetTrampolineT(); diff --git a/nampower/misc_scripts.hpp b/nampower/misc_scripts.hpp index 2ae35db..b10d09b 100644 --- a/nampower/misc_scripts.hpp +++ b/nampower/misc_scripts.hpp @@ -40,6 +40,7 @@ namespace Nampower { uint32_t Script_SetMouseoverUnit(uintptr_t *luaState); uint32_t Script_GetUnitGUID(uintptr_t *luaState); uint32_t Script_IsAuraHidden(uintptr_t *luaState); + uint32_t Script_CombatLogFlush(uintptr_t *luaState); uint32_t CSimpleFrame_GetNameHook(hadesmem::PatchDetourBase *detour, uintptr_t *luaState); uint64_t GetGUIDFromNameHook(hadesmem::PatchDetourBase *detour, const char *nameStr); diff --git a/nampower/offsets.hpp b/nampower/offsets.hpp index 9f0136b..3cdf013 100644 --- a/nampower/offsets.hpp +++ b/nampower/offsets.hpp @@ -37,6 +37,7 @@ enum class Offsets : std::uint32_t { ClntObjMgrObjectPtr = 0x00468460, GetObjectPtr = 0x464870, GetActivePlayer = 0x468550, + CGlueMgr_DefaultServerLogin = 0x0046AFB0, GetUnitFromName = 0x00515940, GetNamesFromGUID = 0x00000000, // TODO: set correct offset SendUnitSignal = 0x00515e50, @@ -143,18 +144,22 @@ enum class Offsets : std::uint32_t { CVarLookup = 0x0063DEC0, RegisterCVar = 0X0063DB90, + SLogFlush = 0x0065A970, + CombatLogFileHandle = 0x00B50544, GetClientConnection = 0X005AB490, GetNetStats = 0X00537F20, ClientServices_Send = 0X005AB630, - LoadScriptFunctions = 0x00490250, + Player_LoadScriptFunctions = 0x00490250, + Glue_LoadScriptFunctions = 0x0046ABB0, FrameScript_RegisterFunction = 0x00704120, FrameScript_CreateEvents = 0X00703D90, Framescript_SetEventCount = 0X007053B0, Framescript_EventObject_Data = 0x00CEEF68, FrameScript_Execute = 0x00704CF0, + FrameScript_ExecuteFile = 0x00704BC0, // Existing script functions GetGUIDFromName = 0X00515970, diff --git a/nampower/spell_scripts.cpp b/nampower/spell_scripts.cpp index 3f89bad..e6097b0 100644 --- a/nampower/spell_scripts.cpp +++ b/nampower/spell_scripts.cpp @@ -168,7 +168,17 @@ namespace Nampower { uint64_t targetGUID = GetUnitGuidFromString(target); - auto playerUnit = game::GetObjectPtr(game::ClntObjMgrGetActivePlayerGuid()); + const auto playerGuid = game::ClntObjMgrGetActivePlayerGuid(); + if (playerGuid == 0) { + lua_error(luaState, "IsSpellInRange: active player not available"); + return 0; + } + + auto playerUnit = game::GetObjectPtr(playerGuid); + if (!playerUnit) { + lua_error(luaState, "IsSpellInRange: active player unit not available"); + return 0; + } auto const RangeCheckSelected = reinterpret_cast(Offsets::RangeCheckSelected); auto const result = RangeCheckSelected(playerUnit, spell, targetGUID, '\0');